diff --git a/tools/node_modules/eslint/lib/cli.js b/tools/node_modules/eslint/lib/cli.js index 2fca65c1908b04..69feced8c5b7b9 100644 --- a/tools/node_modules/eslint/lib/cli.js +++ b/tools/node_modules/eslint/lib/cli.js @@ -25,7 +25,6 @@ const fs = require("fs"), RuntimeInfo = require("./shared/runtime-info"); const { Legacy: { naming } } = require("@eslint/eslintrc"); const { findFlatConfigFile } = require("./eslint/flat-eslint"); -const { gitignoreToMinimatch } = require("@humanwhocodes/gitignore-to-minimatch"); const { ModuleImporter } = require("@humanwhocodes/module-importer"); const debug = require("debug")("eslint:cli"); @@ -38,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").ResultsMeta} ResultsMeta */ //------------------------------------------------------------------------------ // Helpers @@ -145,7 +145,7 @@ async function translateOptions({ if (ignorePattern) { overrideConfig.push({ - ignores: ignorePattern.map(gitignoreToMinimatch) + ignores: ignorePattern }); } @@ -182,7 +182,6 @@ async function translateOptions({ fix: (fix || fixDryRun) && (quiet ? quietFixPredicate : true), fixTypes: fixType, ignore, - ignorePath, overrideConfig, overrideConfigFile, reportUnusedDisableDirectives: reportUnusedDisableDirectives ? "error" : void 0 @@ -193,6 +192,7 @@ async function translateOptions({ options.rulePaths = rulesdir; options.useEslintrc = eslintrc; options.extensions = ext; + options.ignorePath = ignorePath; } return options; @@ -201,7 +201,7 @@ async function translateOptions({ /** * Count error messages. * @param {LintResult[]} results The lint results. - * @returns {{errorCount:number;warningCount:number}} The number of error messages. + * @returns {{errorCount:number;fatalErrorCount:number,warningCount:number}} The number of error messages. */ function countErrors(results) { let errorCount = 0; @@ -239,10 +239,11 @@ async function isDirectory(filePath) { * @param {LintResult[]} results The results to print. * @param {string} format The name of the formatter to use or the path to the formatter. * @param {string} outputFile The path for the output file. + * @param {ResultsMeta} resultsMeta Warning count and max threshold. * @returns {Promise} True if the printing succeeds, false if not. * @private */ -async function printResults(engine, results, format, outputFile) { +async function printResults(engine, results, format, outputFile, resultsMeta) { let formatter; try { @@ -252,7 +253,7 @@ async function printResults(engine, results, format, outputFile) { return false; } - const output = await formatter.format(results); + const output = await formatter.format(results, resultsMeta); if (output) { if (outputFile) { @@ -407,17 +408,24 @@ const cli = { resultsToPrint = ActiveESLint.getErrorResults(resultsToPrint); } - if (await printResults(engine, resultsToPrint, options.format, options.outputFile)) { + const resultCounts = countErrors(results); + const tooManyWarnings = options.maxWarnings >= 0 && resultCounts.warningCount > options.maxWarnings; + const resultsMeta = tooManyWarnings + ? { + maxWarningsExceeded: { + maxWarnings: options.maxWarnings, + foundWarnings: resultCounts.warningCount + } + } + : {}; - // Errors and warnings from the original unfiltered results should determine the exit code - const { errorCount, fatalErrorCount, warningCount } = countErrors(results); + if (await printResults(engine, resultsToPrint, options.format, options.outputFile, resultsMeta)) { - const tooManyWarnings = - options.maxWarnings >= 0 && warningCount > options.maxWarnings; + // Errors and warnings from the original unfiltered results should determine the exit code const shouldExitForFatalErrors = - options.exitOnFatalError && fatalErrorCount > 0; + options.exitOnFatalError && resultCounts.fatalErrorCount > 0; - if (!errorCount && tooManyWarnings) { + if (!resultCounts.errorCount && tooManyWarnings) { log.error( "ESLint found too many warnings (maximum: %s).", options.maxWarnings @@ -428,7 +436,7 @@ const cli = { return 2; } - return (errorCount || tooManyWarnings) ? 1 : 0; + return (resultCounts.errorCount || tooManyWarnings) ? 1 : 0; } return 2; 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 ad8986f516ef9c..24b456da57c848 100644 --- a/tools/node_modules/eslint/lib/config/flat-config-array.js +++ b/tools/node_modules/eslint/lib/config/flat-config-array.js @@ -70,7 +70,7 @@ class FlatConfigArray extends ConfigArray { } /** - * The baes config used to build the config array. + * The base config used to build the config array. * @type {Array} */ this[originalBaseConfig] = baseConfig; diff --git a/tools/node_modules/eslint/lib/eslint/eslint-helpers.js b/tools/node_modules/eslint/lib/eslint/eslint-helpers.js index ead1af5fda9517..e257310f6e99d2 100644 --- a/tools/node_modules/eslint/lib/eslint/eslint-helpers.js +++ b/tools/node_modules/eslint/lib/eslint/eslint-helpers.js @@ -67,9 +67,9 @@ function isNonEmptyString(x) { } /** - * Check if a given value is an array of non-empty stringss or not. + * 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 stringss. + * @returns {boolean} `true` if `x` is an array of non-empty strings. */ function isArrayOfNonEmptyString(x) { return Array.isArray(x) && x.every(isNonEmptyString); @@ -410,7 +410,6 @@ function processOptions({ 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. ignorePatterns = null, overrideConfig = null, overrideConfigFile = null, @@ -441,6 +440,9 @@ function processOptions({ if (unknownOptionKeys.includes("globals")) { errors.push("'globals' has been removed. Please use the 'overrideConfig.languageOptions.globals' option instead."); } + if (unknownOptionKeys.includes("ignorePath")) { + errors.push("'ignorePath' has been removed."); + } if (unknownOptionKeys.includes("ignorePattern")) { errors.push("'ignorePattern' has been removed. Please use the 'overrideConfig.ignorePatterns' option instead."); } @@ -493,9 +495,6 @@ function processOptions({ 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."); } @@ -538,7 +537,6 @@ function processOptions({ fixTypes, globInputPaths, ignore, - ignorePath, ignorePatterns, reportUnusedDisableDirectives }; diff --git a/tools/node_modules/eslint/lib/eslint/eslint.js b/tools/node_modules/eslint/lib/eslint/eslint.js index 9a3bd66e487479..e1d2116944e25c 100644 --- a/tools/node_modules/eslint/lib/eslint/eslint.js +++ b/tools/node_modules/eslint/lib/eslint/eslint.js @@ -36,11 +36,12 @@ const { version } = require("../../package.json"); /** @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 {function(LintResult[]): string | Promise} format format function. + * @property {(results: LintResult[], resultsMeta: ResultsMeta) => string | Promise} format format function. */ /** @@ -625,14 +626,16 @@ class ESLint { /** * 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) { + format(results, resultsMeta) { let rulesMeta = null; results.sort(compareResultsByFilePath); return formatter(results, { + ...resultsMeta, get cwd() { return options.cwd; }, diff --git a/tools/node_modules/eslint/lib/eslint/flat-eslint.js b/tools/node_modules/eslint/lib/eslint/flat-eslint.js index e436c464014ee8..c1ea80a3062598 100644 --- a/tools/node_modules/eslint/lib/eslint/flat-eslint.js +++ b/tools/node_modules/eslint/lib/eslint/flat-eslint.js @@ -16,7 +16,6 @@ const findUp = require("find-up"); const { version } = require("../../package.json"); const { Linter } = require("../linter"); const { getRuleFromConfig } = require("../config/flat-config-helpers"); -const { gitignoreToMinimatch } = require("@humanwhocodes/gitignore-to-minimatch"); const { Legacy: { ConfigOps: { @@ -28,7 +27,6 @@ const { } = require("@eslint/eslintrc"); const { - fileExists, findFiles, getCacheFile, @@ -59,6 +57,7 @@ const LintResultCache = require("../cli-engine/lint-result-cache"); /** @typedef {import("../shared/types").LintMessage} LintMessage */ /** @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 */ @@ -76,9 +75,8 @@ const LintResultCache = require("../cli-engine/lint-result-cache"); * @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 {string[]} [ignorePatterns] Ignore file patterns to use in addition to .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. * @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 @@ -151,30 +149,6 @@ function calculateStatsPerRun(results) { }); } -/** - * Loads global ignore patterns from an ignore file (usually .eslintignore). - * @param {string} filePath The filename to load. - * @returns {ignore} A function encapsulating the ignore patterns. - * @throws {Error} If the file cannot be read. - * @private - */ -async function loadIgnoreFilePatterns(filePath) { - debug(`Loading ignore file: ${filePath}`); - - try { - const ignoreFileText = await fs.readFile(filePath, { encoding: "utf8" }); - - return ignoreFileText - .split(/\r?\n/gu) - .filter(line => line.trim() !== "" && !line.startsWith("#")); - - } catch (e) { - debug(`Error reading ignore file: ${filePath}`); - e.message = `Cannot read ignore file: ${filePath}\nError: ${e.message}`; - throw e; - } -} - /** * Create rulesMeta object. * @param {Map} rules a map of rules from which to generate the object. @@ -319,7 +293,6 @@ async function calculateConfigArray(eslint, { overrideConfig, configFile, ignore: shouldIgnore, - ignorePath, ignorePatterns }) { @@ -364,22 +337,6 @@ async function calculateConfigArray(eslint, { configs.push(...slots.defaultConfigs); let allIgnorePatterns = []; - let ignoreFilePath; - - // load ignore file if necessary - if (shouldIgnore) { - if (ignorePath) { - ignoreFilePath = path.resolve(cwd, ignorePath); - allIgnorePatterns = await loadIgnoreFilePatterns(ignoreFilePath); - } else { - ignoreFilePath = path.resolve(cwd, ".eslintignore"); - - // no error if .eslintignore doesn't exist` - if (fileExists(ignoreFilePath)) { - allIgnorePatterns = await loadIgnoreFilePatterns(ignoreFilePath); - } - } - } // append command line ignore patterns if (ignorePatterns) { @@ -428,7 +385,7 @@ async function calculateConfigArray(eslint, { * so they can override default ignores. */ configs.push({ - ignores: allIgnorePatterns.map(gitignoreToMinimatch) + ignores: allIgnorePatterns }); } @@ -872,7 +829,7 @@ class FlatESLint { } - // set up fixer for fixtypes if necessary + // set up fixer for fixTypes if necessary let fixer = fix; if (fix && fixTypesSet) { @@ -1048,7 +1005,7 @@ class FlatESLint { * The following values are allowed: * - `undefined` ... Load `stylish` builtin formatter. * - A builtin formatter name ... Load the builtin formatter. - * - A thirdparty formatter name: + * - A third-party formatter name: * - `foo` → `eslint-formatter-foo` * - `@foo` → `@foo/eslint-formatter` * - `@foo/bar` → `@foo/eslint-formatter-bar` @@ -1114,14 +1071,16 @@ class FlatESLint { /** * 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) { + format(results, resultsMeta) { let rulesMeta = null; results.sort(compareResultsByFilePath); return formatter(results, { + ...resultsMeta, cwd, get rulesMeta() { if (!rulesMeta) { diff --git a/tools/node_modules/eslint/lib/options.js b/tools/node_modules/eslint/lib/options.js index 0d95f2a635470a..c43aad93276a4c 100644 --- a/tools/node_modules/eslint/lib/options.js +++ b/tools/node_modules/eslint/lib/options.js @@ -67,7 +67,7 @@ const optionator = require("optionator"); /** * Creates the CLI options for ESLint. * @param {boolean} usingFlatConfig Indicates if flat config is being used. - * @returns {Object} The opinionator instance. + * @returns {Object} The optionator instance. */ module.exports = function(usingFlatConfig) { @@ -129,6 +129,16 @@ module.exports = function(usingFlatConfig) { }; } + let ignorePathFlag; + + if (!usingFlatConfig) { + ignorePathFlag = { + option: "ignore-path", + type: "path::String", + description: "Specify path of ignore file" + }; + } + return optionator({ prepend: "eslint [options] file.js [file.js] [dir]", defaults: { @@ -203,11 +213,7 @@ module.exports = function(usingFlatConfig) { { heading: "Ignoring files" }, - { - option: "ignore-path", - type: "path::String", - description: "Specify path of ignore file" - }, + ignorePathFlag, { option: "ignore", type: "Boolean", diff --git a/tools/node_modules/eslint/lib/rules/id-length.js b/tools/node_modules/eslint/lib/rules/id-length.js index 99f833fc73b4df..bd269b998f5697 100644 --- a/tools/node_modules/eslint/lib/rules/id-length.js +++ b/tools/node_modules/eslint/lib/rules/id-length.js @@ -6,6 +6,45 @@ "use strict"; +//------------------------------------------------------------------------------ +// Requirements +//------------------------------------------------------------------------------ +const GraphemeSplitter = require("grapheme-splitter"); + +//------------------------------------------------------------------------------ +// Helpers +//------------------------------------------------------------------------------ + +/** + * Checks if the string given as argument is ASCII or not. + * @param {string} value A string that you want to know if it is ASCII or not. + * @returns {boolean} `true` if `value` is ASCII string. + */ +function isASCII(value) { + if (typeof value !== "string") { + return false; + } + return /^[\u0020-\u007f]*$/u.test(value); +} + +/** @type {GraphemeSplitter | undefined} */ +let splitter; + +/** + * Gets the length of the string. If the string is not in ASCII, counts graphemes. + * @param {string} value A string that you want to get the length. + * @returns {number} The length of `value`. + */ +function getStringLength(value) { + if (isASCII(value)) { + return value.length; + } + if (!splitter) { + splitter = new GraphemeSplitter(); + } + return splitter.countGraphemes(value); +} + //------------------------------------------------------------------------------ // Rule Definition //------------------------------------------------------------------------------ @@ -130,8 +169,10 @@ module.exports = { const name = node.name; const parent = node.parent; - const isShort = name.length < minLength; - const isLong = name.length > maxLength; + const nameLength = getStringLength(name); + + const isShort = nameLength < minLength; + const isLong = nameLength > maxLength; if (!(isShort || isLong) || exceptions.has(name) || matchesExceptionPattern(name)) { return; // Nothing to report diff --git a/tools/node_modules/eslint/lib/rules/lines-around-comment.js b/tools/node_modules/eslint/lib/rules/lines-around-comment.js index bd7d1cd26623e3..64f7f6c5fea7b7 100644 --- a/tools/node_modules/eslint/lib/rules/lines-around-comment.js +++ b/tools/node_modules/eslint/lib/rules/lines-around-comment.js @@ -15,7 +15,7 @@ const astUtils = require("./utils/ast-utils"); //------------------------------------------------------------------------------ /** - * Return an array with with any line numbers that are empty. + * Return an array with any line numbers that are empty. * @param {Array} lines An array of each line of the file. * @returns {Array} An array of line numbers. */ @@ -29,7 +29,7 @@ function getEmptyLineNums(lines) { } /** - * Return an array with with any line numbers that contain comments. + * Return an array with any line numbers that contain comments. * @param {Array} comments An array of comment tokens. * @returns {Array} An array of line numbers. */ 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 6dc6d864dcdf99..3b2ab9c2f456f5 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 @@ -105,7 +105,7 @@ module.exports = { } /** - * Converts an integer to to an object containing the integer's coefficient and order of magnitude + * Converts an integer to an object containing the integer's coefficient and order of magnitude * @param {string} stringInteger the string representation of the integer being converted * @returns {Object} the object containing the integer's coefficient and order of magnitude */ @@ -120,7 +120,7 @@ module.exports = { /** * - * Converts a float to to an object containing the floats's coefficient and order of magnitude + * Converts a float to an object containing the floats's coefficient and order of magnitude * @param {string} stringFloat the string representation of the float being converted * @returns {Object} the object containing the integer's coefficient and order of magnitude */ diff --git a/tools/node_modules/eslint/lib/rules/no-use-before-define.js b/tools/node_modules/eslint/lib/rules/no-use-before-define.js index 592c083589c671..5fd25940128f49 100644 --- a/tools/node_modules/eslint/lib/rules/no-use-before-define.js +++ b/tools/node_modules/eslint/lib/rules/no-use-before-define.js @@ -68,7 +68,7 @@ function isInClassStaticInitializerRange(node, location) { } /** - * Checks whether a given scope is the scope of a a class static initializer. + * Checks whether a given scope is the scope of a class static initializer. * Static initializers are static blocks and initializers of static fields. * @param {eslint-scope.Scope} scope A scope to check. * @returns {boolean} `true` if the scope is a class static initializer scope. diff --git a/tools/node_modules/eslint/lib/shared/traverser.js b/tools/node_modules/eslint/lib/shared/traverser.js index be0ed59a4f9cf4..38b4e215132ede 100644 --- a/tools/node_modules/eslint/lib/shared/traverser.js +++ b/tools/node_modules/eslint/lib/shared/traverser.js @@ -74,7 +74,7 @@ class Traverser { } /** - * Gives a a copy of the ancestor nodes. + * Gives a copy of the ancestor nodes. * @returns {ASTNode[]} The ancestor nodes. */ parents() { diff --git a/tools/node_modules/eslint/lib/shared/types.js b/tools/node_modules/eslint/lib/shared/types.js index 60f9f1d6afe9e2..20335f68a73ac8 100644 --- a/tools/node_modules/eslint/lib/shared/types.js +++ b/tools/node_modules/eslint/lib/shared/types.js @@ -190,10 +190,23 @@ module.exports = {}; * @property {DeprecatedRuleInfo[]} usedDeprecatedRules The list of used deprecated rules. */ +/** + * Information provided when the maximum warning threshold is exceeded. + * @typedef {Object} MaxWarningsExceeded + * @property {number} maxWarnings Number of warnings to trigger nonzero exit code. + * @property {number} foundWarnings Number of warnings found while linting. + */ + +/** + * Metadata about results for formatters. + * @typedef {Object} ResultsMeta + * @property {MaxWarningsExceeded} [maxWarningsExceeded] Present if the maxWarnings threshold was exceeded. + */ + /** * A formatter function. * @callback FormatterFunction * @param {LintResult[]} results The list of linting results. - * @param {{cwd: string, rulesMeta: Record}} [context] A context object. + * @param {{cwd: string, maxWarningsExceeded?: MaxWarningsExceeded, rulesMeta: Record}} [context] A context object. * @returns {string | Promise} Formatted text. */ diff --git a/tools/node_modules/eslint/node_modules/@babel/compat-data/package.json b/tools/node_modules/eslint/node_modules/@babel/compat-data/package.json index 5000c9f56ba120..f2ae1194502a02 100644 --- a/tools/node_modules/eslint/node_modules/@babel/compat-data/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/compat-data/package.json @@ -1,6 +1,6 @@ { "name": "@babel/compat-data", - "version": "7.19.1", + "version": "7.19.3", "author": "The Babel Team (https://babel.dev/team)", "license": "MIT", "description": "", diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/full.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/full.js index 9ed56350a385f9..9beecffa4ed885 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/full.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/full.js @@ -326,8 +326,10 @@ const instantiatePlugin = (0, _caching.makeWeakCache)(function* ({ return new _plugin.default(plugin, options, alias, externalDependencies); }); +const needsFilename = val => val && typeof val !== "function"; + const validateIfOptionNeedsFilename = (options, descriptor) => { - if (options.test || options.include || options.exclude) { + if (needsFilename(options.test) || needsFilename(options.include) || needsFilename(options.exclude)) { const formattedPresetName = descriptor.name ? `"${descriptor.name}"` : "/* your preset */"; throw new _configError.default([`Preset ${formattedPresetName} requires a filename to be set when babel is called directly,`, `\`\`\``, `babel.transformSync(code, { filename: 'file.ts', presets: [${formattedPresetName}] });`, `\`\`\``, `See https://babeljs.io/docs/en/options#filename for more information.`].join("\n")); } 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 7cf5758de55f90..53693a2704a5c1 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 @@ -247,7 +247,7 @@ var _transformAst = require("./transform-ast"); var _parse = require("./parse"); -const version = "7.19.1"; +const version = "7.19.3"; exports.version = version; const DEFAULT_EXTENSIONS = Object.freeze([".js", ".jsx", ".es6", ".es", ".mjs", ".cjs"]); exports.DEFAULT_EXTENSIONS = DEFAULT_EXTENSIONS; 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 ac98e95ea306df..e4813da0a1f802 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.19.1", + "version": "7.19.3", "description": "Babel compiler core.", "main": "./lib/index.js", "author": "The Babel Team (https://babel.dev/team)", @@ -48,14 +48,14 @@ "dependencies": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.19.0", - "@babel/helper-compilation-targets": "^7.19.1", + "@babel/generator": "^7.19.3", + "@babel/helper-compilation-targets": "^7.19.3", "@babel/helper-module-transforms": "^7.19.0", "@babel/helpers": "^7.19.0", - "@babel/parser": "^7.19.1", + "@babel/parser": "^7.19.3", "@babel/template": "^7.18.10", - "@babel/traverse": "^7.19.1", - "@babel/types": "^7.19.0", + "@babel/traverse": "^7.19.3", + "@babel/types": "^7.19.3", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -63,11 +63,11 @@ "semver": "^6.3.0" }, "devDependencies": { - "@babel/helper-transform-fixture-test-runner": "^7.18.10", + "@babel/helper-transform-fixture-test-runner": "^7.19.3", "@babel/plugin-syntax-flow": "^7.18.6", "@babel/plugin-transform-flow-strip-types": "^7.19.0", "@babel/plugin-transform-modules-commonjs": "^7.18.6", - "@babel/preset-env": "^7.19.1", + "@babel/preset-env": "^7.19.3", "@jridgewell/trace-mapping": "^0.3.8", "@types/convert-source-map": "^1.5.1", "@types/debug": "^4.1.0", diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/expressions.js b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/expressions.js index 79e3e1cd922bbf..9610468f94f0bd 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/expressions.js +++ b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/expressions.js @@ -196,13 +196,13 @@ function OptionalMemberExpression(node) { function OptionalCallExpression(node) { this.print(node.callee, node); - this.print(node.typeArguments, node); this.print(node.typeParameters, node); if (node.optional) { this.token("?."); } + this.print(node.typeArguments, node); this.tokenChar(40); this.printList(node.arguments, node); this.tokenChar(41); diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/flow.js b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/flow.js index ed033a975f7b0a..a1fb0bba4ef550 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/flow.js +++ b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/flow.js @@ -396,7 +396,7 @@ function FunctionTypeAnnotation(node, parent) { this.tokenChar(41); - if (parent && (parent.type === "ObjectTypeCallProperty" || parent.type === "DeclareFunction" || parent.type === "ObjectTypeProperty" && parent.method)) { + if (parent && (parent.type === "ObjectTypeCallProperty" || parent.type === "ObjectTypeInternalSlot" || parent.type === "DeclareFunction" || parent.type === "ObjectTypeProperty" && parent.method)) { this.tokenChar(58); } else { this.space(); diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/lib/index.js b/tools/node_modules/eslint/node_modules/@babel/generator/lib/index.js index c2e6eab64b32ee..fea33707c81c50 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/lib/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/generator/lib/index.js @@ -38,8 +38,7 @@ function normalizeOptions(code, opts) { concise: opts.concise, indent: { adjustMultilineComment: true, - style: " ", - base: 0 + style: " " }, jsescOption: Object.assign({ quotes: "double", 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 650e044461f183..23074f593fc4bd 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.19.0", + "version": "7.19.3", "description": "Turns an AST into code.", "author": "The Babel Team (https://babel.dev/team)", "license": "MIT", @@ -19,13 +19,13 @@ "lib" ], "dependencies": { - "@babel/types": "^7.19.0", + "@babel/types": "^7.19.3", "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" }, "devDependencies": { "@babel/helper-fixtures": "^7.18.6", - "@babel/parser": "^7.19.0", + "@babel/parser": "^7.19.3", "@jridgewell/trace-mapping": "^0.3.8", "@types/jsesc": "^2.5.0", "charcodes": "^0.2.0" diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-compilation-targets/lib/types.js b/tools/node_modules/eslint/node_modules/@babel/helper-compilation-targets/lib/types.js deleted file mode 100644 index e1c8d91c2e25c4..00000000000000 --- a/tools/node_modules/eslint/node_modules/@babel/helper-compilation-targets/lib/types.js +++ /dev/null @@ -1,3 +0,0 @@ - - -//# sourceMappingURL=types.js.map diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-compilation-targets/package.json b/tools/node_modules/eslint/node_modules/@babel/helper-compilation-targets/package.json index 7ce3ba03d43240..9458458a65338c 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-compilation-targets/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/helper-compilation-targets/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-compilation-targets", - "version": "7.19.1", + "version": "7.19.3", "author": "The Babel Team (https://babel.dev/team)", "license": "MIT", "description": "Helper functions on Babel compilation targets", @@ -22,7 +22,7 @@ "babel-plugin" ], "dependencies": { - "@babel/compat-data": "^7.19.1", + "@babel/compat-data": "^7.19.3", "@babel/helper-validator-option": "^7.18.6", "browserslist": "^4.21.3", "semver": "^6.3.0" @@ -31,7 +31,7 @@ "@babel/core": "^7.0.0" }, "devDependencies": { - "@babel/core": "^7.19.1", + "@babel/core": "^7.19.3", "@babel/helper-plugin-test-runner": "^7.18.6", "@types/semver": "^5.5.0" }, diff --git a/tools/node_modules/eslint/node_modules/@babel/parser/lib/index.js b/tools/node_modules/eslint/node_modules/@babel/parser/lib/index.js index dced7d016ad0df..ea0597675f507f 100644 --- a/tools/node_modules/eslint/node_modules/@babel/parser/lib/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/parser/lib/index.js @@ -7996,7 +7996,7 @@ var jsx = (superClass => class JSXParserMixin extends superClass { jsxParseSpreadChild(node) { this.next(); node.expression = this.parseExpression(); - this.setContext(types.j_oTag); + this.setContext(types.j_expr); this.state.canStartJSXElement = true; this.expect(8); return this.finishNode(node, "JSXSpreadChild"); @@ -8366,14 +8366,18 @@ class TypeScriptScopeHandler extends ScopeHandler { } checkLocalExport(id) { - const topLevelScope = this.scopeStack[0]; const { name } = id; + if (this.hasImport(name)) return; + const len = this.scopeStack.length; - if (!topLevelScope.types.has(name) && !topLevelScope.exportOnlyBindings.has(name) && !this.hasImport(name)) { - super.checkLocalExport(id); + for (let i = len - 1; i >= 0; i--) { + const scope = this.scopeStack[i]; + if (scope.types.has(name) || scope.exportOnlyBindings.has(name)) return; } + + super.checkLocalExport(id); } } @@ -9910,7 +9914,7 @@ var typescript = (superClass => class TypeScriptParserMixin extends superClass { tsParseImportEqualsDeclaration(node, isExport) { node.isExport = isExport || false; node.id = this.parseIdentifier(); - this.checkIdentifier(node.id, BIND_LEXICAL); + this.checkIdentifier(node.id, BIND_FLAGS_TS_IMPORT); this.expect(29); const moduleReference = this.tsParseModuleReference(); 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 b3f9725558d5ee..24273644fbd474 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.19.1", + "version": "7.19.3", "description": "A JavaScript parser", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-parser", diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/generated/asserts.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/generated/asserts.js deleted file mode 100644 index 9705d0f89e2fbc..00000000000000 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/generated/asserts.js +++ /dev/null @@ -1,3 +0,0 @@ - - -//# sourceMappingURL=asserts.js.map diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/generated/validators.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/generated/validators.js deleted file mode 100644 index 9400b401c42e2a..00000000000000 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/generated/validators.js +++ /dev/null @@ -1,3 +0,0 @@ - - -//# sourceMappingURL=validators.js.map 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 39fe1d20f71a4a..85b687fdf8206c 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.19.1", + "version": "7.19.3", "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", @@ -17,13 +17,13 @@ "main": "./lib/index.js", "dependencies": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.19.0", + "@babel/generator": "^7.19.3", "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-function-name": "^7.19.0", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.19.1", - "@babel/types": "^7.19.0", + "@babel/parser": "^7.19.3", + "@babel/types": "^7.19.3", "debug": "^4.1.0", "globals": "^11.1.0" }, 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 a838369c361e50..09537ee029c555 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.19.0", + "version": "7.19.3", "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", @@ -25,12 +25,12 @@ }, "dependencies": { "@babel/helper-string-parser": "^7.18.10", - "@babel/helper-validator-identifier": "^7.18.6", + "@babel/helper-validator-identifier": "^7.19.1", "to-fast-properties": "^2.0.0" }, "devDependencies": { - "@babel/generator": "^7.19.0", - "@babel/parser": "^7.19.0", + "@babel/generator": "^7.19.3", + "@babel/parser": "^7.19.3", "chalk": "^4.1.0", "glob": "^7.2.0" }, diff --git a/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/asserts.js b/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/asserts.js index 1d862e417601df..34e4e57e954387 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/asserts.js +++ b/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/asserts.js @@ -1,8 +1,13 @@ -import * as definitions from "../../lib/definitions/index.js"; +import { + DEPRECATED_KEYS, + FLIPPED_ALIAS_KEYS, + NODE_FIELDS, + VISITOR_KEYS, +} from "../../lib/index.js"; function addAssertHelper(type) { const result = - definitions.NODE_FIELDS[type] || definitions.FLIPPED_ALIAS_KEYS[type] + NODE_FIELDS[type] || FLIPPED_ALIAS_KEYS[type] ? `node is t.${type}` : "boolean"; @@ -30,16 +35,16 @@ function assert(type: string, node: any, opts?: any): void { } }\n\n`; - Object.keys(definitions.VISITOR_KEYS).forEach(type => { + Object.keys(VISITOR_KEYS).forEach(type => { output += addAssertHelper(type); }); - Object.keys(definitions.FLIPPED_ALIAS_KEYS).forEach(type => { + Object.keys(FLIPPED_ALIAS_KEYS).forEach(type => { output += addAssertHelper(type); }); - Object.keys(definitions.DEPRECATED_KEYS).forEach(type => { - const newType = definitions.DEPRECATED_KEYS[type]; + Object.keys(DEPRECATED_KEYS).forEach(type => { + const newType = DEPRECATED_KEYS[type]; output += `export function assert${type}(node: any, opts: any): void { console.trace("The node type ${type} has been renamed to ${newType}"); assert("${type}", node, opts); diff --git a/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/builders.js b/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/builders.js index 46566f58c4c667..9e2bc0e7aea67d 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/builders.js +++ b/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/builders.js @@ -1,5 +1,9 @@ -import * as t from "../../lib/index.js"; -import * as definitions from "../../lib/definitions/index.js"; +import { + BUILDER_KEYS, + DEPRECATED_KEYS, + NODE_FIELDS, + toBindingIdentifierName, +} from "../../lib/index.js"; import formatBuilderName from "../utils/formatBuilderName.js"; import lowerFirst from "../utils/lowerFirst.js"; import stringifyValidator from "../utils/stringifyValidator.js"; @@ -19,8 +23,8 @@ function isNullable(field) { function sortFieldNames(fields, type) { return fields.sort((fieldA, fieldB) => { - const indexA = t.BUILDER_KEYS[type].indexOf(fieldA); - const indexB = t.BUILDER_KEYS[type].indexOf(fieldB); + const indexA = BUILDER_KEYS[type].indexOf(fieldA); + const indexB = BUILDER_KEYS[type].indexOf(fieldB); if (indexA === indexB) return fieldA < fieldB ? -1 : 1; if (indexA === -1) return 1; if (indexB === -1) return -1; @@ -29,9 +33,9 @@ function sortFieldNames(fields, type) { } function generateBuilderArgs(type) { - const fields = t.NODE_FIELDS[type]; - const fieldNames = sortFieldNames(Object.keys(t.NODE_FIELDS[type]), type); - const builderNames = t.BUILDER_KEYS[type]; + const fields = NODE_FIELDS[type]; + const fieldNames = sortFieldNames(Object.keys(NODE_FIELDS[type]), type); + const builderNames = BUILDER_KEYS[type]; const args = []; @@ -51,9 +55,9 @@ function generateBuilderArgs(type) { } if (builderNames.includes(fieldName)) { - const field = definitions.NODE_FIELDS[type][fieldName]; + const field = NODE_FIELDS[type][fieldName]; const def = JSON.stringify(field.default); - const bindingIdentifierName = t.toBindingIdentifierName(fieldName); + const bindingIdentifierName = toBindingIdentifierName(fieldName); let arg; if (areAllRemainingFieldsNullable(fieldName, builderNames, fields)) { arg = `${bindingIdentifierName}${ @@ -90,23 +94,20 @@ import type * as t from "../.."; `; const reservedNames = new Set(["super", "import"]); - Object.keys(definitions.BUILDER_KEYS).forEach(type => { + Object.keys(BUILDER_KEYS).forEach(type => { const defArgs = generateBuilderArgs(type); const formatedBuilderName = formatBuilderName(type); const formatedBuilderNameLocal = reservedNames.has(formatedBuilderName) ? `_${formatedBuilderName}` : formatedBuilderName; - const fieldNames = sortFieldNames( - Object.keys(definitions.NODE_FIELDS[type]), - type - ); - const builderNames = definitions.BUILDER_KEYS[type]; + const fieldNames = sortFieldNames(Object.keys(NODE_FIELDS[type]), type); + const builderNames = BUILDER_KEYS[type]; const objectFields = [["type", JSON.stringify(type)]]; fieldNames.forEach(fieldName => { - const field = definitions.NODE_FIELDS[type][fieldName]; + const field = NODE_FIELDS[type][fieldName]; if (builderNames.includes(fieldName)) { - const bindingIdentifierName = t.toBindingIdentifierName(fieldName); + const bindingIdentifierName = toBindingIdentifierName(fieldName); objectFields.push([fieldName, bindingIdentifierName]); } else if (!field.optional) { const def = JSON.stringify(field.default); @@ -143,14 +144,14 @@ import type * as t from "../.."; } }); - Object.keys(definitions.DEPRECATED_KEYS).forEach(type => { - const newType = definitions.DEPRECATED_KEYS[type]; + Object.keys(DEPRECATED_KEYS).forEach(type => { + const newType = DEPRECATED_KEYS[type]; const formatedBuilderName = formatBuilderName(type); const formatedNewBuilderName = formatBuilderName(newType); output += `/** @deprecated */ function ${type}(${generateBuilderArgs(newType).join(", ")}) { console.trace("The node type ${type} has been renamed to ${newType}"); - return ${formatedNewBuilderName}(${t.BUILDER_KEYS[newType].join(", ")}); + return ${formatedNewBuilderName}(${BUILDER_KEYS[newType].join(", ")}); } export { ${type} as ${formatedBuilderName} };\n`; // This is needed for backwards compatibility. @@ -177,12 +178,12 @@ function generateUppercaseBuilders() { export {\n`; - Object.keys(definitions.BUILDER_KEYS).forEach(type => { + Object.keys(BUILDER_KEYS).forEach(type => { const formatedBuilderName = formatBuilderName(type); output += ` ${formatedBuilderName} as ${type},\n`; }); - Object.keys(definitions.DEPRECATED_KEYS).forEach(type => { + Object.keys(DEPRECATED_KEYS).forEach(type => { const formatedBuilderName = formatBuilderName(type); output += ` ${formatedBuilderName} as ${type},\n`; }); diff --git a/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/constants.js b/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/constants.js index 65b7a905d77eab..afa9009d695fac 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/constants.js +++ b/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/constants.js @@ -1,4 +1,4 @@ -import * as definitions from "../../lib/definitions/index.js"; +import { FLIPPED_ALIAS_KEYS } from "../../lib/index.js"; export default function generateConstants() { let output = `/* @@ -7,7 +7,7 @@ export default function generateConstants() { */ import { FLIPPED_ALIAS_KEYS } from "../../definitions";\n\n`; - Object.keys(definitions.FLIPPED_ALIAS_KEYS).forEach(type => { + Object.keys(FLIPPED_ALIAS_KEYS).forEach(type => { output += `export const ${type.toUpperCase()}_TYPES = FLIPPED_ALIAS_KEYS["${type}"];\n`; }); diff --git a/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/validators.js b/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/validators.js index 85c8b4906c8d1c..f7ac23a51830ab 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/validators.js +++ b/tools/node_modules/eslint/node_modules/@babel/types/scripts/generators/validators.js @@ -1,4 +1,11 @@ -import * as definitions from "../../lib/definitions/index.js"; +import { + DEPRECATED_KEYS, + FLIPPED_ALIAS_KEYS, + NODE_FIELDS, + PLACEHOLDERS, + PLACEHOLDERS_FLIPPED_ALIAS, + VISITOR_KEYS, +} from "../../lib/index.js"; const has = Function.call.bind(Object.prototype.hasOwnProperty); @@ -17,14 +24,11 @@ function addIsHelper(type, aliasKeys, deprecated) { let placeholderSource = ""; const placeholderTypes = []; - if ( - definitions.PLACEHOLDERS.includes(type) && - has(definitions.FLIPPED_ALIAS_KEYS, type) - ) { + if (PLACEHOLDERS.includes(type) && has(FLIPPED_ALIAS_KEYS, type)) { placeholderTypes.push(type); } - if (has(definitions.PLACEHOLDERS_FLIPPED_ALIAS, type)) { - placeholderTypes.push(...definitions.PLACEHOLDERS_FLIPPED_ALIAS[type]); + if (has(PLACEHOLDERS_FLIPPED_ALIAS, type)) { + placeholderTypes.push(...PLACEHOLDERS_FLIPPED_ALIAS[type]); } if (placeholderTypes.length > 0) { placeholderSource = @@ -37,7 +41,7 @@ function addIsHelper(type, aliasKeys, deprecated) { } const result = - definitions.NODE_FIELDS[type] || definitions.FLIPPED_ALIAS_KEYS[type] + NODE_FIELDS[type] || FLIPPED_ALIAS_KEYS[type] ? `node is t.${type}` : "boolean"; @@ -69,16 +73,16 @@ export default function generateValidators() { import shallowEqual from "../../utils/shallowEqual"; import type * as t from "../..";\n\n`; - Object.keys(definitions.VISITOR_KEYS).forEach(type => { + Object.keys(VISITOR_KEYS).forEach(type => { output += addIsHelper(type); }); - Object.keys(definitions.FLIPPED_ALIAS_KEYS).forEach(type => { - output += addIsHelper(type, definitions.FLIPPED_ALIAS_KEYS[type]); + Object.keys(FLIPPED_ALIAS_KEYS).forEach(type => { + output += addIsHelper(type, FLIPPED_ALIAS_KEYS[type]); }); - Object.keys(definitions.DEPRECATED_KEYS).forEach(type => { - const newType = definitions.DEPRECATED_KEYS[type]; + Object.keys(DEPRECATED_KEYS).forEach(type => { + const newType = DEPRECATED_KEYS[type]; const deprecated = `console.trace("The node type ${type} has been renamed to ${newType}");`; output += addIsHelper(type, null, deprecated); }); 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 1fa743c91e1420..a722b6ce12fa79 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 @@ -3706,8 +3706,7 @@ class CascadingConfigArrayFactory { configArrayFactory, cwd, rulePaths, - loadRules, - resolver + loadRules }), baseConfigData, cliConfigArray: createCLIConfigArray({ diff --git a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js index 4b575c2dc01fe5..597352e4394e6e 100644 --- a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js +++ b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js @@ -250,8 +250,7 @@ class CascadingConfigArrayFactory { configArrayFactory, cwd, rulePaths, - loadRules, - resolver + loadRules }), baseConfigData, cliConfigArray: createCLIConfigArray({ 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 bc9989719b126b..ea8a18dcb17bb7 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": "1.3.2", + "version": "1.3.3", "description": "The legacy ESLintRC config file format for ESLint", "type": "module", "main": "./dist/eslintrc.cjs", 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 c0d58fc4a2a8c6..b0f4b707a1f54e 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 @@ -103,6 +103,9 @@ const baseSchema = Object.freeze({ // Helpers //------------------------------------------------------------------------------ +const Minimatch = minimatch.Minimatch; +const minimatchCache = new Map(); +const negatedMinimatchCache = new Map(); const debug = createDebug('@hwc/config-array'); const MINIMATCH_OPTIONS = { @@ -121,6 +124,32 @@ function isString(value) { return typeof value === 'string'; } +/** + * Wrapper around minimatch that caches minimatch patterns for + * faster matching speed over multiple file path evaluations. + * @param {string} filepath The file path to match. + * @param {string} pattern The glob pattern to match against. + * @param {object} options The minimatch options to use. + * @returns + */ +function doMatch(filepath, pattern, options) { + + let cache = minimatchCache; + + if (options.flipNegate) { + cache = negatedMinimatchCache; + } + + let matcher = cache.get(pattern); + + if (!matcher) { + matcher = new Minimatch(pattern, options); + cache.set(pattern, matcher); + } + + return matcher.match(filepath); +} + /** * Normalizes a `ConfigArray` by flattening it and executing any functions * that are found inside. @@ -263,14 +292,14 @@ function shouldIgnoreFilePath(ignores, filePath, relativeFilePath) { * would already be ignored. */ if (shouldIgnore && - minimatch(relativeFilePath, matcher, { + doMatch(relativeFilePath, matcher, { ...MINIMATCH_OPTIONS, flipNegate: true })) { return false; } } else { - shouldIgnore = shouldIgnore || minimatch(relativeFilePath, matcher, MINIMATCH_OPTIONS); + shouldIgnore = shouldIgnore || doMatch(relativeFilePath, matcher, MINIMATCH_OPTIONS); } } @@ -306,7 +335,7 @@ function pathMatches(filePath, basePath, config) { const match = pattern => { if (isString(pattern)) { - return minimatch(relativeFilePath, pattern, MINIMATCH_OPTIONS); + return doMatch(relativeFilePath, pattern, MINIMATCH_OPTIONS); } if (typeof pattern === 'function') { @@ -452,7 +481,9 @@ class ConfigArray extends Array { this[ConfigArraySymbol.configCache] = new Map(); // init cache - dataCache.set(this, { explicitMatches: new Map() }); + dataCache.set(this, { + explicitMatches: new Map() + }); // load the configs into this array if (Array.isArray(configs)) { 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 0d0a371448cb4f..cedda5c69caacc 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,6 +1,6 @@ { "name": "@humanwhocodes/config-array", - "version": "0.10.5", + "version": "0.10.7", "description": "Glob-based configuration matching.", "author": "Nicholas C. Zakas", "main": "api.js", @@ -49,7 +49,7 @@ "@nitpik/javascript": "0.4.0", "@nitpik/node": "0.0.5", "chai": "4.2.0", - "eslint": "8.23.1", + "eslint": "8.24.0", "esm": "3.2.25", "lint-staged": "13.0.3", "mocha": "6.2.3", diff --git a/tools/node_modules/eslint/node_modules/@humanwhocodes/gitignore-to-minimatch/LICENSE b/tools/node_modules/eslint/node_modules/@humanwhocodes/gitignore-to-minimatch/LICENSE deleted file mode 100644 index 261eeb9e9f8b2b..00000000000000 --- a/tools/node_modules/eslint/node_modules/@humanwhocodes/gitignore-to-minimatch/LICENSE +++ /dev/null @@ -1,201 +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 - - 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 [yyyy] [name of copyright owner] - - 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/@humanwhocodes/gitignore-to-minimatch/dist/gitignore-to-minimatch.cjs b/tools/node_modules/eslint/node_modules/@humanwhocodes/gitignore-to-minimatch/dist/gitignore-to-minimatch.cjs deleted file mode 100644 index 110bb2d59e8018..00000000000000 --- a/tools/node_modules/eslint/node_modules/@humanwhocodes/gitignore-to-minimatch/dist/gitignore-to-minimatch.cjs +++ /dev/null @@ -1,71 +0,0 @@ -'use strict'; - -Object.defineProperty(exports, '__esModule', { value: true }); - -/** - * @fileoverview Utility to convert gitignore patterns to minimatch. - * @author Nicholas C. Zakas - */ - -/** - * Converts a gitignore pattern to a minimatch pattern. - * @param {string} pattern The gitignore pattern to convert. - * @returns {string} A minimatch pattern equivalent to `pattern`. - */ -function gitignoreToMinimatch(pattern) { - - if (typeof pattern !== "string") { - throw new TypeError("Argument must be a string."); - } - - // Special case: Empty string - if (!pattern) { - return pattern; - } - - // strip off negation to make life easier - const negated = pattern.startsWith("!"); - let patternToTest = negated ? pattern.slice(1) : pattern; - let result = patternToTest; - let leadingSlash = false; - - // strip off leading slash - if (patternToTest[0] === "/") { - leadingSlash = true; - result = patternToTest.slice(1); - } - - // For the most part, the first character determines what to do - switch (result[0]) { - - case "*": - if (patternToTest[1] !== "*") { - result = "**/" + result; - } - break; - - default: - if (!leadingSlash && !result.includes("/") || result.endsWith("/")) { - result = "**/" + result; - } - - // no further changes if the pattern ends with a wildcard - if (result.endsWith("*") || result.endsWith("?")) { - break; - } - - // differentiate between filenames and directory names - if (!/\.[a-z\d_-]+$/.test(result)) { - if (!result.endsWith("/")) { - result += "/"; - } - - result += "**"; - } - } - - return negated ? "!" + result : result; - -} - -exports.gitignoreToMinimatch = gitignoreToMinimatch; diff --git a/tools/node_modules/eslint/node_modules/@humanwhocodes/gitignore-to-minimatch/dist/gitignore-to-minimatch.js b/tools/node_modules/eslint/node_modules/@humanwhocodes/gitignore-to-minimatch/dist/gitignore-to-minimatch.js deleted file mode 100644 index 8c4d1710da73bc..00000000000000 --- a/tools/node_modules/eslint/node_modules/@humanwhocodes/gitignore-to-minimatch/dist/gitignore-to-minimatch.js +++ /dev/null @@ -1,67 +0,0 @@ -/** - * @fileoverview Utility to convert gitignore patterns to minimatch. - * @author Nicholas C. Zakas - */ - -/** - * Converts a gitignore pattern to a minimatch pattern. - * @param {string} pattern The gitignore pattern to convert. - * @returns {string} A minimatch pattern equivalent to `pattern`. - */ -function gitignoreToMinimatch(pattern) { - - if (typeof pattern !== "string") { - throw new TypeError("Argument must be a string."); - } - - // Special case: Empty string - if (!pattern) { - return pattern; - } - - // strip off negation to make life easier - const negated = pattern.startsWith("!"); - let patternToTest = negated ? pattern.slice(1) : pattern; - let result = patternToTest; - let leadingSlash = false; - - // strip off leading slash - if (patternToTest[0] === "/") { - leadingSlash = true; - result = patternToTest.slice(1); - } - - // For the most part, the first character determines what to do - switch (result[0]) { - - case "*": - if (patternToTest[1] !== "*") { - result = "**/" + result; - } - break; - - default: - if (!leadingSlash && !result.includes("/") || result.endsWith("/")) { - result = "**/" + result; - } - - // no further changes if the pattern ends with a wildcard - if (result.endsWith("*") || result.endsWith("?")) { - break; - } - - // differentiate between filenames and directory names - if (!/\.[a-z\d_-]+$/.test(result)) { - if (!result.endsWith("/")) { - result += "/"; - } - - result += "**"; - } - } - - return negated ? "!" + result : result; - -} - -export { gitignoreToMinimatch }; diff --git a/tools/node_modules/eslint/node_modules/@humanwhocodes/gitignore-to-minimatch/package.json b/tools/node_modules/eslint/node_modules/@humanwhocodes/gitignore-to-minimatch/package.json deleted file mode 100644 index 3a6ea6b03ecbbb..00000000000000 --- a/tools/node_modules/eslint/node_modules/@humanwhocodes/gitignore-to-minimatch/package.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "name": "@humanwhocodes/gitignore-to-minimatch", - "version": "1.0.2", - "description": "Utility to convert gitignore patterns to minimatch patterns", - "type": "module", - "main": "dist/gitignore-to-minimatch.cjs", - "module": "dist/gitignore-to-minimatch.js", - "types": "dist/gitignore-to-minimatch.d.ts", - "exports": { - "require": "./dist/gitignore-to-minimatch.cjs", - "import": "./dist/gitignore-to-minimatch.js" - }, - "files": [ - "dist" - ], - "publishConfig": { - "access": "public" - }, - "gitHooks": { - "pre-commit": "lint-staged" - }, - "lint-staged": { - "*.js": [ - "eslint --fix" - ] - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - }, - "scripts": { - "build": "rollup -c && tsc", - "prepare": "npm run build", - "lint": "eslint src/ tests/", - "lint:fix": "eslint src/ tests/", - "pretest": "npm run build", - "test:unit": "mocha tests/gitignore-to-minimatch.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/gitignore-to-minimatch.git" - }, - "keywords": [ - "gitignore", - "minimatch", - "glob" - ], - "author": "Nicholas C. Zaks", - "license": "Apache-2.0", - "devDependencies": { - "chai": "^4.3.4", - "eslint": "^7.32.0", - "lint-staged": "^10.4.0", - "mocha": "^9.0.3", - "rollup": "^1.20.3", - "typescript": "^4.0.3", - "yorkie": "^2.0.0" - } -} diff --git a/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs b/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs index 594471ce30fabf..d991821362bb16 100644 --- a/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs +++ b/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs @@ -290,6 +290,7 @@ const LINE_GTR_ZERO = '`line` must be greater than 0 (lines start at line 1)'; const COL_GTR_EQ_ZERO = '`column` must be greater than or equal to 0 (columns start at column 0)'; const LEAST_UPPER_BOUND = -1; const GREATEST_LOWER_BOUND = 1; +const ALL_BOUND = 0; /** * Returns the encoded (VLQ string) form of the SourceMap's mappings field. */ @@ -310,13 +311,13 @@ let traceSegment; */ let originalPositionFor; /** - * Finds the source/line/column directly after the mapping returned by originalPositionFor, provided - * the found mapping is from the same source and line as the originalPositionFor mapping. - * - * Eg, in the code `let id = 1`, `originalPositionAfter` could find the mapping associated with `1` - * using the same needle that would return `id` when calling `originalPositionFor`. + * Finds the generated line/column position of the provided source/line/column source position. */ let generatedPositionFor; +/** + * Finds all generated line/column positions of the provided source/line/column source position. + */ +let allGeneratedPositionsFor; /** * Iterates each mapping in generated position order. */ @@ -383,7 +384,9 @@ class TraceMap { // mapping (like a "//# sourceMappingURL=") at the end of the child file. if (line >= decoded.length) return null; - return traceSegmentInternal(decoded[line], map._decodedMemo, line, column, GREATEST_LOWER_BOUND); + const segments = decoded[line]; + const index = traceSegmentInternal(segments, map._decodedMemo, line, column, GREATEST_LOWER_BOUND); + return index === -1 ? null : segments[index]; }; originalPositionFor = (map, { line, column, bias }) => { line--; @@ -396,35 +399,21 @@ class TraceMap { // mapping (like a "//# sourceMappingURL=") at the end of the child file. if (line >= decoded.length) return OMapping(null, null, null, null); - const segment = traceSegmentInternal(decoded[line], map._decodedMemo, line, column, bias || GREATEST_LOWER_BOUND); - if (segment == null) + const segments = decoded[line]; + const index = traceSegmentInternal(segments, map._decodedMemo, line, column, bias || GREATEST_LOWER_BOUND); + if (index === -1) return OMapping(null, null, null, null); - if (segment.length == 1) + const segment = segments[index]; + if (segment.length === 1) return OMapping(null, null, null, null); const { names, resolvedSources } = map; return OMapping(resolvedSources[segment[SOURCES_INDEX]], segment[SOURCE_LINE] + 1, segment[SOURCE_COLUMN], segment.length === 5 ? names[segment[NAMES_INDEX]] : null); }; + allGeneratedPositionsFor = (map, { source, line, column }) => { + return generatedPosition(map, source, line, column, ALL_BOUND); + }; generatedPositionFor = (map, { source, line, column, bias }) => { - line--; - if (line < 0) - throw new Error(LINE_GTR_ZERO); - if (column < 0) - throw new Error(COL_GTR_EQ_ZERO); - const { sources, resolvedSources } = map; - let sourceIndex = sources.indexOf(source); - if (sourceIndex === -1) - sourceIndex = resolvedSources.indexOf(source); - if (sourceIndex === -1) - return GMapping(null, null); - const generated = (map._bySources || (map._bySources = buildBySources(decodedMappings(map), (map._bySourceMemos = sources.map(memoizedState))))); - const memos = map._bySourceMemos; - const segments = generated[sourceIndex][line]; - if (segments == null) - return GMapping(null, null); - const segment = traceSegmentInternal(segments, memos[sourceIndex], line, column, bias || GREATEST_LOWER_BOUND); - if (segment == null) - return GMapping(null, null); - return GMapping(segment[REV_GENERATED_LINE] + 1, segment[REV_GENERATED_COLUMN]); + return generatedPosition(map, source, line, column, bias || GREATEST_LOWER_BOUND); }; eachMapping = (map, cb) => { const decoded = decodedMappings(map); @@ -477,6 +466,31 @@ class TraceMap { encodedMap = (map) => { return clone(map, encodedMappings(map)); }; + function generatedPosition(map, source, line, column, bias) { + line--; + if (line < 0) + throw new Error(LINE_GTR_ZERO); + if (column < 0) + throw new Error(COL_GTR_EQ_ZERO); + const { sources, resolvedSources } = map; + let sourceIndex = sources.indexOf(source); + if (sourceIndex === -1) + sourceIndex = resolvedSources.indexOf(source); + if (sourceIndex === -1) + return bias === ALL_BOUND ? [] : GMapping(null, null); + const generated = (map._bySources || (map._bySources = buildBySources(decodedMappings(map), (map._bySourceMemos = sources.map(memoizedState))))); + const segments = generated[sourceIndex][line]; + if (segments == null) + return bias === ALL_BOUND ? [] : GMapping(null, null); + const memo = map._bySourceMemos[sourceIndex]; + if (bias === ALL_BOUND) + return sliceGeneratedPositions(segments, memo, line, column); + const index = traceSegmentInternal(segments, memo, line, column, bias); + if (index === -1) + return GMapping(null, null); + const segment = segments[index]; + return GMapping(segment[REV_GENERATED_LINE] + 1, segment[REV_GENERATED_COLUMN]); + } })(); function clone(map, mappings) { return { @@ -503,9 +517,28 @@ function traceSegmentInternal(segments, memo, line, column, bias) { else if (bias === LEAST_UPPER_BOUND) index++; if (index === -1 || index === segments.length) - return null; - return segments[index]; + return -1; + return index; +} +function sliceGeneratedPositions(segments, memo, line, column) { + let min = traceSegmentInternal(segments, memo, line, column, GREATEST_LOWER_BOUND); + if (min === -1) + return []; + // We may have found the segment that started at an earlier column. If this is the case, then we + // need to slice all generated segments that match _that_ column, because all such segments span + // to our desired column. + const matchedColumn = found ? column : segments[min][COLUMN]; + // The binary search is not guaranteed to find the lower bound when a match wasn't found. + if (!found) + min = lowerBound(segments, matchedColumn, min); + const max = upperBound(segments, matchedColumn, min); + const result = []; + for (; min <= max; min++) { + const segment = segments[min]; + result.push(GMapping(segment[REV_GENERATED_LINE] + 1, segment[REV_GENERATED_COLUMN])); + } + return result; } -export { AnyMap, GREATEST_LOWER_BOUND, LEAST_UPPER_BOUND, TraceMap, decodedMap, decodedMappings, eachMapping, encodedMap, encodedMappings, generatedPositionFor, originalPositionFor, presortedDecodedMap, sourceContentFor, traceSegment }; +export { AnyMap, GREATEST_LOWER_BOUND, LEAST_UPPER_BOUND, TraceMap, allGeneratedPositionsFor, decodedMap, decodedMappings, eachMapping, encodedMap, encodedMappings, generatedPositionFor, originalPositionFor, presortedDecodedMap, sourceContentFor, traceSegment }; //# sourceMappingURL=trace-mapping.mjs.map diff --git a/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js b/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js index d0741e03b610b9..d53c9ff8cde8a8 100644 --- a/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js +++ b/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js @@ -297,6 +297,7 @@ const COL_GTR_EQ_ZERO = '`column` must be greater than or equal to 0 (columns start at column 0)'; const LEAST_UPPER_BOUND = -1; const GREATEST_LOWER_BOUND = 1; + const ALL_BOUND = 0; /** * Returns the encoded (VLQ string) form of the SourceMap's mappings field. */ @@ -317,13 +318,13 @@ */ exports.originalPositionFor = void 0; /** - * Finds the source/line/column directly after the mapping returned by originalPositionFor, provided - * the found mapping is from the same source and line as the originalPositionFor mapping. - * - * Eg, in the code `let id = 1`, `originalPositionAfter` could find the mapping associated with `1` - * using the same needle that would return `id` when calling `originalPositionFor`. + * Finds the generated line/column position of the provided source/line/column source position. */ exports.generatedPositionFor = void 0; + /** + * Finds all generated line/column positions of the provided source/line/column source position. + */ + exports.allGeneratedPositionsFor = void 0; /** * Iterates each mapping in generated position order. */ @@ -390,7 +391,9 @@ // mapping (like a "//# sourceMappingURL=") at the end of the child file. if (line >= decoded.length) return null; - return traceSegmentInternal(decoded[line], map._decodedMemo, line, column, GREATEST_LOWER_BOUND); + const segments = decoded[line]; + const index = traceSegmentInternal(segments, map._decodedMemo, line, column, GREATEST_LOWER_BOUND); + return index === -1 ? null : segments[index]; }; exports.originalPositionFor = (map, { line, column, bias }) => { line--; @@ -403,35 +406,21 @@ // mapping (like a "//# sourceMappingURL=") at the end of the child file. if (line >= decoded.length) return OMapping(null, null, null, null); - const segment = traceSegmentInternal(decoded[line], map._decodedMemo, line, column, bias || GREATEST_LOWER_BOUND); - if (segment == null) + const segments = decoded[line]; + const index = traceSegmentInternal(segments, map._decodedMemo, line, column, bias || GREATEST_LOWER_BOUND); + if (index === -1) return OMapping(null, null, null, null); - if (segment.length == 1) + const segment = segments[index]; + if (segment.length === 1) return OMapping(null, null, null, null); const { names, resolvedSources } = map; return OMapping(resolvedSources[segment[SOURCES_INDEX]], segment[SOURCE_LINE] + 1, segment[SOURCE_COLUMN], segment.length === 5 ? names[segment[NAMES_INDEX]] : null); }; + exports.allGeneratedPositionsFor = (map, { source, line, column }) => { + return generatedPosition(map, source, line, column, ALL_BOUND); + }; exports.generatedPositionFor = (map, { source, line, column, bias }) => { - line--; - if (line < 0) - throw new Error(LINE_GTR_ZERO); - if (column < 0) - throw new Error(COL_GTR_EQ_ZERO); - const { sources, resolvedSources } = map; - let sourceIndex = sources.indexOf(source); - if (sourceIndex === -1) - sourceIndex = resolvedSources.indexOf(source); - if (sourceIndex === -1) - return GMapping(null, null); - const generated = (map._bySources || (map._bySources = buildBySources(exports.decodedMappings(map), (map._bySourceMemos = sources.map(memoizedState))))); - const memos = map._bySourceMemos; - const segments = generated[sourceIndex][line]; - if (segments == null) - return GMapping(null, null); - const segment = traceSegmentInternal(segments, memos[sourceIndex], line, column, bias || GREATEST_LOWER_BOUND); - if (segment == null) - return GMapping(null, null); - return GMapping(segment[REV_GENERATED_LINE] + 1, segment[REV_GENERATED_COLUMN]); + return generatedPosition(map, source, line, column, bias || GREATEST_LOWER_BOUND); }; exports.eachMapping = (map, cb) => { const decoded = exports.decodedMappings(map); @@ -484,6 +473,31 @@ exports.encodedMap = (map) => { return clone(map, exports.encodedMappings(map)); }; + function generatedPosition(map, source, line, column, bias) { + line--; + if (line < 0) + throw new Error(LINE_GTR_ZERO); + if (column < 0) + throw new Error(COL_GTR_EQ_ZERO); + const { sources, resolvedSources } = map; + let sourceIndex = sources.indexOf(source); + if (sourceIndex === -1) + sourceIndex = resolvedSources.indexOf(source); + if (sourceIndex === -1) + return bias === ALL_BOUND ? [] : GMapping(null, null); + const generated = (map._bySources || (map._bySources = buildBySources(exports.decodedMappings(map), (map._bySourceMemos = sources.map(memoizedState))))); + const segments = generated[sourceIndex][line]; + if (segments == null) + return bias === ALL_BOUND ? [] : GMapping(null, null); + const memo = map._bySourceMemos[sourceIndex]; + if (bias === ALL_BOUND) + return sliceGeneratedPositions(segments, memo, line, column); + const index = traceSegmentInternal(segments, memo, line, column, bias); + if (index === -1) + return GMapping(null, null); + const segment = segments[index]; + return GMapping(segment[REV_GENERATED_LINE] + 1, segment[REV_GENERATED_COLUMN]); + } })(); function clone(map, mappings) { return { @@ -510,8 +524,27 @@ else if (bias === LEAST_UPPER_BOUND) index++; if (index === -1 || index === segments.length) - return null; - return segments[index]; + return -1; + return index; + } + function sliceGeneratedPositions(segments, memo, line, column) { + let min = traceSegmentInternal(segments, memo, line, column, GREATEST_LOWER_BOUND); + if (min === -1) + return []; + // We may have found the segment that started at an earlier column. If this is the case, then we + // need to slice all generated segments that match _that_ column, because all such segments span + // to our desired column. + const matchedColumn = found ? column : segments[min][COLUMN]; + // The binary search is not guaranteed to find the lower bound when a match wasn't found. + if (!found) + min = lowerBound(segments, matchedColumn, min); + const max = upperBound(segments, matchedColumn, min); + const result = []; + for (; min <= max; min++) { + const segment = segments[min]; + result.push(GMapping(segment[REV_GENERATED_LINE] + 1, segment[REV_GENERATED_COLUMN])); + } + return result; } exports.AnyMap = AnyMap; diff --git a/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/package.json b/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/package.json index c84a200894e716..93ed138e0a8655 100644 --- a/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/package.json +++ b/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/package.json @@ -1,6 +1,6 @@ { "name": "@jridgewell/trace-mapping", - "version": "0.3.15", + "version": "0.3.16", "description": "Trace the original position through a source map", "keywords": [ "source", @@ -52,24 +52,24 @@ "test:watch": "ava --watch" }, "devDependencies": { - "@rollup/plugin-typescript": "8.3.2", - "@typescript-eslint/eslint-plugin": "5.23.0", - "@typescript-eslint/parser": "5.23.0", - "ava": "4.2.0", + "@rollup/plugin-typescript": "8.5.0", + "@typescript-eslint/eslint-plugin": "5.39.0", + "@typescript-eslint/parser": "5.39.0", + "ava": "4.3.3", "benchmark": "2.1.4", - "c8": "7.11.2", - "esbuild": "0.14.38", - "esbuild-node-loader": "0.8.0", - "eslint": "8.15.0", + "c8": "7.12.0", + "esbuild": "0.15.10", + "eslint": "8.25.0", "eslint-config-prettier": "8.5.0", - "eslint-plugin-no-only-tests": "2.6.0", + "eslint-plugin-no-only-tests": "3.0.0", "npm-run-all": "4.1.5", - "prettier": "2.6.2", - "rollup": "2.72.1", - "typescript": "4.6.4" + "prettier": "2.7.1", + "rollup": "2.79.1", + "tsx": "3.10.1", + "typescript": "4.8.4" }, "dependencies": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" } } 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 4a031ad7e62d77..f6cee156417d98 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:{J:0.0131217,D:0.00621152,E:0.0368202,F:0.0810044,A:0.00556471,B:0.45657,"4B":0.009298},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4B","J","D","E","F","A","B","","",""],E:"IE",F:{"4B":962323200,J:998870400,D:1161129600,E:1237420800,F:1300060800,A:1346716800,B:1381968000}},B:{A:{C:0.003855,K:0.004267,L:0.004268,G:0.003855,M:0.003702,N:0.00771,O:0.019275,P:0,Q:0.004298,R:0.00944,S:0.004043,T:0.00771,U:0.00771,V:0.003855,W:0.003855,X:0.004318,Y:0.003855,Z:0.004118,a:0.003939,d:0.00771,e:0.004118,f:0.003939,g:0.003801,h:0.003855,i:0.003855,j:0.00771,k:0.00771,l:0.011565,m:0.04626,n:0.034695,o:1.06783,b:2.96835,H:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","C","K","L","G","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","a","d","e","f","g","h","i","j","k","l","m","n","o","b","H","","",""],E:"Edge",F:{C:1438128000,K:1447286400,L:1470096000,G:1491868800,M:1508198400,N:1525046400,O:1542067200,P:1579046400,Q:1581033600,R:1586736000,S:1590019200,T:1594857600,U:1598486400,V:1602201600,W:1605830400,X:1611360000,Y:1614816000,Z:1618358400,a:1622073600,d:1626912000,e:1630627200,f:1632441600,g:1634774400,h:1637539200,i:1641427200,j:1643932800,k:1646265600,l:1649635200,m:1651190400,n:1653955200,o:1655942400,b:1659657600,H:1661990400},D:{C:"ms",K:"ms",L:"ms",G:"ms",M:"ms",N:"ms",O:"ms"}},C:{A:{"0":0.008834,"1":0.008322,"2":0.008928,"3":0.004471,"4":0.009284,"5":0.004707,"6":0.009076,"7":0.00771,"8":0.004783,"9":0.004271,"5B":0.004118,oB:0.004271,I:0.019275,p:0.004879,J:0.020136,D:0.005725,E:0.004525,F:0.00533,A:0.004283,B:0.00771,C:0.004471,K:0.004486,L:0.00453,G:0.008322,M:0.004417,N:0.004425,O:0.004161,q:0.004443,r:0.004283,s:0.008322,t:0.013698,u:0.004161,v:0.008786,w:0.004118,x:0.004317,y:0.004393,z:0.004418,AB:0.004783,BB:0.00487,CB:0.005029,DB:0.0047,EB:0.02313,FB:0.00771,GB:0.003867,HB:0.004525,IB:0.004293,JB:0.003702,KB:0.004538,LB:0.008282,MB:0.011601,NB:0.057825,OB:0.011601,PB:0.00771,QB:0.003801,RB:0.00771,SB:0.011601,TB:0.003939,pB:0.003855,UB:0.003855,qB:0.004356,VB:0.004425,WB:0.008322,c:0.00415,XB:0.004267,YB:0.003801,ZB:0.004267,aB:0.00771,bB:0.00415,cB:0.004293,dB:0.004425,eB:0.003855,fB:0.00415,gB:0.00415,hB:0.004318,iB:0.004356,jB:0.003855,kB:0.03855,P:0.00771,Q:0.00771,R:0.019275,rB:0.003855,S:0.00771,T:0.00771,U:0.004268,V:0.003801,W:0.00771,X:0.00771,Y:0.00771,Z:0.00771,a:0.08481,d:0.003801,e:0.003855,f:0.02313,g:0.011565,h:0.00771,i:0.00771,j:0.00771,k:0.01542,l:0.01542,m:0.02313,n:0.096375,o:1.8504,b:0.35466,H:0.003855,sB:0,tB:0,"6B":0.008786,"7B":0.00487},B:"moz",C:["5B","oB","6B","7B","I","p","J","D","E","F","A","B","C","K","L","G","M","N","O","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","pB","UB","qB","VB","WB","c","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","jB","kB","P","Q","R","rB","S","T","U","V","W","X","Y","Z","a","d","e","f","g","h","i","j","k","l","m","n","o","b","H","sB","tB",""],E:"Firefox",F:{"0":1398729600,"1":1402358400,"2":1405987200,"3":1409616000,"4":1413244800,"5":1417392000,"6":1421107200,"7":1424736000,"8":1428278400,"9":1431475200,"5B":1161648000,oB:1213660800,"6B":1246320000,"7B":1264032000,I:1300752000,p:1308614400,J:1313452800,D:1317081600,E:1317081600,F:1320710400,A:1324339200,B:1327968000,C:1331596800,K:1335225600,L:1338854400,G:1342483200,M:1346112000,N:1349740800,O:1353628800,q:1357603200,r:1361232000,s:1364860800,t:1368489600,u:1372118400,v:1375747200,w:1379376000,x:1386633600,y:1391472000,z:1395100800,AB:1435881600,BB:1439251200,CB:1442880000,DB:1446508800,EB:1450137600,FB:1453852800,GB:1457395200,HB:1461628800,IB:1465257600,JB:1470096000,KB:1474329600,LB:1479168000,MB:1485216000,NB:1488844800,OB:1492560000,PB:1497312000,QB:1502150400,RB:1506556800,SB:1510617600,TB:1516665600,pB:1520985600,UB:1525824000,qB:1529971200,VB:1536105600,WB:1540252800,c:1544486400,XB:1548720000,YB:1552953600,ZB:1558396800,aB:1562630400,bB:1567468800,cB:1571788800,dB:1575331200,eB:1578355200,fB:1581379200,gB:1583798400,hB:1586304000,iB:1588636800,jB:1591056000,kB:1593475200,P:1595894400,Q:1598313600,R:1600732800,rB:1603152000,S:1605571200,T:1607990400,U:1611619200,V:1614038400,W:1616457600,X:1618790400,Y:1622505600,Z:1626134400,a:1628553600,d:1630972800,e:1633392000,f:1635811200,g:1638835200,h:1641859200,i:1644364800,j:1646697600,k:1649116800,l:1651536000,m:1653955200,n:1656374400,o:1658793600,b:1661212800,H:1663632000,sB:null,tB:null}},D:{A:{"0":0.004538,"1":0.008322,"2":0.008596,"3":0.004566,"4":0.004118,"5":0.00771,"6":0.003702,"7":0.004335,"8":0.004464,"9":0.01542,I:0.004706,p:0.004879,J:0.004879,D:0.005591,E:0.005591,F:0.005591,A:0.004534,B:0.004464,C:0.010424,K:0.0083,L:0.004706,G:0.015087,M:0.004393,N:0.004393,O:0.008652,q:0.008322,r:0.004393,s:0.004317,t:0.003855,u:0.008786,v:0.003939,w:0.004461,x:0.004141,y:0.004326,z:0.0047,AB:0.003867,BB:0.01542,CB:0.003702,DB:0.007734,EB:0.00771,FB:0.003867,GB:0.003867,HB:0.003867,IB:0.00771,JB:0.019275,KB:0.05397,LB:0.003867,MB:0.003801,NB:0.00771,OB:0.00771,PB:0.003867,QB:0.003855,RB:0.042405,SB:0.003855,TB:0.003702,pB:0.003702,UB:0.011565,qB:0.011565,VB:0.003855,WB:0.011565,c:0.003855,XB:0.011565,YB:0.03084,ZB:0.011565,aB:0.00771,bB:0.06168,cB:0.034695,dB:0.01542,eB:0.034695,fB:0.011565,gB:0.034695,hB:0.042405,iB:0.04626,jB:0.01542,kB:0.034695,P:0.134925,Q:0.05397,R:0.03855,S:0.06939,T:0.06168,U:0.088665,V:0.088665,W:0.104085,X:0.02313,Y:0.042405,Z:0.026985,a:0.057825,d:0.05397,e:0.050115,f:0.04626,g:0.026985,h:0.088665,i:0.0771,j:0.080955,k:0.0771,l:0.127215,m:0.1542,n:0.31611,o:6.11789,b:15.1,H:0.05397,sB:0.019275,tB:0.00771,"8B":0},B:"webkit",C:["","","","","","I","p","J","D","E","F","A","B","C","K","L","G","M","N","O","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","pB","UB","qB","VB","WB","c","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","jB","kB","P","Q","R","S","T","U","V","W","X","Y","Z","a","d","e","f","g","h","i","j","k","l","m","n","o","b","H","sB","tB","8B"],E:"Chrome",F:{"0":1374105600,"1":1376956800,"2":1384214400,"3":1389657600,"4":1392940800,"5":1397001600,"6":1400544000,"7":1405468800,"8":1409011200,"9":1412640000,I:1264377600,p:1274745600,J:1283385600,D:1287619200,E:1291248000,F:1296777600,A:1299542400,B:1303862400,C:1307404800,K:1312243200,L:1316131200,G:1316131200,M:1319500800,N:1323734400,O:1328659200,q:1332892800,r:1337040000,s:1340668800,t:1343692800,u:1348531200,v:1352246400,w:1357862400,x:1361404800,y:1364428800,z:1369094400,AB:1416268800,BB:1421798400,CB:1425513600,DB:1429401600,EB:1432080000,FB:1437523200,GB:1441152000,HB:1444780800,IB:1449014400,JB:1453248000,KB:1456963200,LB:1460592000,MB:1464134400,NB:1469059200,OB:1472601600,PB:1476230400,QB:1480550400,RB:1485302400,SB:1489017600,TB:1492560000,pB:1496707200,UB:1500940800,qB:1504569600,VB:1508198400,WB:1512518400,c:1516752000,XB:1520294400,YB:1523923200,ZB:1527552000,aB:1532390400,bB:1536019200,cB:1539648000,dB:1543968000,eB:1548720000,fB:1552348800,gB:1555977600,hB:1559606400,iB:1564444800,jB:1568073600,kB:1571702400,P:1575936000,Q:1580860800,R:1586304000,S:1589846400,T:1594684800,U:1598313600,V:1601942400,W:1605571200,X:1611014400,Y:1614556800,Z:1618272000,a:1621987200,d:1626739200,e:1630368000,f:1632268800,g:1634601600,h:1637020800,i:1641340800,j:1643673600,k:1646092800,l:1648512000,m:1650931200,n:1653350400,o:1655769600,b:1659398400,H:1661817600,sB:null,tB:null,"8B":null}},E:{A:{I:0,p:0.008322,J:0.004656,D:0.004465,E:0.004356,F:0.004891,A:0.004425,B:0.004318,C:0.003801,K:0.03084,L:0.11565,G:0.03084,"9B":0,uB:0.008692,AC:0.011565,BC:0.00456,CC:0.004283,DC:0.01542,vB:0.00771,lB:0.02313,mB:0.042405,wB:0.25443,EC:0.32382,FC:0.057825,xB:0.05397,yB:0.17733,zB:0.68619,"0B":1.39165,nB:0.011565,"1B":0,GC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","9B","uB","I","p","AC","J","BC","D","CC","E","F","DC","A","vB","B","lB","C","mB","K","wB","L","EC","G","FC","xB","yB","zB","0B","nB","1B","GC",""],E:"Safari",F:{"9B":1205798400,uB:1226534400,I:1244419200,p:1275868800,AC:1311120000,J:1343174400,BC:1382400000,D:1382400000,CC:1410998400,E:1413417600,F:1443657600,DC:1458518400,A:1474329600,vB:1490572800,B:1505779200,lB:1522281600,C:1537142400,mB:1553472000,K:1568851200,wB:1585008000,L:1600214400,EC:1619395200,G:1632096000,FC:1635292800,xB:1639353600,yB:1647216000,zB:1652745600,"0B":1658275200,nB:1662940800,"1B":null,GC:null}},F:{A:{"0":0.004879,"1":0.004879,"2":0.003855,"3":0.005152,"4":0.005014,"5":0.009758,"6":0.004879,"7":0.003855,"8":0.004283,"9":0.004367,F:0.0082,B:0.016581,C:0.004317,G:0.00685,M:0.00685,N:0.00685,O:0.005014,q:0.006015,r:0.004879,s:0.006597,t:0.006597,u:0.013434,v:0.006702,w:0.006015,x:0.005595,y:0.004393,z:0.00771,AB:0.004534,BB:0.00771,CB:0.004227,DB:0.004418,EB:0.004161,FB:0.004227,GB:0.004725,HB:0.011565,IB:0.008942,JB:0.004707,KB:0.004827,LB:0.004707,MB:0.004707,NB:0.004326,OB:0.008922,PB:0.014349,QB:0.004425,RB:0.00472,SB:0.004425,TB:0.004425,UB:0.00472,VB:0.004532,WB:0.004566,c:0.02283,XB:0.00867,YB:0.004656,ZB:0.004642,aB:0.003867,bB:0.00944,cB:0.004293,dB:0.003855,eB:0.004298,fB:0.096692,gB:0.004201,hB:0.004141,iB:0.004257,jB:0.003939,kB:0.008236,P:0.003855,Q:0.003939,R:0.008514,rB:0.003939,S:0.003939,T:0.003702,U:0.01542,V:0.003855,W:0.003855,X:0.019275,Y:0.844245,Z:0.08481,a:0,HC:0.00685,IC:0,JC:0.008392,KC:0.004706,lB:0.006229,"2B":0.004879,LC:0.008786,mB:0.00472},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","F","HC","IC","JC","KC","B","lB","2B","LC","C","mB","G","M","N","O","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","c","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","jB","kB","P","Q","R","rB","S","T","U","V","W","X","Y","Z","a","","",""],E:"Opera",F:{"0":1430179200,"1":1433808000,"2":1438646400,"3":1442448000,"4":1445904000,"5":1449100800,"6":1454371200,"7":1457308800,"8":1462320000,"9":1465344000,F:1150761600,HC:1223424000,IC:1251763200,JC:1267488000,KC:1277942400,B:1292457600,lB:1302566400,"2B":1309219200,LC:1323129600,C:1323129600,mB:1352073600,G:1372723200,M:1377561600,N:1381104000,O:1386288000,q:1390867200,r:1393891200,s:1399334400,t:1401753600,u:1405987200,v:1409616000,w:1413331200,x:1417132800,y:1422316800,z:1425945600,AB:1470096000,BB:1474329600,CB:1477267200,DB:1481587200,EB:1486425600,FB:1490054400,GB:1494374400,HB:1498003200,IB:1502236800,JB:1506470400,KB:1510099200,LB:1515024000,MB:1517961600,NB:1521676800,OB:1525910400,PB:1530144000,QB:1534982400,RB:1537833600,SB:1543363200,TB:1548201600,UB:1554768000,VB:1561593600,WB:1566259200,c:1570406400,XB:1573689600,YB:1578441600,ZB:1583971200,aB:1587513600,bB:1592956800,cB:1595894400,dB:1600128000,eB:1603238400,fB:1613520000,gB:1612224000,hB:1616544000,iB:1619568000,jB:1623715200,kB:1627948800,P:1631577600,Q:1633392000,R:1635984000,rB:1638403200,S:1642550400,T:1644969600,U:1647993600,V:1650412800,W:1652745600,X:1654646400,Y:1657152000,Z:1660780800,a:1663113600},D:{F:"o",B:"o",C:"o",HC:"o",IC:"o",JC:"o",KC:"o",lB:"o","2B":"o",LC:"o",mB:"o"}},G:{A:{E:0,uB:0,MC:0,"3B":0.00302517,NC:0.00453776,OC:0.00453776,PC:0.0151259,QC:0.00756293,RC:0.0151259,SC:0.069579,TC:0.00756293,UC:0.0816797,VC:0.0393273,WC:0.0287392,XC:0.0302517,YC:0.47949,ZC:0.0226888,aC:0.0121007,bC:0.0499154,cC:0.158822,dC:0.482515,eC:1.06637,fC:0.287392,xB:0.4326,yB:0.638312,zB:3.16887,"0B":7.91083,nB:0.105881,"1B":0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","uB","MC","3B","NC","OC","PC","E","QC","RC","SC","TC","UC","VC","WC","XC","YC","ZC","aC","bC","cC","dC","eC","fC","xB","yB","zB","0B","nB","1B","",""],E:"Safari on iOS",F:{uB:1270252800,MC:1283904000,"3B":1299628800,NC:1331078400,OC:1359331200,PC:1394409600,E:1410912000,QC:1413763200,RC:1442361600,SC:1458518400,TC:1473724800,UC:1490572800,VC:1505779200,WC:1522281600,XC:1537142400,YC:1553472000,ZC:1568851200,aC:1572220800,bC:1580169600,cC:1585008000,dC:1600214400,eC:1619395200,fC:1632096000,xB:1639353600,yB:1647216000,zB:1652659200,"0B":1658275200,nB:1662940800,"1B":null}},H:{A:{gC:1.06464},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","gC","","",""],E:"Opera Mini",F:{gC:1426464000}},I:{A:{oB:0,I:0.0643374,H:0,hC:0,iC:0,jC:0,kC:0.0350931,"3B":0.0760351,lC:0,mC:0.309989},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","hC","iC","jC","oB","I","kC","3B","lC","mC","H","","",""],E:"Android Browser",F:{hC:1256515200,iC:1274313600,jC:1291593600,oB:1298332800,I:1318896000,kC:1341792000,"3B":1374624000,lC:1386547200,mC:1401667200,H:1662336000}},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,c:0.0111391,lB:0,"2B":0,mB:0},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","lB","2B","C","mB","c","","",""],E:"Opera Mobile",F:{A:1287100800,B:1300752000,lB:1314835200,"2B":1318291200,C:1330300800,mB:1349740800,c:1613433600},D:{c:"webkit"}},L:{A:{H:42.0211},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","H","","",""],E:"Chrome for Android",F:{H:1662336000}},M:{A:{b:0.31954},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","b","","",""],E:"Firefox for Android",F:{b:1661212800}},N:{A:{A:0.0115934,B:0.022664},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","","",""],E:"IE Mobile",F:{A:1340150400,B:1353456000}},O:{A:{nC:0.743545},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","nC","","",""],E:"UC Browser for Android",F:{nC:1634688000},D:{nC:"webkit"}},P:{A:{I:0.177554,oC:0.0103543,pC:0.010304,qC:0.062666,rC:0.0103584,sC:0.0104443,vB:0.0105043,tC:0.0417773,uC:0.0208887,vC:0.062666,wC:0.062666,xC:0.0731103,nB:0.135776,yC:1.00266,zC:1.30554},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","I","oC","pC","qC","rC","sC","vB","tC","uC","vC","wC","xC","nB","yC","zC","","",""],E:"Samsung Internet",F:{I:1461024000,oC:1481846400,pC:1509408000,qC:1528329600,rC:1546128000,sC:1554163200,vB:1567900800,tC:1582588800,uC:1593475200,vC:1605657600,wC:1618531200,xC:1629072000,nB:1640736000,yC:1651708800,zC:1659657600}},Q:{A:{wB:0.141335},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","wB","","",""],E:"QQ Browser",F:{wB:1663718400}},R:{A:{"0C":0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0C","","",""],E:"Baidu Browser",F:{"0C":1663027200}},S:{A:{"1C":0.02458},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1C","","",""],E:"KaiOS Browser",F:{"1C":1527811200}}}; +module.exports={A:{A:{J:0.0131217,D:0.00621152,E:0.0360158,F:0.086438,A:0.00720317,B:0.475409,"4B":0.009298},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4B","J","D","E","F","A","B","","",""],E:"IE",F:{"4B":962323200,J:998870400,D:1161129600,E:1237420800,F:1300060800,A:1346716800,B:1381968000}},B:{A:{C:0.007858,K:0.004267,L:0.004268,G:0.003929,M:0.003702,N:0.007858,O:0.023574,P:0,Q:0.004298,R:0.00944,S:0.004043,T:0.007858,U:0.007858,V:0.003929,W:0.003929,X:0.004318,Y:0.003929,Z:0.004118,a:0.003939,d:0.007858,e:0.004118,f:0.003939,g:0.003801,h:0.003929,i:0.003855,j:0.003929,k:0.003929,l:0.007858,m:0.019645,n:0.015716,o:0.055006,p:0.652214,b:3.4143,H:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","C","K","L","G","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","a","d","e","f","g","h","i","j","k","l","m","n","o","p","b","H","","",""],E:"Edge",F:{C:1438128000,K:1447286400,L:1470096000,G:1491868800,M:1508198400,N:1525046400,O:1542067200,P:1579046400,Q:1581033600,R:1586736000,S:1590019200,T:1594857600,U:1598486400,V:1602201600,W:1605830400,X:1611360000,Y:1614816000,Z:1618358400,a:1622073600,d:1626912000,e:1630627200,f:1632441600,g:1634774400,h:1637539200,i:1641427200,j:1643932800,k:1646265600,l:1649635200,m:1651190400,n:1653955200,o:1655942400,p:1659657600,b:1661990400,H:1664755200},D:{C:"ms",K:"ms",L:"ms",G:"ms",M:"ms",N:"ms",O:"ms"}},C:{A:{"0":0.004418,"1":0.008834,"2":0.008322,"3":0.008928,"4":0.004471,"5":0.009284,"6":0.004707,"7":0.009076,"8":0.007858,"9":0.004783,"5B":0.004118,pB:0.004271,I:0.019645,q:0.004879,J:0.020136,D:0.005725,E:0.004525,F:0.00533,A:0.004283,B:0.007858,C:0.004471,K:0.004486,L:0.00453,G:0.008322,M:0.004417,N:0.004425,O:0.004161,r:0.004443,s:0.004283,t:0.008322,u:0.013698,v:0.004161,w:0.008786,x:0.004118,y:0.004317,z:0.004393,AB:0.003929,BB:0.004783,CB:0.00487,DB:0.005029,EB:0.0047,FB:0.011787,GB:0.007858,HB:0.003867,IB:0.004525,JB:0.004293,KB:0.003702,LB:0.004538,MB:0.008282,NB:0.011601,OB:0.055006,PB:0.011601,QB:0.003929,RB:0.007858,SB:0.003929,TB:0.011601,UB:0.003939,qB:0.003855,VB:0.003929,rB:0.004356,WB:0.004425,XB:0.008322,c:0.00415,YB:0.004267,ZB:0.003801,aB:0.004267,bB:0.007858,cB:0.00415,dB:0.004293,eB:0.004425,fB:0.003929,gB:0.00415,hB:0.00415,iB:0.004318,jB:0.004356,kB:0.003929,lB:0.03929,P:0.007858,Q:0.007858,R:0.007858,sB:0.007858,S:0.007858,T:0.003929,U:0.004268,V:0.003801,W:0.011787,X:0.007858,Y:0.003929,Z:0.003929,a:0.070722,d:0.003801,e:0.003855,f:0.019645,g:0.007858,h:0.003929,i:0.007858,j:0.007858,k:0.011787,l:0.011787,m:0.011787,n:0.051077,o:0.141444,p:1.60303,b:0.542202,H:0.007858,tB:0,"6B":0.008786,"7B":0.00487},B:"moz",C:["5B","pB","6B","7B","I","q","J","D","E","F","A","B","C","K","L","G","M","N","O","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","qB","VB","rB","WB","XB","c","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","jB","kB","lB","P","Q","R","sB","S","T","U","V","W","X","Y","Z","a","d","e","f","g","h","i","j","k","l","m","n","o","p","b","H","tB",""],E:"Firefox",F:{"0":1395100800,"1":1398729600,"2":1402358400,"3":1405987200,"4":1409616000,"5":1413244800,"6":1417392000,"7":1421107200,"8":1424736000,"9":1428278400,"5B":1161648000,pB:1213660800,"6B":1246320000,"7B":1264032000,I:1300752000,q:1308614400,J:1313452800,D:1317081600,E:1317081600,F:1320710400,A:1324339200,B:1327968000,C:1331596800,K:1335225600,L:1338854400,G:1342483200,M:1346112000,N:1349740800,O:1353628800,r:1357603200,s:1361232000,t:1364860800,u:1368489600,v:1372118400,w:1375747200,x:1379376000,y:1386633600,z:1391472000,AB:1431475200,BB:1435881600,CB:1439251200,DB:1442880000,EB:1446508800,FB:1450137600,GB:1453852800,HB:1457395200,IB:1461628800,JB:1465257600,KB:1470096000,LB:1474329600,MB:1479168000,NB:1485216000,OB:1488844800,PB:1492560000,QB:1497312000,RB:1502150400,SB:1506556800,TB:1510617600,UB:1516665600,qB:1520985600,VB:1525824000,rB:1529971200,WB:1536105600,XB:1540252800,c:1544486400,YB:1548720000,ZB:1552953600,aB:1558396800,bB:1562630400,cB:1567468800,dB:1571788800,eB:1575331200,fB:1578355200,gB:1581379200,hB:1583798400,iB:1586304000,jB:1588636800,kB:1591056000,lB:1593475200,P:1595894400,Q:1598313600,R:1600732800,sB:1603152000,S:1605571200,T:1607990400,U:1611619200,V:1614038400,W:1616457600,X:1618790400,Y:1622505600,Z:1626134400,a:1628553600,d:1630972800,e:1633392000,f:1635811200,g:1638835200,h:1641859200,i:1644364800,j:1646697600,k:1649116800,l:1651536000,m:1653955200,n:1656374400,o:1658793600,p:1661212800,b:1663632000,H:null,tB:null}},D:{A:{"0":0.0047,"1":0.004538,"2":0.008322,"3":0.008596,"4":0.004566,"5":0.004118,"6":0.007858,"7":0.003702,"8":0.004335,"9":0.004464,I:0.004706,q:0.004879,J:0.004879,D:0.005591,E:0.005591,F:0.005591,A:0.004534,B:0.004464,C:0.010424,K:0.0083,L:0.004706,G:0.015087,M:0.004393,N:0.004393,O:0.008652,r:0.008322,s:0.004393,t:0.004317,u:0.003929,v:0.008786,w:0.003939,x:0.004461,y:0.004141,z:0.004326,AB:0.015716,BB:0.003867,CB:0.015716,DB:0.007858,EB:0.003929,FB:0.007858,GB:0.007858,HB:0.007858,IB:0.003867,JB:0.007858,KB:0.019645,LB:0.047148,MB:0.003867,NB:0.003929,OB:0.003929,PB:0.007858,QB:0.003867,RB:0.003929,SB:0.03929,TB:0.003929,UB:0.003702,qB:0.003702,VB:0.011787,rB:0.007858,WB:0.003929,XB:0.011787,c:0.003929,YB:0.011787,ZB:0.027503,aB:0.011787,bB:0.007858,cB:0.047148,dB:0.023574,eB:0.015716,fB:0.023574,gB:0.007858,hB:0.031432,iB:0.047148,jB:0.03929,kB:0.015716,lB:0.035361,P:0.113941,Q:0.043219,R:0.03929,S:0.082509,T:0.086438,U:0.121799,V:0.11787,W:0.121799,X:0.023574,Y:0.043219,Z:0.023574,a:0.062864,d:0.051077,e:0.047148,f:0.03929,g:0.023574,h:0.082509,i:0.066793,j:0.062864,k:0.066793,l:0.113941,m:0.110012,n:0.208237,o:0.664001,p:4.8091,b:16.604,H:0.294675,tB:0.019645,"8B":0.011787,"9B":0},B:"webkit",C:["","","","","I","q","J","D","E","F","A","B","C","K","L","G","M","N","O","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","qB","VB","rB","WB","XB","c","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","jB","kB","lB","P","Q","R","S","T","U","V","W","X","Y","Z","a","d","e","f","g","h","i","j","k","l","m","n","o","p","b","H","tB","8B","9B"],E:"Chrome",F:{"0":1369094400,"1":1374105600,"2":1376956800,"3":1384214400,"4":1389657600,"5":1392940800,"6":1397001600,"7":1400544000,"8":1405468800,"9":1409011200,I:1264377600,q:1274745600,J:1283385600,D:1287619200,E:1291248000,F:1296777600,A:1299542400,B:1303862400,C:1307404800,K:1312243200,L:1316131200,G:1316131200,M:1319500800,N:1323734400,O:1328659200,r:1332892800,s:1337040000,t:1340668800,u:1343692800,v:1348531200,w:1352246400,x:1357862400,y:1361404800,z:1364428800,AB:1412640000,BB:1416268800,CB:1421798400,DB:1425513600,EB:1429401600,FB:1432080000,GB:1437523200,HB:1441152000,IB:1444780800,JB:1449014400,KB:1453248000,LB:1456963200,MB:1460592000,NB:1464134400,OB:1469059200,PB:1472601600,QB:1476230400,RB:1480550400,SB:1485302400,TB:1489017600,UB:1492560000,qB:1496707200,VB:1500940800,rB:1504569600,WB:1508198400,XB:1512518400,c:1516752000,YB:1520294400,ZB:1523923200,aB:1527552000,bB:1532390400,cB:1536019200,dB:1539648000,eB:1543968000,fB:1548720000,gB:1552348800,hB:1555977600,iB:1559606400,jB:1564444800,kB:1568073600,lB:1571702400,P:1575936000,Q:1580860800,R:1586304000,S:1589846400,T:1594684800,U:1598313600,V:1601942400,W:1605571200,X:1611014400,Y:1614556800,Z:1618272000,a:1621987200,d:1626739200,e:1630368000,f:1632268800,g:1634601600,h:1637020800,i:1641340800,j:1643673600,k:1646092800,l:1648512000,m:1650931200,n:1653350400,o:1655769600,p:1659398400,b:1661817600,H:1664236800,tB:null,"8B":null,"9B":null}},E:{A:{I:0,q:0.008322,J:0.004656,D:0.004465,E:0.003929,F:0.003929,A:0.004425,B:0.004318,C:0.003801,K:0.027503,L:0.11787,G:0.027503,AC:0,uB:0.008692,BC:0.011787,CC:0.00456,DC:0.004283,EC:0.015716,vB:0.007858,mB:0.019645,nB:0.03929,wB:0.259314,FC:0.306462,GC:0.051077,xB:0.051077,yB:0.141444,zB:0.31432,"0B":1.77984,oB:0.184663,"1B":0.011787,HC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","AC","uB","I","q","BC","J","CC","D","DC","E","F","EC","A","vB","B","mB","C","nB","K","wB","L","FC","G","GC","xB","yB","zB","0B","oB","1B","HC",""],E:"Safari",F:{AC:1205798400,uB:1226534400,I:1244419200,q:1275868800,BC:1311120000,J:1343174400,CC:1382400000,D:1382400000,DC:1410998400,E:1413417600,F:1443657600,EC:1458518400,A:1474329600,vB:1490572800,B:1505779200,mB:1522281600,C:1537142400,nB:1553472000,K:1568851200,wB:1585008000,L:1600214400,FC:1619395200,G:1632096000,GC:1635292800,xB:1639353600,yB:1647216000,zB:1652745600,"0B":1658275200,oB:1662940800,"1B":null,HC:null}},F:{A:{"0":0.007858,"1":0.004879,"2":0.004879,"3":0.003929,"4":0.005152,"5":0.005014,"6":0.009758,"7":0.004879,"8":0.003929,"9":0.004283,F:0.0082,B:0.016581,C:0.004317,G:0.00685,M:0.00685,N:0.00685,O:0.005014,r:0.006015,s:0.004879,t:0.006597,u:0.006597,v:0.013434,w:0.006702,x:0.006015,y:0.005595,z:0.004393,AB:0.004367,BB:0.004534,CB:0.007858,DB:0.004227,EB:0.004418,FB:0.004161,GB:0.004227,HB:0.004725,IB:0.011787,JB:0.008942,KB:0.004707,LB:0.004827,MB:0.004707,NB:0.004707,OB:0.004326,PB:0.008922,QB:0.014349,RB:0.004425,SB:0.00472,TB:0.004425,UB:0.004425,VB:0.00472,WB:0.004532,XB:0.004566,c:0.02283,YB:0.00867,ZB:0.004656,aB:0.004642,bB:0.003929,cB:0.00944,dB:0.004293,eB:0.003929,fB:0.004298,gB:0.096692,hB:0.004201,iB:0.004141,jB:0.004257,kB:0.003939,lB:0.008236,P:0.003855,Q:0.003939,R:0.008514,sB:0.003939,S:0.003939,T:0.003702,U:0.011787,V:0.003855,W:0.003855,X:0.003929,Y:0.07858,Z:0.887954,a:0.035361,IC:0.00685,JC:0,KC:0.008392,LC:0.004706,mB:0.006229,"2B":0.004879,MC:0.008786,nB:0.00472},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","F","IC","JC","KC","LC","B","mB","2B","MC","C","nB","G","M","N","O","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","c","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","jB","kB","lB","P","Q","R","sB","S","T","U","V","W","X","Y","Z","a","","",""],E:"Opera",F:{"0":1425945600,"1":1430179200,"2":1433808000,"3":1438646400,"4":1442448000,"5":1445904000,"6":1449100800,"7":1454371200,"8":1457308800,"9":1462320000,F:1150761600,IC:1223424000,JC:1251763200,KC:1267488000,LC:1277942400,B:1292457600,mB:1302566400,"2B":1309219200,MC:1323129600,C:1323129600,nB:1352073600,G:1372723200,M:1377561600,N:1381104000,O:1386288000,r:1390867200,s:1393891200,t:1399334400,u:1401753600,v:1405987200,w:1409616000,x:1413331200,y:1417132800,z:1422316800,AB:1465344000,BB:1470096000,CB:1474329600,DB:1477267200,EB:1481587200,FB:1486425600,GB:1490054400,HB:1494374400,IB:1498003200,JB:1502236800,KB:1506470400,LB:1510099200,MB:1515024000,NB:1517961600,OB:1521676800,PB:1525910400,QB:1530144000,RB:1534982400,SB:1537833600,TB:1543363200,UB:1548201600,VB:1554768000,WB:1561593600,XB:1566259200,c:1570406400,YB:1573689600,ZB:1578441600,aB:1583971200,bB:1587513600,cB:1592956800,dB:1595894400,eB:1600128000,fB:1603238400,gB:1613520000,hB:1612224000,iB:1616544000,jB:1619568000,kB:1623715200,lB:1627948800,P:1631577600,Q:1633392000,R:1635984000,sB:1638403200,S:1642550400,T:1644969600,U:1647993600,V:1650412800,W:1652745600,X:1654646400,Y:1657152000,Z:1660780800,a:1663113600},D:{F:"o",B:"o",C:"o",IC:"o",JC:"o",KC:"o",LC:"o",mB:"o","2B":"o",MC:"o",nB:"o"}},G:{A:{E:0,uB:0,NC:0,"3B":0.0030538,OC:0.00458069,PC:0.00458069,QC:0.015269,RC:0.00916139,SC:0.0198497,TC:0.0641297,UC:0.00458069,VC:0.074818,WC:0.030538,XC:0.0244304,YC:0.0290111,ZC:0.427531,aC:0.0198497,bC:0.0106883,cC:0.04428,dC:0.140475,eC:0.432112,fC:0.916139,gC:0.230562,xB:0.322175,yB:0.426004,zB:1.04134,"0B":8.71401,oB:1.9132,"1B":0.0244304},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","uB","NC","3B","OC","PC","QC","E","RC","SC","TC","UC","VC","WC","XC","YC","ZC","aC","bC","cC","dC","eC","fC","gC","xB","yB","zB","0B","oB","1B","",""],E:"Safari on iOS",F:{uB:1270252800,NC:1283904000,"3B":1299628800,OC:1331078400,PC:1359331200,QC:1394409600,E:1410912000,RC:1413763200,SC:1442361600,TC:1458518400,UC:1473724800,VC:1490572800,WC:1505779200,XC:1522281600,YC:1537142400,ZC:1553472000,aC:1568851200,bC:1572220800,cC:1580169600,dC:1585008000,eC:1600214400,fC:1619395200,gC:1632096000,xB:1639353600,yB:1647216000,zB:1652659200,"0B":1658275200,oB:1662940800,"1B":null}},H:{A:{hC:1.06906},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","hC","","",""],E:"Opera Mini",F:{hC:1426464000}},I:{A:{pB:0,I:0.024284,H:0,iC:0,jC:0.006071,kC:0,lC:0.024284,"3B":0.078923,mC:0,nC:0.309621},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","iC","jC","kC","pB","I","lC","3B","mC","nC","H","","",""],E:"Android Browser",F:{iC:1256515200,jC:1274313600,kC:1291593600,pB:1298332800,I:1318896000,lC:1341792000,"3B":1374624000,mC:1386547200,nC:1401667200,H:1664323200}},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,c:0.0111391,mB:0,"2B":0,nB:0},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","mB","2B","C","nB","c","","",""],E:"Opera Mobile",F:{A:1287100800,B:1300752000,mB:1314835200,"2B":1318291200,C:1330300800,nB:1349740800,c:1613433600},D:{c:"webkit"}},L:{A:{H:41.2317},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","H","","",""],E:"Chrome for Android",F:{H:1664323200}},M:{A:{b:0.297479},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","b","","",""],E:"Firefox for Android",F:{b:1663632000}},N:{A:{A:0.0115934,B:0.022664},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","","",""],E:"IE Mobile",F:{A:1340150400,B:1353456000}},O:{A:{oC:0.710307},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","oC","","",""],E:"UC Browser for Android",F:{oC:1634688000},D:{oC:"webkit"}},P:{A:{I:0.166875,pC:0.0103543,qC:0.010304,rC:0.062578,sC:0.0103584,tC:0.0104443,vB:0.0105043,uC:0.031289,vC:0.0208593,wC:0.062578,xC:0.062578,yC:0.062578,oB:0.114726,zC:0.239882,"0C":2.02336},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","I","pC","qC","rC","sC","tC","vB","uC","vC","wC","xC","yC","oB","zC","0C","","",""],E:"Samsung Internet",F:{I:1461024000,pC:1481846400,qC:1509408000,rC:1528329600,sC:1546128000,tC:1554163200,vB:1567900800,uC:1582588800,vC:1593475200,wC:1605657600,xC:1618531200,yC:1629072000,oB:1640736000,zC:1651708800,"0C":1659657600}},Q:{A:{wB:0.139633},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","wB","","",""],E:"QQ Browser",F:{wB:1663718400}},R:{A:{"1C":0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1C","","",""],E:"Baidu Browser",F:{"1C":1663027200}},S:{A:{"2C":0.024284},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2C","","",""],E:"KaiOS Browser",F:{"2C":1527811200}}}; 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 0331a779eddcc8..9d583c776e2be9 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":"29","1":"30","2":"31","3":"32","4":"33","5":"34","6":"35","7":"36","8":"37","9":"38",A:"10",B:"11",C:"12",D:"7",E:"8",F:"9",G:"15",H:"105",I:"4",J:"6",K:"13",L:"14",M:"16",N:"17",O:"18",P:"79",Q:"80",R:"81",S:"83",T:"84",U:"85",V:"86",W:"87",X:"88",Y:"89",Z:"90",a:"91",b:"104",c:"64",d:"92",e:"93",f:"94",g:"95",h:"96",i:"97",j:"98",k:"99",l:"100",m:"101",n:"102",o:"103",p:"5",q:"19",r:"20",s:"21",t:"22",u:"23",v:"24",w:"25",x:"26",y:"27",z:"28",AB:"39",BB:"40",CB:"41",DB:"42",EB:"43",FB:"44",GB:"45",HB:"46",IB:"47",JB:"48",KB:"49",LB:"50",MB:"51",NB:"52",OB:"53",PB:"54",QB:"55",RB:"56",SB:"57",TB:"58",UB:"60",VB:"62",WB:"63",XB:"65",YB:"66",ZB:"67",aB:"68",bB:"69",cB:"70",dB:"71",eB:"72",fB:"73",gB:"74",hB:"75",iB:"76",jB:"77",kB:"78",lB:"11.1",mB:"12.1",nB:"16.0",oB:"3",pB:"59",qB:"61",rB:"82",sB:"106",tB:"107",uB:"3.2",vB:"10.1",wB:"13.1",xB:"15.2-15.3",yB:"15.4",zB:"15.5","0B":"15.6","1B":"16.1","2B":"11.5","3B":"4.2-4.3","4B":"5.5","5B":"2","6B":"3.5","7B":"3.6","8B":"108","9B":"3.1",AC:"5.1",BC:"6.1",CC:"7.1",DC:"9.1",EC:"14.1",FC:"15.1",GC:"TP",HC:"9.5-9.6",IC:"10.0-10.1",JC:"10.5",KC:"10.6",LC:"11.6",MC:"4.0-4.1",NC:"5.0-5.1",OC:"6.0-6.1",PC:"7.0-7.1",QC:"8.1-8.4",RC:"9.0-9.2",SC:"9.3",TC:"10.0-10.2",UC:"10.3",VC:"11.0-11.2",WC:"11.3-11.4",XC:"12.0-12.1",YC:"12.2-12.5",ZC:"13.0-13.1",aC:"13.2",bC:"13.3",cC:"13.4-13.7",dC:"14.0-14.4",eC:"14.5-14.8",fC:"15.0-15.1",gC:"all",hC:"2.1",iC:"2.2",jC:"2.3",kC:"4.1",lC:"4.4",mC:"4.4.3-4.4.4",nC:"13.4",oC:"5.0-5.4",pC:"6.2-6.4",qC:"7.2-7.4",rC:"8.2",sC:"9.2",tC:"11.1-11.2",uC:"12.0",vC:"13.0",wC:"14.0",xC:"15.0",yC:"17.0",zC:"18.0","0C":"13.18","1C":"2.5"}; +module.exports={"0":"28","1":"29","2":"30","3":"31","4":"32","5":"33","6":"34","7":"35","8":"36","9":"37",A:"10",B:"11",C:"12",D:"7",E:"8",F:"9",G:"15",H:"106",I:"4",J:"6",K:"13",L:"14",M:"16",N:"17",O:"18",P:"79",Q:"80",R:"81",S:"83",T:"84",U:"85",V:"86",W:"87",X:"88",Y:"89",Z:"90",a:"91",b:"105",c:"64",d:"92",e:"93",f:"94",g:"95",h:"96",i:"97",j:"98",k:"99",l:"100",m:"101",n:"102",o:"103",p:"104",q:"5",r:"19",s:"20",t:"21",u:"22",v:"23",w:"24",x:"25",y:"26",z:"27",AB:"38",BB:"39",CB:"40",DB:"41",EB:"42",FB:"43",GB:"44",HB:"45",IB:"46",JB:"47",KB:"48",LB:"49",MB:"50",NB:"51",OB:"52",PB:"53",QB:"54",RB:"55",SB:"56",TB:"57",UB:"58",VB:"60",WB:"62",XB:"63",YB:"65",ZB:"66",aB:"67",bB:"68",cB:"69",dB:"70",eB:"71",fB:"72",gB:"73",hB:"74",iB:"75",jB:"76",kB:"77",lB:"78",mB:"11.1",nB:"12.1",oB:"16.0",pB:"3",qB:"59",rB:"61",sB:"82",tB:"107",uB:"3.2",vB:"10.1",wB:"13.1",xB:"15.2-15.3",yB:"15.4",zB:"15.5","0B":"15.6","1B":"16.1","2B":"11.5","3B":"4.2-4.3","4B":"5.5","5B":"2","6B":"3.5","7B":"3.6","8B":"108","9B":"109",AC:"3.1",BC:"5.1",CC:"6.1",DC:"7.1",EC:"9.1",FC:"14.1",GC:"15.1",HC:"TP",IC:"9.5-9.6",JC:"10.0-10.1",KC:"10.5",LC:"10.6",MC:"11.6",NC:"4.0-4.1",OC:"5.0-5.1",PC:"6.0-6.1",QC:"7.0-7.1",RC:"8.1-8.4",SC:"9.0-9.2",TC:"9.3",UC:"10.0-10.2",VC:"10.3",WC:"11.0-11.2",XC:"11.3-11.4",YC:"12.0-12.1",ZC:"12.2-12.5",aC:"13.0-13.1",bC:"13.2",cC:"13.3",dC:"13.4-13.7",eC:"14.0-14.4",fC:"14.5-14.8",gC:"15.0-15.1",hC:"all",iC:"2.1",jC:"2.2",kC:"2.3",lC:"4.1",mC:"4.4",nC:"4.4.3-4.4.4",oC:"13.4",pC:"5.0-5.4",qC:"6.2-6.4",rC:"7.2-7.4",sC:"8.2",tC:"9.2",uC:"11.1-11.2",vC:"12.0",wC:"13.0",xC:"14.0",yC:"15.0",zC:"17.0","0C":"18.0","1C":"13.18","2C":"2.5"}; 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 860b6befb44c7e..6c14de7bc40f83 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"5B oB I p J D E F A B C K L G M N O q r s 6B 7B","132":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F","16":"A B"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB"},H:{"2":"gC"},I:{"1":"oB I H kC 3B lC mC","2":"hC iC jC"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"132":"b"},N:{"1":"A","2":"B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"132":"1C"}},B:6,C:"AAC audio file format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"5B pB I q J D E F A B C K L G M N O r s t 6B 7B","132":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F","16":"A B"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB"},H:{"2":"hC"},I:{"1":"pB I H lC 3B mC nC","2":"iC jC kC"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"132":"b"},N:{"1":"A","2":"B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"132":"2C"}},B:6,C:"AAC audio file format"}; 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 becbe9010d4a66..1ddf04e94b73e1 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":"J D E F A B 4B"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G"},C:{"1":"SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB 6B 7B"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB"},E:{"1":"K L G mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B 9B uB AC BC CC DC vB","130":"C lB"},F:{"1":"OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB HC IC JC KC lB 2B LC mB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"sC vB tC uC vC wC xC nB yC zC","2":"I oC pC qC rC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:1,C:"AbortController & AbortSignal"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G"},C:{"1":"TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB 6B 7B"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB"},E:{"1":"K L G nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B AC uB BC CC DC EC vB","130":"C mB"},F:{"1":"PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB IC JC KC LC mB 2B MC nB"},G:{"1":"XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC rC sC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:1,C:"AbortController & AbortSignal"}; 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 500adc87f1df98..74f611c52676ea 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":"J D E F A B 4B"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC","132":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D","132":"A"},K:{"2":"A B C c lB 2B","132":"mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:6,C:"AC-3 (Dolby Digital) and EC-3 (Dolby Digital Plus) codecs"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC","132":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D","132":"A"},K:{"2":"A B C c mB 2B","132":"nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:6,C:"AC-3 (Dolby Digital) and EC-3 (Dolby Digital Plus) codecs"}; 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 1ed6a293686f6b..3f45516369bce5 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","194":"TB pB UB qB VB WB c XB YB"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:4,C:"Accelerometer"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","194":"UB qB VB rB WB XB c YB ZB"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:4,C:"Accelerometer"}; 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 d4adbcd6ef1de9..6bfe2ef3ba942d 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","257":"5B oB I p J 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"EventTarget.addEventListener()"}; +module.exports={A:{A:{"1":"F A B","130":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","257":"5B pB I q J 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"EventTarget.addEventListener()"}; 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 070f3d4a265a20..c12cb1e4ece4ec 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":"J D 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"F B C HC IC JC KC lB 2B LC mB","16":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"16":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"16":"D A"},K:{"2":"c","16":"A B C lB 2B mB"},L:{"16":"H"},M:{"16":"b"},N:{"16":"A B"},O:{"16":"nC"},P:{"16":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"16":"0C"},S:{"1":"1C"}},B:1,C:"Alternate stylesheet"}; +module.exports={A:{A:{"1":"E F A B","2":"J D 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"F B C IC JC KC LC mB 2B MC nB","16":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"16":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"16":"D A"},K:{"2":"c","16":"A B C mB 2B nB"},L:{"16":"H"},M:{"16":"b"},N:{"16":"A B"},O:{"16":"oC"},P:{"16":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"16":"1C"},S:{"1":"2C"}},B:1,C:"Alternate stylesheet"}; 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 235594307a28c2..d2f14d946e8f65 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":"J D E F A B 4B"},B:{"2":"C K","132":"L G M N O","322":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"5B oB I p J D E F A B C K L G M N O q r s 6B 7B","132":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB","194":"UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","322":"TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB HC IC JC KC lB 2B LC mB","322":"fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"132":"1C"}},B:4,C:"Ambient Light Sensor"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K","132":"L G M N O","322":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"5B pB I q J D E F A B C K L G M N O r s t 6B 7B","132":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB","194":"VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","322":"UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB IC JC KC LC mB 2B MC nB","322":"gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"132":"2C"}},B:4,C:"Ambient Light Sensor"}; 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 f7a161cc9eba38..f7a0de6bcf3989 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","2":"5B"},D:{"1":"pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},E:{"1":"E F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D 9B uB AC BC CC"},F:{"1":"B C HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","2":"0 1 2 3 4 5 6 7 8 9 F G M N O q r s t u v w x y z AB BB CB DB EB FB GB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC PC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"qC rC sC vB tC uC vC wC xC nB yC zC","2":"I oC pC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:7,C:"Animated PNG (APNG)"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","2":"5B"},D:{"1":"qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"E F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D AC uB BC CC DC"},F:{"1":"B C IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","2":"0 1 2 3 4 5 6 7 8 9 F G M N O r s t u v w x y z AB BB CB DB EB FB GB HB"},G:{"1":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC QC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:7,C:"Animated PNG (APNG)"}; 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 0d44d60fca5dcf..24b326fed04593 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":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t u v 6B 7B"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D 9B uB AC BC"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC PC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D","16":"A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"Array.prototype.findIndex"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s t u v w 6B 7B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D AC uB BC CC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC QC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D","16":"A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"Array.prototype.findIndex"}; 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 fb8b90a0d50f13..0217ab6cedca50 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":"J D E F A B 4B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","16":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t u v 6B 7B"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D 9B uB AC BC"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC PC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D","16":"A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"Array.prototype.find"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","16":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s t u v w 6B 7B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D AC uB BC CC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC QC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D","16":"A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"Array.prototype.find"}; 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 735ce51aa9c4ca..10ff35a27dd9c1 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB 6B 7B"},D:{"1":"bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB"},E:{"1":"C K L G mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B 9B uB AC BC CC DC vB lB"},F:{"1":"RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB HC IC JC KC lB 2B LC mB"},G:{"1":"XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"vB tC uC vC wC xC nB yC zC","2":"I oC pC qC rC sC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:6,C:"flat & flatMap array methods"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB 6B 7B"},D:{"1":"cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB"},E:{"1":"C K L G nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B AC uB BC CC DC EC vB mB"},F:{"1":"SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB IC JC KC LC mB 2B MC nB"},G:{"1":"YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"vB uC vC wC xC yC oB zC 0C","2":"I pC qC rC sC tC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:6,C:"flat & flatMap array methods"}; 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 4d1925e5cff6ff..bae6c5e3853510 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":"J D E F A B 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB 6B 7B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E 9B uB AC BC CC"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"Array.prototype.includes"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB 6B 7B"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E AC uB BC CC DC"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"Array.prototype.includes"}; 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 69616d3e67fbb1..b76037331e1ffd 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":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s 6B 7B"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC DC"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"Arrow functions"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s t 6B 7B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC EC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"Arrow functions"}; 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 ad0b01aab3e48a..689c09a9ddafcf 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":"J D E F A B 4B"},B:{"1":"K L G M N O","132":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","322":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s 6B 7B"},D:{"2":"I p J D E F A B C K L G M N O q r s t u v w x y","132":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"F B C HC IC JC KC lB 2B LC mB","132":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B lC mC","132":"H"},J:{"2":"D A"},K:{"2":"A B C lB 2B mB","132":"c"},L:{"132":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"132":"nC"},P:{"2":"I","132":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"132":"wB"},R:{"132":"0C"},S:{"1":"1C"}},B:6,C:"asm.js"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"K L G M N O","132":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","322":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s t 6B 7B"},D:{"2":"I q J D E F A B C K L G M N O r s t u v w x y z","132":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"F B C IC JC KC LC mB 2B MC nB","132":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B mC nC","132":"H"},J:{"2":"D A"},K:{"2":"A B C mB 2B nB","132":"c"},L:{"132":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"132":"oC"},P:{"2":"I","132":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"132":"wB"},R:{"132":"1C"},S:{"1":"2C"}},B:6,C:"asm.js"}; 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 227320cf63c883..3cd93fd79ac7a7 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB 6B 7B","132":"WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"1":"VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","66":"TB pB UB qB"},E:{"1":"L G wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B C K 9B uB AC BC CC DC vB lB mB"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC","260":"dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B lC mC","260":"H"},J:{"2":"D A"},K:{"2":"A B C lB 2B mB","260":"c"},L:{"1":"H"},M:{"132":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"2":"I oC pC qC rC","260":"sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"Asynchronous Clipboard API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB 6B 7B","132":"XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"1":"WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","66":"UB qB VB rB"},E:{"1":"L G wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B C K AC uB BC CC DC EC vB mB nB"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC","260":"eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B mC nC","260":"H"},J:{"2":"D A"},K:{"2":"A B C mB 2B nB","260":"c"},L:{"1":"H"},M:{"132":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"2":"I pC qC rC sC","260":"tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"Asynchronous Clipboard API"}; 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 b399e92d388e18..0d84c00c35debe 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":"J D E F A B 4B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K","194":"L"},C:{"1":"NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 6B 7B"},D:{"1":"QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC","514":"vB"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB HC IC JC KC lB 2B LC mB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC","514":"UC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I oC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:6,C:"Async functions"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K","194":"L"},C:{"1":"OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 6B 7B"},D:{"1":"RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC","514":"vB"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB IC JC KC LC mB 2B MC nB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC","514":"VC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:6,C:"Async functions"}; 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 2ec7fcd0de5837..7b7e704c280e74 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a KC lB 2B LC mB","2":"F HC IC","16":"JC"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"B C c lB 2B mB","16":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Base64 encoding and decoding"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a LC mB 2B MC nB","2":"F IC JC","16":"KC"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"B C c mB 2B nB","16":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Base64 encoding and decoding"}; 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 f31ad012938f2b..ec247433206c77 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":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t u v 6B 7B"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K","33":"0 1 2 3 4 L G M N O q r s t u v w x y z"},E:{"1":"G EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC","33":"J D E F A B C K L BC CC DC vB lB mB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB","33":"G M N O q r s"},G:{"1":"eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC","33":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"Web Audio API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s t u v w 6B 7B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K","33":"0 1 2 3 4 5 L G M N O r s t u v w x y z"},E:{"1":"G FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC","33":"J D E F A B C K L CC DC EC vB mB nB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB","33":"G M N O r s t"},G:{"1":"fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC","33":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"Web Audio API"}; 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 41aa235f31c0e0..4851214b3e6c14 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB","132":"I p J D E F A B C K L G M N O q 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a JC KC lB 2B LC mB","2":"F","4":"HC IC"},G:{"1":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB"},H:{"2":"gC"},I:{"1":"oB I H jC kC 3B lC mC","2":"hC iC"},J:{"1":"D A"},K:{"1":"B C c lB 2B mB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Audio element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB","132":"I q J D E F A B C K L G M N O r 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a KC LC mB 2B MC nB","2":"F","4":"IC JC"},G:{"1":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB"},H:{"2":"hC"},I:{"1":"pB I H kC lC 3B mC nC","2":"iC jC"},J:{"1":"D A"},K:{"1":"B C c mB 2B nB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Audio element"}; 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 af0b839fa2c803..a0f19ad3474f3b 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":"J D E F 4B"},B:{"1":"C K L G M N O","322":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","194":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB","322":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J 9B uB AC"},F:{"2":"0 1 2 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","322":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"322":"H"},M:{"2":"b"},N:{"1":"A B"},O:{"322":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"322":"wB"},R:{"322":"0C"},S:{"194":"1C"}},B:1,C:"Audio Tracks"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O","322":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","194":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB","322":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J AC uB BC"},F:{"2":"0 1 2 3 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","322":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"322":"H"},M:{"2":"b"},N:{"1":"A B"},O:{"322":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"322":"wB"},R:{"322":"1C"},S:{"194":"2C"}},B:1,C:"Audio Tracks"}; 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 e753599cf0a6af..7f488458b3cf6a 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I"},E:{"1":"p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","2":"F"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"oB I H kC 3B lC mC","2":"hC iC jC"},J:{"1":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:1,C:"Autofocus attribute"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I"},E:{"1":"q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","2":"F"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"pB I H lC 3B mC nC","2":"iC jC kC"},J:{"1":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:1,C:"Autofocus attribute"}; 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 0cf68cd6d01940..8dd28e6c0a0fe4 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 6B 7B","129":"OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"1":"QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"Auxclick"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB 6B 7B","129":"PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"1":"RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"Auxclick"}; 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 5d347e22bfcb7a..6c386c4f3e6442 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":"J D E F A B 4B"},B:{"2":"C K L G M N","194":"O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB 6B 7B","66":"QB RB SB TB pB UB qB VB WB c","260":"XB","516":"YB"},D:{"1":"cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB","66":"ZB aB bB"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1090":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"uC vC wC xC nB yC zC","2":"I oC pC qC rC sC vB tC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:6,C:"AV1 video format"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N","194":"O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB 6B 7B","66":"RB SB TB UB qB VB rB WB XB c","260":"YB","516":"ZB"},D:{"1":"dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB","66":"aB bB cB"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1090":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"vC wC xC yC oB zC 0C","2":"I pC qC rC sC tC vB uC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:6,C:"AV1 video format"}; 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 08f34b7b2debc2..91f4820437487e 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB 6B 7B","194":"jB kB P Q R rB S T U V W X Y Z a d","257":"e f g h i j k l m n o b H sB tB"},D:{"1":"U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB","516":"1B GC"},F:{"1":"dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB HC IC JC KC lB 2B LC mB"},G:{"1":"1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B","257":"nB"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"wC xC nB yC zC","2":"I oC pC qC rC sC vB tC uC vC"},Q:{"2":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:6,C:"AVIF image format"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB 6B 7B","194":"kB lB P Q R sB S T U V W X Y Z a d","257":"e f g h i j k l m n o p b H tB"},D:{"1":"U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB","516":"1B HC"},F:{"1":"eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB IC JC KC LC mB 2B MC nB"},G:{"1":"1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B","257":"oB"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"xC yC oB zC 0C","2":"I pC qC rC sC tC vB uC vC wC"},Q:{"2":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:6,C:"AVIF image format"}; 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 95686c223f16ce..7c3a9cd9fde111 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","132":"5B oB I p J D E F A B C K L G M N O q r s t u v 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"p J D E F A B C AC BC CC DC vB lB mB yB zB 0B nB 1B GC","132":"I K 9B uB wB","2050":"L G EC FC xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a JC KC lB 2B LC mB","132":"F HC IC"},G:{"2":"uB MC 3B","772":"E NC OC PC QC RC SC TC UC VC WC XC YC","2050":"ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC lC mC","132":"kC 3B"},J:{"260":"D A"},K:{"1":"B C lB 2B mB","2":"c","132":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"2":"I","1028":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"CSS background-attachment"}; +module.exports={A:{A:{"1":"F A B","132":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","132":"5B pB I q J D E F A B C K L G M N O r s t u v w 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"q J D E F A B C BC CC DC EC vB mB nB yB zB 0B oB 1B HC","132":"I K AC uB wB","2050":"L G FC GC xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a KC LC mB 2B MC nB","132":"F IC JC"},G:{"2":"uB NC 3B","772":"E OC PC QC RC SC TC UC VC WC XC YC ZC","2050":"aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC mC nC","132":"lC 3B"},J:{"260":"D A"},K:{"1":"B C mB 2B nB","2":"c","132":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"2":"I","1028":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"CSS background-attachment"}; 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 97b5abcb3286ff..fb3dab471cc787 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":"J D E F A B 4B"},B:{"1":"G M N O","33":"C K L P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 6B 7B"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"L G EC FC xB yB zB 0B nB 1B GC","16":"9B uB","33":"I p J D E F A B C K AC BC CC DC vB lB mB wB"},F:{"2":"F B C HC IC JC KC lB 2B LC mB","33":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"1":"dC eC fC xB yB zB 0B nB 1B","16":"uB MC 3B NC","33":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC"},H:{"2":"gC"},I:{"16":"oB hC iC jC","33":"I H kC 3B lC mC"},J:{"33":"D A"},K:{"16":"A B C lB 2B mB","33":"c"},L:{"33":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"33":"nC"},P:{"33":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"33":"wB"},R:{"33":"0C"},S:{"1":"1C"}},B:7,C:"Background-clip: text"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"G M N O","33":"C K L P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 6B 7B"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"L G FC GC xB yB zB 0B oB 1B HC","16":"AC uB","33":"I q J D E F A B C K BC CC DC EC vB mB nB wB"},F:{"2":"F B C IC JC KC LC mB 2B MC nB","33":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"1":"eC fC gC xB yB zB 0B oB 1B","16":"uB NC 3B OC","33":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC"},H:{"2":"hC"},I:{"16":"pB iC jC kC","33":"I H lC 3B mC nC"},J:{"33":"D A"},K:{"16":"A B C mB 2B nB","33":"c"},L:{"33":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"33":"oC"},P:{"33":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"33":"wB"},R:{"33":"1C"},S:{"1":"2C"}},B:7,C:"Background-clip: text"}; 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 ce845e63352397..fb4758aded5af0 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B","36":"7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","516":"I p J D E F A B C K L"},E:{"1":"D E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","772":"I p J 9B uB AC BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a JC KC lB 2B LC mB","2":"F HC","36":"IC"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","4":"uB MC 3B OC","516":"NC"},H:{"132":"gC"},I:{"1":"H lC mC","36":"hC","516":"oB I kC 3B","548":"iC jC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"CSS3 Background-image options"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B","36":"7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","516":"I q J D E F A B C K L"},E:{"1":"D E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","772":"I q J AC uB BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a KC LC mB 2B MC nB","2":"F IC","36":"JC"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","4":"uB NC 3B PC","516":"OC"},H:{"132":"hC"},I:{"1":"H mC nC","36":"iC","516":"pB I lC 3B","548":"jC kC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"CSS3 Background-image options"}; 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 60dee9cd2a1f72..462b5abbfb0d41 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":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:7,C:"background-position-x & background-position-y"}; +module.exports={A:{A:{"1":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:7,C:"background-position-x & background-position-y"}; 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 e1415ce3b3f467..30160b2116e329 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":"J D E 4B","132":"F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 6B 7B"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"D E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J 9B uB AC BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a JC KC lB 2B LC mB","2":"F G M N O HC IC"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC"},H:{"1":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"1":"A","2":"D"},K:{"1":"B C c lB 2B mB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:4,C:"CSS background-repeat round and space"}; +module.exports={A:{A:{"1":"A B","2":"J D E 4B","132":"F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 6B 7B"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"D E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J AC uB BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a KC LC mB 2B MC nB","2":"F G M N O IC JC"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC"},H:{"1":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"1":"A","2":"D"},K:{"1":"B C c mB 2B nB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:4,C:"CSS background-repeat round and space"}; 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 bfe025c362fca0..b4235b3b9f48e6 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H 6B 7B","16":"sB tB"},D:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:7,C:"Background Sync API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b 6B 7B","16":"H tB"},D:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:7,C:"Background Sync API"}; 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 aca19bbcb6541e..63db131ee8eda6 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"EB FB GB HB IB JB KB LB MB","2":"5B oB I p J D E F NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","132":"0 1 2 3 4 5 6 7 8 9 M N O q r s t u v w x y z AB BB CB DB","164":"A B C K L G"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 I p J D E F A B C K L G M N O q r s t u v w x y z","66":"8"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u v HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"Battery Status API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"FB GB HB IB JB KB LB MB NB","2":"5B pB I q J D E F OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","132":"0 1 2 3 4 5 6 7 8 9 M N O r s t u v w x y z AB BB CB DB EB","164":"A B C K L G"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 I q J D E F A B C K L G M N O r s t u v w x y z","66":"9"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u v w IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"Battery Status API"}; 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 4a42b0d33b0f5e..9c36266046e954 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":"J D E F A B 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B 9B uB AC BC CC DC vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u v w HC IC JC KC lB 2B LC mB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"Beacon API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB"},E:{"1":"C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B AC uB BC CC DC EC vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u v w x IC JC KC LC mB 2B MC nB"},G:{"1":"XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"Beacon API"}; 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 51c5fb02ea0314..b3a4e5b83ddeab 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":"J D E F A B","16":"4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p 6B 7B"},D:{"1":"WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB"},E:{"1":"K L G wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B C 9B uB AC BC CC DC vB lB mB"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB HC IC JC KC lB 2B LC mB"},G:{"1":"ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"16":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"16":"A B"},O:{"1":"nC"},P:{"2":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","16":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Printing Events"}; +module.exports={A:{A:{"1":"J D E F A B","16":"4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q 6B 7B"},D:{"1":"XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB"},E:{"1":"K L G wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B C AC uB BC CC DC EC vB mB nB"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB IC JC KC LC mB 2B MC nB"},G:{"1":"aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"16":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"16":"A B"},O:{"1":"oC"},P:{"2":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","16":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Printing Events"}; 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 7bbeec57298353..0a09888bfc667c 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c 6B 7B","194":"XB YB ZB"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB"},E:{"1":"L G EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B C K 9B uB AC BC CC DC vB lB mB wB"},F:{"1":"PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB HC IC JC KC lB 2B LC mB"},G:{"1":"dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"sC vB tC uC vC wC xC nB yC zC","2":"I oC pC qC rC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:6,C:"BigInt"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c 6B 7B","194":"YB ZB aB"},D:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB"},E:{"1":"L G FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B C K AC uB BC CC DC EC vB mB nB wB"},F:{"1":"QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB IC JC KC LC mB 2B MC nB"},G:{"1":"eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC rC sC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:6,C:"BigInt"}; 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 bd15c1ab9a2fa2..e08ffd1dc30245 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p 6B 7B","36":"J D E F A B C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D","36":"E F A B C K L G M N O q"},E:{"1":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"F B C HC IC JC KC lB 2B LC"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC"},H:{"2":"gC"},I:{"1":"H","2":"hC iC jC","36":"oB I kC 3B lC mC"},J:{"1":"A","2":"D"},K:{"1":"c mB","2":"A B C lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"Blob constructing"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q 6B 7B","36":"J D E F A B C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D","36":"E F A B C K L G M N O r"},E:{"1":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"F B C IC JC KC LC mB 2B MC"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC"},H:{"2":"hC"},I:{"1":"H","2":"iC jC kC","36":"pB I lC 3B mC nC"},J:{"1":"A","2":"D"},K:{"1":"c nB","2":"A B C mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"Blob constructing"}; 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 63e65726d318d6..4eef4c91180662 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":"J D E F 4B","129":"A B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","129":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D","33":"E F A B C K L G M N O q r s t"},E:{"1":"D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC","33":"OC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB hC iC jC","33":"I kC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"Blob URLs"}; +module.exports={A:{A:{"2":"J D E F 4B","129":"A B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","129":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D","33":"E F A B C K L G M N O r s t u"},E:{"1":"D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC","33":"PC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB iC jC kC","33":"I lC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"Blob URLs"}; 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 a92fbe48b02dc8..a2ccdb466fae76 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":"J D E F A 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","129":"C K"},C:{"1":"LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB","260":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","804":"I p J D E F A B C K L 6B 7B"},D:{"1":"RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","260":"MB NB OB PB QB","388":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB","1412":"0 G M N O q r s t u v w x y z","1956":"I p J D E F A B C K L"},E:{"1":"yB zB 0B nB 1B GC","129":"A B C K L G DC vB lB mB wB EC FC xB","1412":"J D E F BC CC","1956":"I p 9B uB AC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F HC IC","260":"9 AB BB CB DB","388":"0 1 2 3 4 5 6 7 8 G M N O q r s t u v w x y z","1796":"JC KC","1828":"B C lB 2B LC mB"},G:{"1":"yB zB 0B nB 1B","129":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB","1412":"E OC PC QC RC","1956":"uB MC 3B NC"},H:{"1828":"gC"},I:{"1":"H","388":"lC mC","1956":"oB I hC iC jC kC 3B"},J:{"1412":"A","1924":"D"},K:{"1":"c","2":"A","1828":"B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"nC"},P:{"1":"qC rC sC vB tC uC vC wC xC nB yC zC","260":"oC pC","388":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"260":"1C"}},B:4,C:"CSS3 Border images"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","129":"C K"},C:{"1":"MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB","260":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","804":"I q J D E F A B C K L 6B 7B"},D:{"1":"SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","260":"NB OB PB QB RB","388":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB","1412":"0 1 G M N O r s t u v w x y z","1956":"I q J D E F A B C K L"},E:{"1":"yB zB 0B oB 1B HC","129":"A B C K L G EC vB mB nB wB FC GC xB","1412":"J D E F CC DC","1956":"I q AC uB BC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F IC JC","260":"AB BB CB DB EB","388":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z","1796":"KC LC","1828":"B C mB 2B MC nB"},G:{"1":"yB zB 0B oB 1B","129":"TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB","1412":"E PC QC RC SC","1956":"uB NC 3B OC"},H:{"1828":"hC"},I:{"1":"H","388":"mC nC","1956":"pB I iC jC kC lC 3B"},J:{"1412":"A","1924":"D"},K:{"1":"c","2":"A","1828":"B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"oC"},P:{"1":"rC sC tC vB uC vC wC xC yC oB zC 0C","260":"pC qC","388":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"260":"2C"}},B:4,C:"CSS3 Border images"}; 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 5bf33fad8fd1d0..606eb720a7c35f 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","257":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","289":"oB 6B 7B","292":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","33":"I"},E:{"1":"p D E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","33":"I 9B uB","129":"J AC BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a JC KC lB 2B LC mB","2":"F HC IC"},G:{"1":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","33":"uB"},H:{"2":"gC"},I:{"1":"oB I H iC jC kC 3B lC mC","33":"hC"},J:{"1":"D A"},K:{"1":"B C c lB 2B mB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"257":"1C"}},B:4,C:"CSS3 Border-radius (rounded corners)"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","257":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","289":"pB 6B 7B","292":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","33":"I"},E:{"1":"q D E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","33":"I AC uB","129":"J BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a KC LC mB 2B MC nB","2":"F IC JC"},G:{"1":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","33":"uB"},H:{"2":"hC"},I:{"1":"pB I H jC kC lC 3B mC nC","33":"iC"},J:{"1":"D A"},K:{"1":"B C c mB 2B nB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"257":"2C"}},B:4,C:"CSS3 Border-radius (rounded corners)"}; 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 b95d37d6403649..f1a6f455f3b75e 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"yB zB 0B nB 1B GC","2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB HC IC JC KC lB 2B LC mB"},G:{"1":"yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"qC rC sC vB tC uC vC wC xC nB yC zC","2":"I oC pC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"BroadcastChannel"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"yB zB 0B oB 1B HC","2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB IC JC KC LC mB 2B MC nB"},G:{"1":"yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"BroadcastChannel"}; 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 84e60bc90fb6e0..60499e596ec56b 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":"J D E F A B 4B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB 6B 7B"},D:{"1":"MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","194":"KB","257":"LB"},E:{"1":"K L G wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC vB","513":"B C lB mB"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","194":"7 8"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB 6B 7B"},D:{"1":"NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","194":"LB","257":"MB"},E:{"1":"K L G wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC vB","513":"B C mB nB"},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 c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","194":"8 9"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding"}; 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 8c35e4340cc6aa..d9d18af39f87b7 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":"J D E 4B","260":"F","516":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B","33":"I p J D E F A B C K L G"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O","33":"q r s t u v w"},E:{"1":"D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC","33":"OC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B","132":"lC mC"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"calc() as CSS unit value"}; +module.exports={A:{A:{"2":"J D E 4B","260":"F","516":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B","33":"I q J D E F A B C K L G"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O","33":"r s t u v w x"},E:{"1":"D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC","33":"PC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B","132":"mC nC"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"calc() as CSS unit value"}; 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 e0b4505ac875ea..e54ec5cdc941ce 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":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q 6B 7B"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J 9B uB AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M HC IC JC KC lB 2B LC mB"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"Canvas blend modes"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r 6B 7B"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J AC uB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M IC JC KC LC mB 2B MC nB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"Canvas blend modes"}; 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 a04e38962a7c97..5c4968e6d0d3cd 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":"4B","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","8":"5B oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","8":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a JC KC lB 2B LC mB","8":"F HC IC"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"B C c lB 2B mB","8":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Text API for Canvas"}; +module.exports={A:{A:{"1":"F A B","2":"4B","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","8":"5B pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","8":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a KC LC mB 2B MC nB","8":"F IC JC"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"B C c mB 2B nB","8":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Text API for Canvas"}; 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 022f9168f5af61..d11591169ba77d 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":"4B","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 7B","132":"5B oB 6B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","132":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"260":"gC"},I:{"1":"oB I H kC 3B lC mC","132":"hC iC jC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Canvas (basic support)"}; +module.exports={A:{A:{"1":"F A B","2":"4B","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 7B","132":"5B pB 6B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","132":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"260":"hC"},I:{"1":"pB I H lC 3B mC nC","132":"iC jC kC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Canvas (basic support)"}; 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 9c10fb41f6ce40..c1123840d8090d 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":"J D E 4B","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r s t u v w x"},E:{"1":"D E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J 9B uB AC BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"ch (character) unit"}; +module.exports={A:{A:{"2":"J D E 4B","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r s t u v w x y"},E:{"1":"D E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J AC uB BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"ch (character) unit"}; 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 0df597b2a12a5c..f672f40e09ca7b 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB 6B 7B"},D:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 I p J D E F A B C K L G M N O q r s t u v w x y z","129":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB"},E:{"1":"C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B 9B uB AC BC CC DC vB"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC","16":"mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB 6B 7B"},D:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 I q J D E F A B C K L G M N O r s t u v w x y z","129":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B AC uB BC CC DC EC vB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC","16":"nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS"}; 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 b3f6523455d344..9a19569047bcbb 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t u v w 6B 7B","194":"0 1 2 3 4 5 6 7 8 9 x y z AB BB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a KC lB 2B LC mB","2":"F HC IC","16":"JC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"1":"D A"},K:{"1":"B C c lB 2B mB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Channel messaging"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s t u v w x 6B 7B","194":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a LC mB 2B MC nB","2":"F IC JC","16":"KC"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"1":"D A"},K:{"1":"B C c mB 2B nB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Channel messaging"}; 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 5dab3e1614d32c..1ef0ed1b7d568c 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":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r s t u"},E:{"1":"D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"ChildNode.remove()"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s t u 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r s t u v"},E:{"1":"D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"ChildNode.remove()"}; 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 e13cedafc38374..7f4d4e181bd79a 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":"J D E F 4B","1924":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","8":"5B oB 6B","516":"v w","772":"I p J D E F A B C K L G M N O q r s t u 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","8":"I p J D","516":"v w x y","772":"u","900":"E F A B C K L G M N O q r s t"},E:{"1":"D E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","8":"I p 9B uB","900":"J AC BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","8":"F B HC IC JC KC lB","900":"C 2B LC mB"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","8":"uB MC 3B","900":"NC OC"},H:{"900":"gC"},I:{"1":"H lC mC","8":"hC iC jC","900":"oB I kC 3B"},J:{"1":"A","900":"D"},K:{"1":"c","8":"A B","900":"C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"900":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"classList (DOMTokenList)"}; +module.exports={A:{A:{"8":"J D E F 4B","1924":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","8":"5B pB 6B","516":"w x","772":"I q J D E F A B C K L G M N O r s t u v 7B"},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 NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","8":"I q J D","516":"w x y z","772":"v","900":"E F A B C K L G M N O r s t u"},E:{"1":"D E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","8":"I q AC uB","900":"J BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","8":"F B IC JC KC LC mB","900":"C 2B MC nB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","8":"uB NC 3B","900":"OC PC"},H:{"900":"hC"},I:{"1":"H mC nC","8":"iC jC kC","900":"pB I lC 3B"},J:{"1":"A","900":"D"},K:{"1":"c","8":"A B","900":"C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"900":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"classList (DOMTokenList)"}; 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 01749506d09fb1..2db93c37cb37b6 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width"}; 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 e0ae2c22717d43..b643627b39d71a 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":"J D E F A B 4B"},B:{"260":"N O","2436":"C K L G M","8196":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"5B oB I p J D E F A B C K L G M N O q r s 6B 7B","772":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB","4100":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"2":"I p J D E F A B C","2564":"0 1 2 3 4 5 6 7 8 9 K L G M N O q r s t u v w x y z AB BB CB DB","8196":"TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","10244":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"1":"C K L G mB wB EC FC xB yB zB 0B nB 1B GC","16":"9B uB","2308":"A B vB lB","2820":"I p J D E F AC BC CC DC"},F:{"2":"F B HC IC JC KC lB 2B LC","16":"C","516":"mB","2564":"0 G M N O q r s t u v w x y z","8196":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","10244":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB"},G:{"1":"XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B","2820":"E NC OC PC QC RC SC TC UC VC WC"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B","260":"H","2308":"lC mC"},J:{"2":"D","2308":"A"},K:{"2":"A B C lB 2B","16":"mB","260":"c"},L:{"8196":"H"},M:{"1028":"b"},N:{"2":"A B"},O:{"8196":"nC"},P:{"2052":"oC pC","2308":"I","8196":"qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"8196":"wB"},R:{"8196":"0C"},S:{"4100":"1C"}},B:5,C:"Synchronous Clipboard API"}; +module.exports={A:{A:{"2436":"J D E F A B 4B"},B:{"260":"N O","2436":"C K L G M","8196":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"5B pB I q J D E F A B C K L G M N O r s t 6B 7B","772":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB","4100":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"2":"I q J D E F A B C","2564":"0 1 2 3 4 5 6 7 8 9 K L G M N O r s t u v w x y z AB BB CB DB EB","8196":"UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","10244":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},E:{"1":"C K L G nB wB FC GC xB yB zB 0B oB 1B HC","16":"AC uB","2308":"A B vB mB","2820":"I q J D E F BC CC DC EC"},F:{"2":"F B IC JC KC LC mB 2B MC","16":"C","516":"nB","2564":"0 1 G M N O r s t u v w x y z","8196":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","10244":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB"},G:{"1":"YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B","2820":"E OC PC QC RC SC TC UC VC WC XC"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B","260":"H","2308":"mC nC"},J:{"2":"D","2308":"A"},K:{"2":"A B C mB 2B","16":"nB","260":"c"},L:{"8196":"H"},M:{"1028":"b"},N:{"2":"A B"},O:{"8196":"oC"},P:{"2052":"pC qC","2308":"I","8196":"rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"8196":"wB"},R:{"8196":"1C"},S:{"4100":"2C"}},B:5,C:"Synchronous Clipboard API"}; 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 69f67b144da411..bb7104ef3308a8 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":"J D E F A B 4B"},B:{"1":"j k l m n o b H","2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i 6B 7B","258":"j k l m n o b H sB tB"},D:{"1":"j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y","194":"Z a d e f g h i"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"16":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"16":"A B"},O:{"2":"nC"},P:{"1":"zC","2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:6,C:"COLR/CPAL(v1) Font Formats"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"j k l m n o p b H","2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i"},C:{"1":"tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i 6B 7B","258":"j k l m n o p","578":"b H"},D:{"1":"j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y","194":"Z a d e f g h i"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"16":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"16":"A B"},O:{"2":"oC"},P:{"1":"0C","2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:6,C:"COLR/CPAL(v1) Font Formats"}; 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 04ceb1b4b0f541..6834513e2a1775 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":"J D E 4B","257":"F A B"},B:{"1":"C K L G M N O","513":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB","513":"dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"L G EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC vB","129":"B C K lB mB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB HC IC JC KC lB 2B LC mB","513":"TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"16":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"16":"A B"},O:{"1":"nC"},P:{"1":"vB tC uC vC wC xC nB yC zC","2":"I oC pC qC rC sC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"COLR/CPAL(v0) Font Formats"}; +module.exports={A:{A:{"2":"J D E 4B","257":"F A B"},B:{"1":"C K L G M N O","513":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB","513":"eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"L G FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC vB","129":"B C K mB nB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB IC JC KC LC mB 2B MC nB","513":"UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"16":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"16":"A B"},O:{"1":"oC"},P:{"1":"vB uC vC wC xC yC oB zC 0C","2":"I pC qC rC sC tC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"COLR/CPAL(v0) Font Formats"}; 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 5a7982b52d7208..ed4567ab4768eb 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","16":"5B oB 6B 7B"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L","132":"0 G M N O q r s t u v w x y z"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"I p J 9B uB","132":"D E F BC CC DC","260":"AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a LC mB","16":"F B HC IC JC KC lB 2B","132":"G M"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB","132":"E MC 3B NC OC PC QC RC SC"},H:{"1":"gC"},I:{"1":"H lC mC","16":"hC iC","132":"oB I jC kC 3B"},J:{"132":"D A"},K:{"1":"C c mB","16":"A B lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Node.compareDocumentPosition()"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","16":"5B pB 6B 7B"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L","132":"0 1 G M N O r s t u v w x y z"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"I q J AC uB","132":"D E F CC DC EC","260":"BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a MC nB","16":"F B IC JC KC LC mB 2B","132":"G M"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB","132":"E NC 3B OC PC QC RC SC TC"},H:{"1":"hC"},I:{"1":"H mC nC","16":"iC jC","132":"pB I kC lC 3B"},J:{"132":"D A"},K:{"1":"C c nB","16":"A B mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Node.compareDocumentPosition()"}; 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 3724a6e96ed13b..090492798b1889 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":"J D 4B","132":"E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a lB 2B LC mB","2":"F HC IC JC KC"},G:{"1":"uB MC 3B NC","513":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"4097":"gC"},I:{"1025":"oB I H hC iC jC kC 3B lC mC"},J:{"258":"D A"},K:{"2":"A","258":"B C lB 2B mB","1025":"c"},L:{"1025":"H"},M:{"2049":"b"},N:{"258":"A B"},O:{"258":"nC"},P:{"1025":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1025":"0C"},S:{"1":"1C"}},B:1,C:"Basic console logging functions"}; +module.exports={A:{A:{"1":"A B","2":"J D 4B","132":"E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a mB 2B MC nB","2":"F IC JC KC LC"},G:{"1":"uB NC 3B OC","513":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"4097":"hC"},I:{"1025":"pB I H iC jC kC lC 3B mC nC"},J:{"258":"D A"},K:{"2":"A","258":"B C mB 2B nB","1025":"c"},L:{"1025":"H"},M:{"2049":"b"},N:{"258":"A B"},O:{"258":"oC"},P:{"1025":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1025":"1C"},S:{"1":"2C"}},B:1,C:"Basic console logging functions"}; 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 54cfb2399860c4..1f4f56e136b521 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":"J D E F A 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a lB 2B LC mB","2":"F HC IC JC KC","16":"B"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"c","16":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"console.time and console.timeEnd"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a mB 2B MC nB","2":"F IC JC KC LC","16":"B"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"c","16":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"console.time and console.timeEnd"}; 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 e7856bbe76436f..8a28f445bf5500 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":"J D E F A 4B","2052":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","132":"5B oB I p J D E F A B C 6B 7B","260":"0 1 2 3 4 5 6 K L G M N O q r s t u v w x y z"},D:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","260":"I p J D E F A B C K L G M N O q r","772":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB","1028":"CB DB EB FB GB HB IB JB"},E:{"1":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","260":"I p A 9B uB vB","772":"J D E F AC BC CC DC"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F HC","132":"B IC JC KC lB 2B","644":"C LC mB","772":"G M N O q r s t u v w x y","1028":"0 1 2 3 4 5 6 z"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","260":"uB MC 3B TC UC","772":"E NC OC PC QC RC SC"},H:{"644":"gC"},I:{"1":"H","16":"hC iC","260":"jC","772":"oB I kC 3B lC mC"},J:{"772":"D A"},K:{"1":"c","132":"A B lB 2B","644":"C mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","1028":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"const"}; +module.exports={A:{A:{"2":"J D E F A 4B","2052":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","132":"5B pB I q J D E F A B C 6B 7B","260":"0 1 2 3 4 5 6 7 K L G M N O r s t u v w x y z"},D:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","260":"I q J D E F A B C K L G M N O r s","772":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB","1028":"DB EB FB GB HB IB JB KB"},E:{"1":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","260":"I q A AC uB vB","772":"J D E F BC CC DC EC"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F IC","132":"B JC KC LC mB 2B","644":"C MC nB","772":"G M N O r s t u v w x y z","1028":"0 1 2 3 4 5 6 7"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","260":"uB NC 3B UC VC","772":"E OC PC QC RC SC TC"},H:{"644":"hC"},I:{"1":"H","16":"iC jC","260":"kC","772":"pB I lC 3B mC nC"},J:{"772":"D A"},K:{"1":"c","132":"A B mB 2B","644":"C nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","1028":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"const"}; 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 37ecccc2b5449b..34ad1bdf6d9d35 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":"J D E F 4B","900":"A B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","388":"L G M","900":"C K"},C:{"1":"MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B","260":"KB LB","388":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB","900":"I p J D E F A B C K L G M N O q r s t u v w x y z"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L","388":"0 1 2 3 4 5 6 7 8 9 w x y z AB","900":"G M N O q r s t u v"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"I p 9B uB","388":"E F CC DC","900":"J D AC BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","16":"F B HC IC JC KC lB 2B","388":"G M N O q r s t u v w x","900":"C LC mB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB MC 3B","388":"E PC QC RC SC","900":"NC OC"},H:{"2":"gC"},I:{"1":"H","16":"oB hC iC jC","388":"lC mC","900":"I kC 3B"},J:{"16":"D","388":"A"},K:{"1":"c","16":"A B lB 2B","900":"C mB"},L:{"1":"H"},M:{"1":"b"},N:{"900":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"388":"1C"}},B:1,C:"Constraint Validation API"}; +module.exports={A:{A:{"2":"J D E F 4B","900":"A B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","388":"L G M","900":"C K"},C:{"1":"NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B","260":"LB MB","388":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB","900":"0 I q J D E F A B C K L G M N O r s t u v w x y z"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L","388":"0 1 2 3 4 5 6 7 8 9 x y z AB BB","900":"G M N O r s t u v w"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"I q AC uB","388":"E F DC EC","900":"J D BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","16":"F B IC JC KC LC mB 2B","388":"G M N O r s t u v w x y","900":"C MC nB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB NC 3B","388":"E QC RC SC TC","900":"OC PC"},H:{"2":"hC"},I:{"1":"H","16":"pB iC jC kC","388":"mC nC","900":"I lC 3B"},J:{"16":"D","388":"A"},K:{"1":"c","16":"A B mB 2B","900":"C nB"},L:{"1":"H"},M:{"1":"b"},N:{"900":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"388":"2C"}},B:1,C:"Constraint Validation API"}; 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 ad05fef9de4e27..ea5da0f1ad213d 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":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","2":"5B","4":"oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B"},H:{"2":"gC"},I:{"1":"oB I H kC 3B lC mC","2":"hC iC jC"},J:{"1":"D A"},K:{"1":"c mB","2":"A B C lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"contenteditable attribute (basic support)"}; +module.exports={A:{A:{"1":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","2":"5B","4":"pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B"},H:{"2":"hC"},I:{"1":"pB I H lC 3B mC nC","2":"iC jC kC"},J:{"1":"D A"},K:{"1":"c nB","2":"A B C mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"contenteditable attribute (basic support)"}; 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 7d9333eb3391d4..dfb4f6814ad95e 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":"J D E F 4B","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B","129":"I p J D E F A B C K L G M N O q r s t"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K","257":"L G M N O q r s t u v"},E:{"1":"D E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB","257":"J BC","260":"AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B","257":"OC","260":"NC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"2":"D","257":"A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"Content Security Policy 1.0"}; +module.exports={A:{A:{"2":"J D E F 4B","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B","129":"I q J D E F A B C K L G M N O r s t u"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K","257":"L G M N O r s t u v w"},E:{"1":"D E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB","257":"J CC","260":"BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B","257":"PC","260":"OC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"2":"D","257":"A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"Content Security Policy 1.0"}; 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 852a7b6757d162..2d6d0995b7d015 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L","4100":"G M N O"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","132":"2 3 4 5","260":"6","516":"7 8 9 AB BB CB DB EB FB"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 I p J D E F A B C K L G M N O q r s t u v w x y z","1028":"7 8 9","2052":"AB"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t HC IC JC KC lB 2B LC mB","1028":"u v w","2052":"x"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"Content Security Policy Level 2"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L","4100":"G M N O"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","132":"3 4 5 6","260":"7","516":"8 9 AB BB CB DB EB FB GB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 I q J D E F A B C K L G M N O r s t u v w x y z","1028":"8 9 AB","2052":"BB"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u IC JC KC LC mB 2B MC nB","1028":"v w x","2052":"y"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"Content Security Policy Level 2"}; 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 9d631e6604fc58..2c96aa492fdb83 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":"J D E F A B 4B"},B:{"1":"W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O","194":"P Q R S T U V"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB","194":"c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB HC IC JC KC lB 2B LC mB","194":"MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"wC xC nB yC zC","2":"I oC pC qC rC sC vB tC uC vC"},Q:{"2":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:7,C:"Cookie Store API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O","194":"P Q R S T U V"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB","194":"c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB IC JC KC LC mB 2B MC nB","194":"NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"xC yC oB zC 0C","2":"I pC qC rC sC tC vB uC vC wC"},Q:{"2":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:7,C:"Cookie Store API"}; 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 b610ac66e79750..2b55800a6dfcee 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":"J D 4B","132":"A","260":"E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","2":"5B oB","1025":"qB VB WB c XB YB ZB aB bB cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","132":"I p J D E F A B C"},E:{"2":"9B uB","513":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","644":"I p AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"F B HC IC JC KC lB 2B LC"},G:{"513":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","644":"uB MC 3B NC"},H:{"2":"gC"},I:{"1":"H lC mC","132":"oB I hC iC jC kC 3B"},J:{"1":"A","132":"D"},K:{"1":"C c mB","2":"A B lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","132":"A"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Cross-Origin Resource Sharing"}; +module.exports={A:{A:{"1":"B","2":"J D 4B","132":"A","260":"E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","2":"5B pB","1025":"rB WB XB c YB ZB aB bB cB dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","132":"I q J D E F A B C"},E:{"2":"AC uB","513":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","644":"I q BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"F B IC JC KC LC mB 2B MC"},G:{"513":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","644":"uB NC 3B OC"},H:{"2":"hC"},I:{"1":"H mC nC","132":"pB I iC jC kC lC 3B"},J:{"1":"A","132":"D"},K:{"1":"C c nB","2":"A B mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","132":"A"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Cross-Origin Resource Sharing"}; 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 9d82d7c03c9226..573bb857e5eff1 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB 6B 7B","1028":"e f g h i j k l m n o b H sB tB","3076":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d"},D:{"1":"pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","132":"LB MB","260":"NB OB","516":"PB QB RB SB TB"},E:{"2":"I p J D E F A B C K L 9B uB AC BC CC DC vB lB mB wB EC","4100":"G FC xB yB zB 0B nB 1B GC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","132":"8 9","260":"AB BB","516":"CB DB EB FB GB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC","4100":"fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1028":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"pC qC rC sC vB tC uC vC wC xC nB yC zC","16":"I oC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"3076":"1C"}},B:1,C:"createImageBitmap"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB 6B 7B","1028":"e f g h i j k l m n o p b H tB","3076":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d"},D:{"1":"qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","132":"MB NB","260":"OB PB","516":"QB RB SB TB UB"},E:{"2":"I q J D E F A B C K L AC uB BC CC DC EC vB mB nB wB FC","4100":"G GC xB yB zB 0B oB 1B HC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","132":"9 AB","260":"BB CB","516":"DB EB FB GB HB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC","4100":"gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1028":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"qC rC sC tC vB uC vC wC xC yC oB zC 0C","16":"I pC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"3076":"2C"}},B:1,C:"createImageBitmap"}; 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 15f674048a1fe4..4ef8976a3b14c7 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB","66":"JB KB LB","129":"MB NB OB PB QB RB"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB HC IC JC KC lB 2B LC mB"},G:{"1":"dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"qC rC sC vB tC uC vC wC xC nB yC zC","2":"I oC pC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"Credential Management API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","66":"KB LB MB","129":"NB OB PB QB RB SB"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB IC JC KC LC mB 2B MC nB"},G:{"1":"eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"Credential Management API"}; 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 ddec65dd409db7..105e6c77eb416f 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":"4B","8":"J D E F A","164":"B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","513":"C K L G M N O"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","8":"0 1 2 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","66":"3 4"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","8":"0 1 2 3 4 5 6 7 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","8":"I p J D 9B uB AC BC","289":"E F A CC DC vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","8":"F B C G M N O q r s t u HC IC JC KC lB 2B LC mB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","8":"uB MC 3B NC OC PC","289":"E QC RC SC TC UC"},H:{"2":"gC"},I:{"1":"H","8":"oB I hC iC jC kC 3B lC mC"},J:{"8":"D A"},K:{"1":"c","8":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"8":"A","164":"B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"Web Cryptography"}; +module.exports={A:{A:{"2":"4B","8":"J D E F A","164":"B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","513":"C K L G M N O"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","8":"0 1 2 3 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","66":"4 5"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","8":"0 1 2 3 4 5 6 7 8 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","8":"I q J D AC uB BC CC","289":"E F A DC EC vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","8":"F B C G M N O r s t u v IC JC KC LC mB 2B MC nB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","8":"uB NC 3B OC PC QC","289":"E RC SC TC UC VC"},H:{"2":"hC"},I:{"1":"H","8":"pB I iC jC kC lC 3B mC nC"},J:{"8":"D A"},K:{"1":"c","8":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"8":"A","164":"B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"Web Cryptography"}; 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 2170e01f151767..07f929f73a5232 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t u v w x 6B 7B"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u HC IC JC KC lB 2B LC mB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC"},H:{"2":"gC"},I:{"1":"H mC","2":"oB I hC iC jC kC 3B lC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"CSS all property"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s t u v w x y 6B 7B"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u v IC JC KC LC mB 2B MC nB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC"},H:{"2":"hC"},I:{"1":"H nC","2":"pB I iC jC kC lC 3B mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"CSS all property"}; 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 417fd234492467..8db4491ad66ccd 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I 6B 7B","33":"p J D E F A B C K L G"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","33":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"9B uB","33":"J D E AC BC CC","292":"I p"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"F B HC IC JC KC lB 2B LC","33":"0 C G M N O q r s t u v w x y z"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","33":"E OC PC QC","164":"uB MC 3B NC"},H:{"2":"gC"},I:{"1":"H","33":"I kC 3B lC mC","164":"oB hC iC jC"},J:{"33":"D A"},K:{"1":"c mB","2":"A B C lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"CSS Animation"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I 6B 7B","33":"q J D E F A B C K L G"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","33":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"AC uB","33":"J D E BC CC DC","292":"I q"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"F B IC JC KC LC mB 2B MC","33":"0 1 C G M N O r s t u v w x y z"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","33":"E PC QC RC","164":"uB NC 3B OC"},H:{"2":"hC"},I:{"1":"H","33":"I lC 3B mC nC","164":"pB iC jC kC"},J:{"33":"D A"},K:{"1":"c nB","2":"A B C mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"CSS Animation"}; 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 3d38785cd7609c..a778fe8dcb1dcd 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","16":"5B","33":"0 1 2 3 4 5 6 7 8 9 oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 6B 7B"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L","33":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"I p J 9B uB AC","33":"D E BC CC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB","33":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB MC 3B NC","33":"E OC PC QC"},H:{"2":"gC"},I:{"1":"H","16":"oB I hC iC jC kC 3B","33":"lC mC"},J:{"16":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"sC vB tC uC vC wC xC nB yC zC","16":"I","33":"oC pC qC rC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"33":"1C"}},B:5,C:"CSS :any-link selector"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","16":"5B","33":"0 1 2 3 4 5 6 7 8 9 pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 6B 7B"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L","33":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"I q J AC uB BC","33":"D E CC DC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB","33":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB NC 3B OC","33":"E PC QC RC"},H:{"2":"hC"},I:{"1":"H","16":"pB I iC jC kC lC 3B","33":"mC nC"},J:{"16":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"tC vB uC vC wC xC yC oB zC 0C","16":"I","33":"pC qC rC sC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"33":"2C"}},B:5,C:"CSS :any-link selector"}; 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 840f8f369a6c65..ea1f151162f1ea 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":"J D E F A B 4B"},B:{"1":"T U V W X Y Z a d e f g h i j k l m n o b H","33":"S","164":"P Q R","388":"C K L G M N O"},C:{"1":"Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","164":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P","676":"0 1 2 3 4 5 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","33":"S","164":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R"},E:{"1":"yB zB 0B nB 1B GC","164":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB"},F:{"1":"fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB","33":"cB dB eB","164":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB"},G:{"1":"yB zB 0B nB 1B","164":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB"},H:{"2":"gC"},I:{"1":"H","164":"oB I hC iC jC kC 3B lC mC"},J:{"164":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A","388":"B"},O:{"164":"nC"},P:{"164":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"164":"wB"},R:{"1":"0C"},S:{"164":"1C"}},B:5,C:"CSS Appearance"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"T U V W X Y Z a d e f g h i j k l m n o p b H","33":"S","164":"P Q R","388":"C K L G M N O"},C:{"1":"Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","164":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P","676":"0 1 2 3 4 5 6 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","33":"S","164":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R"},E:{"1":"yB zB 0B oB 1B HC","164":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB"},F:{"1":"gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB","33":"dB eB fB","164":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB"},G:{"1":"yB zB 0B oB 1B","164":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB"},H:{"2":"hC"},I:{"1":"H","164":"pB I iC jC kC lC 3B mC nC"},J:{"164":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A","388":"B"},O:{"164":"oC"},P:{"164":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"164":"wB"},R:{"1":"1C"},S:{"164":"2C"}},B:5,C:"CSS Appearance"}; 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 72977aaf1d8154..4980186568f634 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z","132":"a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","132":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z","132":"a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB HC IC JC KC lB 2B LC mB","132":"jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B lC mC","132":"H"},J:{"2":"D A"},K:{"2":"A B C lB 2B mB","132":"c"},L:{"132":"H"},M:{"132":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC","132":"nB yC zC"},Q:{"2":"wB"},R:{"132":"0C"},S:{"132":"1C"}},B:4,C:"CSS Counter Styles"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z","132":"a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","132":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z","132":"a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB IC JC KC LC mB 2B MC nB","132":"kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B mC nC","132":"H"},J:{"2":"D A"},K:{"2":"A B C mB 2B nB","132":"c"},L:{"132":"H"},M:{"132":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC","132":"oB zC 0C"},Q:{"2":"wB"},R:{"132":"1C"},S:{"132":"2C"}},B:4,C:"CSS Counter Styles"}; 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 88cdf91cf9bfa4..8f4c3ea2b6df53 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:{"33":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U 6B 7B"},M:{"1":"b"},A:{"2":"J D E F A B 4B"},F:{"2":"F B C HC IC JC KC lB 2B LC mB","33":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},K:{"2":"A B C lB 2B mB","33":"c"},E:{"1":"G FC xB yB zB 0B nB 1B","2":"GC","33":"I p J D E F A B C K L 9B uB AC BC CC DC vB lB mB wB EC"},G:{"1":"fC xB yB zB 0B nB 1B","33":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC"},P:{"33":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},I:{"2":"oB I hC iC jC kC 3B","33":"H lC mC"}},B:6,C:":autofill CSS pseudo-class"}; +module.exports={A:{D:{"33":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U 6B 7B"},M:{"1":"b"},A:{"2":"J D E F A B 4B"},F:{"2":"F B C IC JC KC LC mB 2B MC nB","33":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},K:{"2":"A B C mB 2B nB","33":"c"},E:{"1":"G GC xB yB zB 0B oB 1B","2":"HC","33":"I q J D E F A B C K L AC uB BC CC DC EC vB mB nB wB FC"},G:{"1":"gC xB yB zB 0B oB 1B","33":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC"},P:{"33":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},I:{"2":"pB I iC jC kC lC 3B","33":"H mC nC"}},B:6,C:":autofill CSS pseudo-class"}; 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 f4361728fc8b96..b448b2bdcbc514 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M","257":"N O"},C:{"1":"o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB 6B 7B","578":"cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n"},D:{"1":"iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB","194":"IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB"},E:{"2":"I p J D E 9B uB AC BC CC","33":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","194":"5 6 7 8 9 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 uB MC 3B NC OC PC QC","33":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"uC vC wC xC nB yC zC","2":"I","194":"oC pC qC rC sC vB tC"},Q:{"2":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:7,C:"CSS Backdrop Filter"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M","257":"N O"},C:{"1":"o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB 6B 7B","578":"dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n"},D:{"1":"jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB","194":"JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB"},E:{"2":"I q J D E AC uB BC CC DC","33":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","194":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"E uB NC 3B OC PC QC RC","33":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"vC wC xC yC oB zC 0C","2":"I","194":"pC qC rC sC tC vB uC"},Q:{"2":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:7,C:"CSS Backdrop Filter"}; 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 1ca30aaec77cdd..9d6a0e87c31949 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r s t u v"},E:{"1":"D E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J 9B uB AC BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a JC KC lB 2B LC mB","2":"F HC IC"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC"},H:{"1":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"1":"A","2":"D"},K:{"1":"B C c lB 2B mB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"CSS background-position edge offsets"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r s t u v w"},E:{"1":"D E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J AC uB BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a KC LC mB 2B MC nB","2":"F IC JC"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC"},H:{"1":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"1":"A","2":"D"},K:{"1":"B C c mB 2B nB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"CSS background-position edge offsets"}; 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 1ca70daa960727..27bcebd840aa15 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 I p J D E F A B C K L G M N O q r s t u v w x y z","260":"HB"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D 9B uB AC BC","132":"E F A CC DC"},F:{"1":"0 1 2 3 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s HC IC JC KC lB 2B LC mB","260":"4"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC PC","132":"E QC RC SC TC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"CSS background-blend-mode"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 I q J D E F A B C K L G M N O r s t u v w x y z","260":"IB"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D AC uB BC CC","132":"E F A DC EC"},F:{"1":"0 1 2 3 4 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t IC JC KC LC mB 2B MC nB","260":"5"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC QC","132":"E RC SC TC UC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"CSS background-blend-mode"}; 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 7f5c0fc9bc37fd..f37981206ccd0f 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":"J D E F A B 4B"},B:{"2":"C K L G M N O","164":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"2":"I p J D E F A B C K L G M N O q r s","164":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J 9B uB AC","164":"D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"F HC IC JC KC","129":"B C lB 2B LC mB","164":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"uB MC 3B NC OC","164":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"132":"gC"},I:{"2":"oB I hC iC jC kC 3B","164":"H lC mC"},J:{"2":"D","164":"A"},K:{"2":"A","129":"B C lB 2B mB","164":"c"},L:{"164":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"164":"nC"},P:{"164":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"164":"wB"},R:{"164":"0C"},S:{"1":"1C"}},B:4,C:"CSS box-decoration-break"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O","164":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"2":"I q J D E F A B C K L G M N O r s t","164":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J AC uB BC","164":"D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"F IC JC KC LC","129":"B C mB 2B MC nB","164":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"uB NC 3B OC PC","164":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"132":"hC"},I:{"2":"pB I iC jC kC lC 3B","164":"H mC nC"},J:{"2":"D","164":"A"},K:{"2":"A","129":"B C mB 2B nB","164":"c"},L:{"164":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"164":"oC"},P:{"164":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"164":"wB"},R:{"164":"1C"},S:{"1":"2C"}},B:4,C:"CSS box-decoration-break"}; 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 f100cbfa3c41a4..2385b5f68d54dd 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB","33":"6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","33":"I p J D E F"},E:{"1":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","33":"p","164":"I 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a JC KC lB 2B LC mB","2":"F HC IC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","33":"MC 3B","164":"uB"},H:{"2":"gC"},I:{"1":"I H kC 3B lC mC","164":"oB hC iC jC"},J:{"1":"A","33":"D"},K:{"1":"B C c lB 2B mB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"CSS3 Box-shadow"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB","33":"6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","33":"I q J D E F"},E:{"1":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","33":"q","164":"I AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a KC LC mB 2B MC nB","2":"F IC JC"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","33":"NC 3B","164":"uB"},H:{"2":"hC"},I:{"1":"I H lC 3B mC nC","164":"pB iC jC kC"},J:{"1":"A","33":"D"},K:{"1":"B C c mB 2B nB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"CSS3 Box-shadow"}; 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 b183d4764d120b..63c46cb360e5ba 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","33":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},E:{"2":"9B uB","33":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"6 7 8 9 F 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 c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","33":"0 1 2 3 4 5 G M N O q r s t u v w x y z"},G:{"33":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"H","33":"oB I hC iC jC kC 3B lC mC"},J:{"33":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","33":"I"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:7,C:"CSS Canvas Drawings"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","33":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},E:{"2":"AC uB","33":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"7 8 9 F 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 c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","33":"0 1 2 3 4 5 6 G M N O r s t u v w x y z"},G:{"33":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"H","33":"pB I iC jC kC lC 3B mC nC"},J:{"33":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","33":"I"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:7,C:"CSS Canvas Drawings"}; 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 cd9cfa79b55df5..6f58eca4bb228f 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 6B 7B"},D:{"1":"SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B 9B uB AC BC CC DC vB"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB HC IC JC KC lB 2B LC mB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"qC rC sC vB tC uC vC wC xC nB yC zC","2":"I oC pC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:2,C:"CSS caret-color"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB 6B 7B"},D:{"1":"TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"1":"C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B AC uB BC CC DC EC vB"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB IC JC KC LC mB 2B MC nB"},G:{"1":"XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:2,C:"CSS caret-color"}; 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 d3a41e5e0789f3..01a418a5c91c38 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":"J D E F A B 4B"},B:{"1":"k l m n o b H","2":"C K L G M N O P Q R S T U V W X Y Z a d e f g","322":"h i j"},C:{"1":"i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e 6B 7B","194":"f g h"},D:{"1":"k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g","322":"h i j"},E:{"1":"yB zB 0B nB 1B GC","2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB"},F:{"1":"V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U HC IC JC KC lB 2B LC mB"},G:{"1":"yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"zC","2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:4,C:"CSS Cascade Layers"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"k l m n o p b H","2":"C K L G M N O P Q R S T U V W X Y Z a d e f g","322":"h i j"},C:{"1":"i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e 6B 7B","194":"f g h"},D:{"1":"k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g","322":"h i j"},E:{"1":"yB zB 0B oB 1B HC","2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB"},F:{"1":"V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U IC JC KC LC mB 2B MC nB"},G:{"1":"yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"0C","2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:4,C:"CSS Cascade Layers"}; 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 84a55fad34e02a..d4a17ddca4f055 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB 6B 7B"},D:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E 9B uB AC BC CC"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"Case-insensitive CSS attribute selectors"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB 6B 7B"},D:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E AC uB BC CC DC"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"Case-insensitive CSS attribute selectors"}; 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 6c9db9f9d79cc9..e6afd08f0640af 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":"J D E F A B 4B"},B:{"2":"C K L G M N","260":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","3138":"O"},C:{"1":"PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB","132":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB 6B 7B","644":"IB JB KB LB MB NB OB"},D:{"2":"I p J D E F A B C K L G M N O q r s t u","260":"QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","292":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"2":"I p J 9B uB AC BC","260":"L G wB EC FC xB yB zB 0B nB 1B GC","292":"D E F A B C K CC DC vB lB mB"},F:{"2":"F B C HC IC JC KC lB 2B LC mB","260":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","292":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB"},G:{"2":"uB MC 3B NC OC","260":"ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","292":"E PC QC RC SC TC UC VC WC XC YC"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B","260":"H","292":"lC mC"},J:{"2":"D A"},K:{"2":"A B C lB 2B mB","260":"c"},L:{"260":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"260":"nC"},P:{"292":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"260":"wB"},R:{"260":"0C"},S:{"644":"1C"}},B:4,C:"CSS clip-path property (for HTML)"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N","260":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","3138":"O"},C:{"1":"QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB","132":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB 6B 7B","644":"JB KB LB MB NB OB PB"},D:{"2":"I q J D E F A B C K L G M N O r s t u v","260":"RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","292":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"2":"I q J AC uB BC CC","260":"L G wB FC GC xB yB zB 0B oB 1B HC","292":"D E F A B C K DC EC vB mB nB"},F:{"2":"F B C IC JC KC LC mB 2B MC nB","260":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","292":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB"},G:{"2":"uB NC 3B OC PC","260":"aC bC cC dC eC fC gC xB yB zB 0B oB 1B","292":"E QC RC SC TC UC VC WC XC YC ZC"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B","260":"H","292":"mC nC"},J:{"2":"D A"},K:{"2":"A B C mB 2B nB","260":"c"},L:{"260":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"260":"oC"},P:{"292":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"260":"wB"},R:{"260":"1C"},S:{"644":"2C"}},B:4,C:"CSS clip-path property (for HTML)"}; 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 89cda8480fa91b..7dd536b229c5f5 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":"J D E F A B 4B"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB 6B 7B"},D:{"16":"I p J D E F A B C K L G M N O","33":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p 9B uB AC","33":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"F B C HC IC JC KC lB 2B LC mB","33":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"16":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"16":"oB I hC iC jC kC 3B lC mC","33":"H"},J:{"16":"D A"},K:{"2":"A B C lB 2B mB","33":"c"},L:{"16":"H"},M:{"1":"b"},N:{"16":"A B"},O:{"16":"nC"},P:{"16":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"33":"wB"},R:{"16":"0C"},S:{"1":"1C"}},B:4,C:"CSS print-color-adjust"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 6B 7B"},D:{"16":"I q J D E F A B C K L G M N O","33":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q AC uB BC","33":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"F B C IC JC KC LC mB 2B MC nB","33":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"16":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"16":"pB I iC jC kC lC 3B mC nC","33":"H"},J:{"16":"D A"},K:{"2":"A B C mB 2B nB","33":"c"},L:{"16":"H"},M:{"1":"b"},N:{"16":"A B"},O:{"16":"oC"},P:{"16":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"33":"wB"},R:{"16":"1C"},S:{"1":"2C"}},B:4,C:"CSS print-color-adjust"}; 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 76711afb54a40d..c638e0d1dc653e 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"G FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC","132":"B C K L vB lB mB wB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC","132":"UC VC WC XC YC ZC aC bC cC dC eC"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:4,C:"CSS color() function"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"G GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC","132":"B C K L vB mB nB wB FC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC","132":"VC WC XC YC ZC aC bC cC dC eC fC"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:4,C:"CSS color() function"}; 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 a8afcbce8d0edc..84e990c560ed25 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB 6B 7B","578":"hB iB jB kB P Q R rB"},D:{"1":"bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","194":"pB UB qB VB WB c XB YB ZB aB"},E:{"1":"K L G mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B C 9B uB AC BC CC DC vB lB"},F:{"1":"c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HC IC JC KC lB 2B LC mB","194":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},G:{"1":"YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"vB tC uC vC wC xC nB yC zC","2":"I oC pC qC rC sC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"CSS Conical Gradients"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB 6B 7B","578":"iB jB kB lB P Q R sB"},D:{"1":"cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","194":"qB VB rB WB XB c YB ZB aB bB"},E:{"1":"K L G nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B C AC uB BC CC DC EC vB mB"},F:{"1":"c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IC JC KC LC mB 2B MC nB","194":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"1":"ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"vB uC vC wC xC yC oB zC 0C","2":"I pC qC rC sC tC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"CSS Conical Gradients"}; 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 24e474df872a8e..6599ab0c047339 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b","516":"H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a","194":"e f g h i j k l m n o b","450":"d","516":"H"},E:{"1":"nB 1B GC","2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB HC IC JC KC lB 2B LC mB","194":"P Q R rB S T U V W X Y Z","516":"a"},G:{"1":"nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B lC mC","516":"H"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"516":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:5,C:"CSS Container Queries (Size)"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"H","2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p","516":"b"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a","194":"e f g h i j k l m n o p","450":"d","516":"b"},E:{"1":"oB 1B HC","2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB IC JC KC LC mB 2B MC nB","194":"P Q R sB S T U V W X Y Z","516":"a"},G:{"1":"oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:5,C:"CSS Container Queries (Size)"}; 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 238b7534f1c266..f1810cb1c10585 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":"J D E F A B 4B"},B:{"1":"H","2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d","194":"m n o b","450":"e f g h i j k l"},E:{"1":"nB 1B GC","2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B"},F:{"1":"a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB HC IC JC KC lB 2B LC mB","194":"P Q R rB S T U V W X Y Z"},G:{"1":"nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:5,C:"CSS Container Query Units"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"b H","2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d","194":"m n o p","450":"e f g h i j k l"},E:{"1":"oB 1B HC","2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B"},F:{"1":"a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB IC JC KC LC mB 2B MC nB","194":"P Q R sB S T U V W X Y Z"},G:{"1":"oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:5,C:"CSS Container Query Units"}; 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 533212014138be..542a0ae8306453 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB 6B 7B","194":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB"},D:{"1":"NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","66":"MB"},E:{"1":"yB zB 0B nB 1B GC","2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","66":"9 AB"},G:{"1":"yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I oC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"194":"1C"}},B:2,C:"CSS Containment"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB 6B 7B","194":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB"},D:{"1":"OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","66":"NB"},E:{"1":"yB zB 0B oB 1B HC","2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","66":"AB BB"},G:{"1":"yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"194":"2C"}},B:2,C:"CSS Containment"}; 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 beb181c2bf961b..f1f11d52b007a3 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":"J D E F A B 4B"},B:{"1":"U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O P Q R S T"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"wC xC nB yC zC","2":"I oC pC qC rC sC vB tC uC vC"},Q:{"2":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"CSS content-visibility"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O P Q R S T"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"xC yC oB zC 0C","2":"I pC qC rC sC tC vB uC vC wC"},Q:{"2":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"CSS content-visibility"}; 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 428ed3ca6d47e4..aa6662ef12c8a3 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":"J D 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"CSS Counters"}; +module.exports={A:{A:{"1":"E F A B","2":"J D 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"CSS Counters"}; 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 4a4de897b20acd..485d641c35f727 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":"J 4B","2340":"D E F A B"},B:{"2":"C K L G M N O","1025":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"e f g h i j k l m n o b H sB tB","2":"5B oB 6B","513":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d","545":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB","1025":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC","164":"J","4644":"D E F BC CC DC"},F:{"2":"F B G M N O q r s t u v w x y HC IC JC KC lB 2B","545":"C LC mB","1025":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B","4260":"NC OC","4644":"E PC QC RC SC"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B lC mC","1025":"H"},J:{"2":"D","4260":"A"},K:{"2":"A B lB 2B","545":"C mB","1025":"c"},L:{"1025":"H"},M:{"1":"b"},N:{"2340":"A B"},O:{"1025":"nC"},P:{"1025":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1025":"wB"},R:{"1025":"0C"},S:{"4097":"1C"}},B:4,C:"Crisp edges/pixelated images"}; +module.exports={A:{A:{"2":"J 4B","2340":"D E F A B"},B:{"2":"C K L G M N O","1025":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"e f g h i j k l m n o p b H tB","2":"5B pB 6B","513":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d","545":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB","1025":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC","164":"J","4644":"D E F CC DC EC"},F:{"2":"F B G M N O r s t u v w x y z IC JC KC LC mB 2B","545":"C MC nB","1025":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B","4260":"OC PC","4644":"E QC RC SC TC"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B mC nC","1025":"H"},J:{"2":"D","4260":"A"},K:{"2":"A B mB 2B","545":"C nB","1025":"c"},L:{"1025":"H"},M:{"1":"b"},N:{"2340":"A B"},O:{"1025":"oC"},P:{"1025":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1025":"wB"},R:{"1025":"1C"},S:{"4097":"2C"}},B:4,C:"Crisp edges/pixelated images"}; 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 bf53b05c53d55f..48e3cf2e5b727c 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":"J D E F A B 4B"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"I p J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7 8 9 N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB","33":"J D E F AC BC CC DC"},F:{"2":"F B C HC IC JC KC lB 2B LC mB","33":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B","33":"E NC OC PC QC RC SC"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B","33":"H lC mC"},J:{"2":"D A"},K:{"2":"A B C lB 2B mB","33":"c"},L:{"33":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"33":"nC"},P:{"33":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"33":"wB"},R:{"33":"0C"},S:{"2":"1C"}},B:4,C:"CSS Cross-Fade Function"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"I q J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7 8 9 N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB","33":"J D E F BC CC DC EC"},F:{"2":"F B C IC JC KC LC mB 2B MC nB","33":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B","33":"E OC PC QC RC SC TC"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B","33":"H mC nC"},J:{"2":"D A"},K:{"2":"A B C mB 2B nB","33":"c"},L:{"33":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"33":"oC"},P:{"33":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"33":"wB"},R:{"33":"1C"},S:{"2":"2C"}},B:4,C:"CSS Cross-Fade Function"}; 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 35ea2c590a1a9f..0c138d5cb863e2 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","16":"5B oB 6B 7B"},D:{"1":"MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"I p 9B uB","132":"J D E F A AC BC CC DC"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","16":"F B HC IC JC KC lB 2B","132":"0 1 2 3 4 5 6 7 8 G M N O q r s t u v w x y z","260":"C LC mB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB MC 3B NC OC","132":"E PC QC RC SC TC"},H:{"260":"gC"},I:{"1":"H","16":"oB hC iC jC","132":"I kC 3B lC mC"},J:{"16":"D","132":"A"},K:{"1":"c","16":"A B C lB 2B","260":"mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","132":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:":default CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","16":"5B pB 6B 7B"},D:{"1":"NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"I q AC uB","132":"J D E F A BC CC DC EC"},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 c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","16":"F B IC JC KC LC mB 2B","132":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z","260":"C MC nB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB NC 3B OC PC","132":"E QC RC SC TC UC"},H:{"260":"hC"},I:{"1":"H","16":"pB iC jC kC","132":"I lC 3B mC nC"},J:{"16":"D","132":"A"},K:{"1":"c","16":"A B C mB 2B","260":"nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","132":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:":default CSS pseudo-class"}; 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 3d83c80fc8e5d0..e7a7c94bb8c13b 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":"J D E F A B 4B"},B:{"2":"C K L G M N O Q R S T U V W X Y Z a d e f g h i j k l m n o b H","16":"P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"B","2":"I p J D E F A C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:7,C:"Explicit descendant combinator >>"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","16":"P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"B","2":"I q J D E F A C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:7,C:"Explicit descendant combinator >>"}; 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 e710313bbc6e9a..e6e44fa6e84247 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":"J D E F 4B","164":"A B"},B:{"66":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","164":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"I p J D E F A B C K L G M N O q r s t u v w x y z","66":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB HC IC JC KC lB 2B LC mB","66":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"292":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A c","292":"B C lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"164":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"66":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:5,C:"CSS Device Adaptation"}; +module.exports={A:{A:{"2":"J D E F 4B","164":"A B"},B:{"66":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","164":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 I q J D E F A B C K L G M N O r s t u v w x y z","66":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB IC JC KC LC mB 2B MC nB","66":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"292":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A c","292":"B C mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"164":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"66":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:5,C:"CSS Device Adaptation"}; 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 509a8fe9932583..4f0b9a92268277 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b","194":"H"},C:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M 6B 7B","33":"0 1 2 3 4 5 6 7 8 9 N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z","194":"a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B","322":"GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z HC IC JC KC lB 2B LC mB","194":"a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"33":"1C"}},B:5,C:":dir() CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p","194":"b H"},C:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M 6B 7B","33":"0 1 2 3 4 5 6 7 8 9 N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z","194":"a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"HC","2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z IC JC KC LC mB 2B MC nB","194":"a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"33":"2C"}},B:5,C:":dir() CSS pseudo-class"}; 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 cb81089835938a..06bdfb074275d8 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":"J D E F A B 4B"},B:{"1":"Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O","260":"P Q R S T U V W X"},C:{"1":"VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","260":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB"},D:{"1":"Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","194":"TB pB UB qB VB WB c","260":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X"},E:{"2":"I p J D E F A B 9B uB AC BC CC DC vB","260":"L G wB EC FC xB yB zB 0B","772":"C K lB mB","2052":"1B GC","3076":"nB"},F:{"1":"iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB HC IC JC KC lB 2B LC mB","260":"NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC","260":"cC dC eC fC xB yB zB 0B","772":"WC XC YC ZC aC bC","2052":"1B","3076":"nB"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"260":"nC"},P:{"1":"xC nB yC zC","2":"I oC pC qC rC","260":"sC vB tC uC vC wC"},Q:{"260":"wB"},R:{"1":"0C"},S:{"260":"1C"}},B:4,C:"CSS display: contents"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O","132":"P Q R S T U V W X","260":"Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","132":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB","260":"WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","132":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X","194":"UB qB VB rB WB XB c","260":"Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B AC uB BC CC DC EC vB","132":"C K L G mB nB wB FC GC xB yB zB 0B","516":"1B HC","772":"oB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB IC JC KC LC mB 2B MC nB","132":"OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB","260":"jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC","132":"XC YC ZC aC bC cC","260":"dC eC fC gC xB yB zB 0B","772":"oB 1B"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B mC nC","260":"H"},J:{"2":"D A"},K:{"2":"A B C mB 2B nB","260":"c"},L:{"260":"H"},M:{"260":"b"},N:{"2":"A B"},O:{"132":"oC"},P:{"2":"I pC qC rC sC","132":"tC vB uC vC wC xC","260":"yC oB zC 0C"},Q:{"132":"wB"},R:{"260":"1C"},S:{"132":"2C"}},B:4,C:"CSS display: contents"}; 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 ce2d641c59d0f0..9690d3c9f9a4b4 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"33":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","164":"5B oB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"33":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"33":"1C"}},B:5,C:"CSS element() function"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"33":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","164":"5B pB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"33":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"33":"2C"}},B:5,C:"CSS element() function"}; 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 5201072303dbff..0943e1a5723f92 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c 6B 7B"},D:{"1":"bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB"},E:{"1":"C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC vB","132":"B"},F:{"1":"RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB HC IC JC KC lB 2B LC mB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC","132":"VC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"vB tC uC vC wC xC nB yC zC","2":"I oC pC qC rC sC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:7,C:"CSS Environment Variables env()"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c 6B 7B"},D:{"1":"cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB"},E:{"1":"C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC vB","132":"B"},F:{"1":"SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB IC JC KC LC mB 2B MC nB"},G:{"1":"XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC","132":"WC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"vB uC vC wC xC yC oB zC 0C","2":"I pC qC rC sC tC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:7,C:"CSS Environment Variables env()"}; 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 960122d7a90f1d..22d50256bd17d3 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":"J D E F 4B","33":"A B"},B:{"2":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"33":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:5,C:"CSS Exclusions Level 1"}; +module.exports={A:{A:{"2":"J D E F 4B","33":"A B"},B:{"2":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"33":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:5,C:"CSS Exclusions Level 1"}; 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 105a3e58ff9915..180b5113278080 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":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r s t u v w x y"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E 9B uB AC BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"F B C HC IC JC KC lB 2B LC"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC"},H:{"1":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"CSS Feature Queries"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s t 6B 7B"},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 NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E AC uB BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"F B C IC JC KC LC mB 2B MC"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC"},H:{"1":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"CSS Feature Queries"}; 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 86a060b4c961a8..4185914a378cc1 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":"Y Z a d e f g h i j k l m n o b H sB tB 8B","33":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X"},L:{"1":"H"},B:{"1":"Y Z a d e f g h i j k l m n o b H","33":"C K L G M N O P Q R S T U V W X"},C:{"1":"rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R 6B 7B"},M:{"1":"b"},A:{"2":"J D E F 4B","33":"A B"},F:{"1":"hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB","33":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB"},K:{"1":"c","2":"A B C lB 2B mB"},E:{"1":"G EC FC xB yB zB 0B nB 1B","2":"GC","33":"I p J D E F A B C K L 9B uB AC BC CC DC vB lB mB wB"},G:{"1":"eC fC xB yB zB 0B nB 1B","33":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC"},P:{"1":"xC nB yC zC","33":"I oC pC qC rC sC vB tC uC vC wC"},I:{"1":"H","2":"oB I hC iC jC kC 3B","33":"lC mC"}},B:6,C:"::file-selector-button CSS pseudo-element"}; +module.exports={A:{D:{"1":"Y Z a d e f g h i j k l m n o p b H tB 8B 9B","33":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X"},L:{"1":"H"},B:{"1":"Y Z a d e f g h i j k l m n o p b H","33":"C K L G M N O P Q R S T U V W X"},C:{"1":"sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R 6B 7B"},M:{"1":"b"},A:{"2":"J D E F 4B","33":"A B"},F:{"1":"iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB","33":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB"},K:{"1":"c","2":"A B C mB 2B nB"},E:{"1":"G FC GC xB yB zB 0B oB 1B","2":"HC","33":"I q J D E F A B C K L AC uB BC CC DC EC vB mB nB wB"},G:{"1":"fC gC xB yB zB 0B oB 1B","33":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC"},P:{"1":"yC oB zC 0C","33":"I pC qC rC sC tC vB uC vC wC xC"},I:{"1":"H","2":"pB I iC jC kC lC 3B","33":"mC nC"}},B:6,C:"::file-selector-button CSS pseudo-element"}; 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 a5d218dd311277..317e650309803c 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E 9B uB AC BC CC","33":"F"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC","33":"RC SC"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:5,C:"CSS filter() function"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E AC uB BC CC DC","33":"F"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC","33":"SC TC"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:5,C:"CSS filter() function"}; 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 d46b72d495ff8d..3f4607d8b37e50 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","1028":"K L G M N O","1346":"C"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B","196":"5","516":"0 1 2 3 4 I p J D E F A B C K L G M N O q r s t u v w x y z 7B"},D:{"1":"OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N","33":"0 1 2 3 4 5 6 7 8 9 O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC","33":"J D E F BC CC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB","33":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC","33":"E OC PC QC RC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B","33":"lC mC"},J:{"2":"D","33":"A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"qC rC sC vB tC uC vC wC xC nB yC zC","33":"I oC pC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"CSS Filter Effects"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","1028":"K L G M N O","1346":"C"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B","196":"6","516":"0 1 2 3 4 5 I q J D E F A B C K L G M N O r s t u v w x y z 7B"},D:{"1":"PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N","33":"0 1 2 3 4 5 6 7 8 9 O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC","33":"J D E F CC DC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB","33":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC","33":"E PC QC RC SC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B","33":"mC nC"},J:{"2":"D","33":"A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"rC sC tC vB uC vC wC xC yC oB zC 0C","33":"I pC qC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"CSS Filter Effects"}; 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 3bb3ccbb74ced7..3fc2fce6a4fd54 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":"4B","516":"E","1540":"J D"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","132":"oB","260":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"p J D E","132":"I"},E:{"1":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"p 9B","132":"I uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a LC mB","16":"F HC","260":"B IC JC KC lB 2B"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB MC 3B"},H:{"1":"gC"},I:{"1":"oB I H kC 3B lC mC","16":"hC iC","132":"jC"},J:{"1":"D A"},K:{"1":"C c mB","260":"A B lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"::first-letter CSS pseudo-element selector"}; +module.exports={A:{A:{"1":"F A B","16":"4B","516":"E","1540":"J D"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","132":"pB","260":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"q J D E","132":"I"},E:{"1":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"q AC","132":"I uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a MC nB","16":"F IC","260":"B JC KC LC mB 2B"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB NC 3B"},H:{"1":"hC"},I:{"1":"pB I H lC 3B mC nC","16":"iC jC","132":"kC"},J:{"1":"D A"},K:{"1":"C c nB","260":"A B mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"::first-letter CSS pseudo-element selector"}; 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 e4e1eeaf1ee319..86cf1ac025cad6 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"CSS first-line pseudo-element"}; +module.exports={A:{A:{"1":"F A B","132":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"CSS first-line pseudo-element"}; 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 c7d9980c8226aa..6c1836feb1ba6e 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":"4B","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","1025":"DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B","132":"NC OC PC"},H:{"2":"gC"},I:{"1":"oB H lC mC","260":"hC iC jC","513":"I kC 3B"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"CSS position:fixed"}; +module.exports={A:{A:{"1":"D E F A B","2":"4B","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","1025":"EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B","132":"OC PC QC"},H:{"2":"hC"},I:{"1":"pB H mC nC","260":"iC jC kC","513":"I lC 3B"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"CSS position:fixed"}; 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 984f4c76fd9e21..37111750ab40c2 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":"J D E F A B 4B"},B:{"1":"V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O","328":"P Q R S T U"},C:{"1":"U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B","161":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T"},D:{"1":"V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB","328":"ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U"},E:{"1":"yB zB 0B nB 1B GC","2":"I p J D E F A B C K L 9B uB AC BC CC DC vB lB mB wB EC","578":"G FC xB"},F:{"1":"eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB HC IC JC KC lB 2B LC mB","328":"YB ZB aB bB cB dB"},G:{"1":"yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC","578":"fC xB"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"wC xC nB yC zC","2":"I oC pC qC rC sC vB tC uC vC"},Q:{"2":"wB"},R:{"1":"0C"},S:{"161":"1C"}},B:5,C:":focus-visible CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O","328":"P Q R S T U"},C:{"1":"U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B","161":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T"},D:{"1":"V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB","328":"aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U"},E:{"1":"yB zB 0B oB 1B HC","2":"I q J D E F A B C K L AC uB BC CC DC EC vB mB nB wB FC","578":"G GC xB"},F:{"1":"fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB IC JC KC LC mB 2B MC nB","328":"ZB aB bB cB dB eB"},G:{"1":"yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC","578":"gC xB"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"xC yC oB zC 0C","2":"I pC qC rC sC tC vB uC vC wC"},Q:{"2":"wB"},R:{"1":"1C"},S:{"161":"2C"}},B:5,C:":focus-visible CSS pseudo-class"}; 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 30eaa226c0cb3e..97a815b122395a 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 6B 7B"},D:{"1":"UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","194":"pB"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HC IC JC KC lB 2B LC mB","194":"HB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"rC sC vB tC uC vC wC xC nB yC zC","2":"I oC pC qC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:7,C:":focus-within CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 6B 7B"},D:{"1":"VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","194":"qB"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IC JC KC LC mB 2B MC nB","194":"IB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC rC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:7,C:":focus-within CSS pseudo-class"}; 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 b0ff10644e6c76..b7ccf7bcbd02c8 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":"J D E F A B 4B"},B:{"1":"H","2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l"},E:{"1":"yB zB 0B nB 1B GC","2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB"},F:{"1":"W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V HC IC JC KC lB 2B LC mB"},G:{"1":"yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:5,C:"CSS font-palette"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"b H","2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l"},E:{"1":"yB zB 0B oB 1B HC","2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB"},F:{"1":"W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V IC JC KC LC mB 2B MC nB"},G:{"1":"yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:5,C:"CSS font-palette"}; 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 9e9cd7ec76eecf..903e15f3e8dfec 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB 6B 7B","194":"HB IB JB KB LB MB NB OB PB QB RB SB"},D:{"1":"UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","66":"KB LB MB NB OB PB QB RB SB TB pB"},E:{"1":"C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B 9B uB AC BC CC DC vB"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","66":"7 8 9 AB BB CB DB EB FB GB HB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"rC sC vB tC uC vC wC xC nB yC zC","2":"I","66":"oC pC qC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"194":"1C"}},B:5,C:"CSS font-display"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB 6B 7B","194":"IB JB KB LB MB NB OB PB QB RB SB TB"},D:{"1":"VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","66":"LB MB NB OB PB QB RB SB TB UB qB"},E:{"1":"C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B AC uB BC CC DC EC vB"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","66":"8 9 AB BB CB DB EB FB GB HB IB"},G:{"1":"XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"sC tC vB uC vC wC xC yC oB zC 0C","2":"I","66":"pC qC rC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"194":"2C"}},B:5,C:"CSS font-display"}; 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 1d50cb559b8bb7..dc07cabe28af04 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E 6B 7B"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},E:{"1":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC vB"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"CSS font-stretch"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E 6B 7B"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},E:{"1":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC vB"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"CSS font-stretch"}; 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 e6e7ce4da9f9c8..7519317f2abb90 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":"J D 4B","132":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"CSS Generated content for pseudo-elements"}; +module.exports={A:{A:{"1":"F A B","2":"J D 4B","132":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"CSS Generated content for pseudo-elements"}; 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 8893d7c1c50bc3..23dcaa889920c9 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B","260":"0 1 2 3 4 5 6 M N O q r s t u v w x y z","292":"I p J D E F A B C K L G 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","33":"A B C K L G M N O q r s t u v w","548":"I p J D E F"},E:{"1":"yB zB 0B nB 1B GC","2":"9B uB","260":"D E F A B C K L G BC CC DC vB lB mB wB EC FC xB","292":"J AC","804":"I p"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"F B HC IC JC KC","33":"C LC","164":"lB 2B"},G:{"1":"yB zB 0B nB 1B","260":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB","292":"NC OC","804":"uB MC 3B"},H:{"2":"gC"},I:{"1":"H lC mC","33":"I kC 3B","548":"oB hC iC jC"},J:{"1":"A","548":"D"},K:{"1":"c mB","2":"A B","33":"C","164":"lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"CSS Gradients"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B","260":"0 1 2 3 4 5 6 7 M N O r s t u v w x y z","292":"I q J D E F A B C K L G 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","33":"A B C K L G M N O r s t u v w x","548":"I q J D E F"},E:{"1":"yB zB 0B oB 1B HC","2":"AC uB","260":"D E F A B C K L G CC DC EC vB mB nB wB FC GC xB","292":"J BC","804":"I q"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"F B IC JC KC LC","33":"C MC","164":"mB 2B"},G:{"1":"yB zB 0B oB 1B","260":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB","292":"OC PC","804":"uB NC 3B"},H:{"2":"hC"},I:{"1":"H mC nC","33":"I lC 3B","548":"pB iC jC kC"},J:{"1":"A","548":"D"},K:{"1":"c nB","2":"A B","33":"C","164":"mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"CSS Gradients"}; 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 b906864e8af50e..3a3862d89e0a8a 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"nB 1B GC","2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:4,C:"CSS Grid animation"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"oB 1B HC","2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:4,C:"CSS Grid animation"}; 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 5f925f572d7ca5..e9809e79c55996 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":"J D E 4B","8":"F","292":"A B"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","292":"C K L G"},C:{"1":"PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O 6B 7B","8":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB","584":"BB CB DB EB FB GB HB IB JB KB LB MB","1025":"NB OB"},D:{"1":"TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r s t u v","8":"w x y z","200":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","1025":"SB"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC","8":"J D E F A BC CC DC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u v w x y HC IC JC KC lB 2B LC mB","200":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC","8":"E OC PC QC RC SC TC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC","8":"3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"292":"A B"},O:{"1":"nC"},P:{"1":"pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"oC","8":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"CSS Grid Layout (level 1)"}; +module.exports={A:{A:{"2":"J D E 4B","8":"F","292":"A B"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","292":"C K L G"},C:{"1":"QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O 6B 7B","8":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB","584":"CB DB EB FB GB HB IB JB KB LB MB NB","1025":"OB PB"},D:{"1":"UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r s t u v w","8":"0 x y z","200":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","1025":"TB"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC","8":"J D E F A CC DC EC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","200":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC","8":"E PC QC RC SC TC UC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC","8":"3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"292":"A B"},O:{"1":"oC"},P:{"1":"qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"pC","8":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"CSS Grid Layout (level 1)"}; 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 4710ba64242563..c518896eecc77b 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC DC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:4,C:"CSS hanging-punctuation"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:4,C:"CSS hanging-punctuation"}; 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 243a7ccdfe2daa..1451b40cdac45a 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":"J D E F A B 4B"},B:{"1":"H","2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n 6B 7B","322":"o b H sB tB"},D:{"1":"H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l","194":"m n o b"},E:{"1":"yB zB 0B nB 1B GC","2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB"},F:{"1":"a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z HC IC JC KC lB 2B LC mB"},G:{"1":"yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:5,C:":has() CSS relational pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"b H","2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n 6B 7B","322":"o p b H tB"},D:{"1":"b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l","194":"m n o p"},E:{"1":"yB zB 0B oB 1B HC","2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB"},F:{"1":"a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z IC JC KC LC mB 2B MC nB"},G:{"1":"yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:5,C:":has() CSS relational pseudo-class"}; 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 d472a6e8f9b093..4bf214243862fc 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":"J D E F 4B","33":"A B"},B:{"1":"H","33":"C K L G M N O","132":"P Q R S T U V W","260":"X Y Z a d e f g h i j k l m n o b"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p 6B 7B","33":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB"},D:{"1":"X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","132":"QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W"},E:{"2":"I p 9B uB","33":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB HC IC JC KC lB 2B LC mB","132":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z"},G:{"2":"uB MC","33":"E 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"4":"nC"},P:{"1":"pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I","132":"oC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"CSS Hyphenation"}; +module.exports={A:{A:{"2":"J D E F 4B","33":"A B"},B:{"1":"b H","33":"C K L G M N O","132":"P Q R S T U V W","260":"X Y Z a d e f g h i j k l m n o p"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q 6B 7B","33":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB"},D:{"1":"X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","132":"RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W"},E:{"2":"I q AC uB","33":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB IC JC KC LC mB 2B MC nB","132":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z"},G:{"2":"uB NC","33":"E 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"4":"oC"},P:{"1":"qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I","132":"pC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"CSS Hyphenation"}; 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 23a226380d7d36..5b0a6c680b8f80 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":"J D E F A B 4B"},B:{"1":"Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O P Q","257":"R S T U V W X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t u v w 6B 7B"},D:{"1":"Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q","257":"R S T U V W X"},E:{"1":"L G wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B C K 9B uB AC BC CC DC vB lB mB"},F:{"1":"jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB HC IC JC KC lB 2B LC mB","257":"aB bB cB dB eB fB gB hB iB"},G:{"1":"dC eC fC xB yB zB 0B nB 1B","132":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"xC nB yC zC","2":"I oC pC qC rC sC vB tC uC","257":"vC wC"},Q:{"2":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"CSS3 image-orientation"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O P Q","257":"R S T U V W X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s t u v w x 6B 7B"},D:{"1":"Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q","257":"R S T U V W X"},E:{"1":"L G wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B C K AC uB BC CC DC EC vB mB nB"},F:{"1":"kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB IC JC KC LC mB 2B MC nB","257":"bB cB dB eB fB gB hB iB jB"},G:{"1":"eC fC gC xB yB zB 0B oB 1B","132":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"yC oB zC 0C","2":"I pC qC rC sC tC vB uC vC","257":"wC xC"},Q:{"2":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"CSS3 image-orientation"}; 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 ba47de43ae9038..44d10972863fd6 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":"J D E F A B 4B"},B:{"2":"C K L G M N O","164":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U 6B 7B","66":"V W","257":"Y Z a d e f g h i j k l m n o b H sB tB","772":"X"},D:{"2":"I p J D E F A B C K L G M N O q r","164":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p 9B uB AC","132":"A B C K vB lB mB wB","164":"J D E F BC CC DC","516":"L G EC FC xB yB zB 0B nB 1B GC"},F:{"2":"F B C HC IC JC KC lB 2B LC mB","164":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"uB MC 3B NC","132":"TC UC VC WC XC YC ZC aC bC cC","164":"E OC PC QC RC SC","516":"dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B","164":"H lC mC"},J:{"2":"D","164":"A"},K:{"2":"A B C lB 2B mB","164":"c"},L:{"164":"H"},M:{"257":"b"},N:{"2":"A B"},O:{"164":"nC"},P:{"164":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"164":"wB"},R:{"164":"0C"},S:{"2":"1C"}},B:5,C:"CSS image-set"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O","164":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U 6B 7B","66":"V W","257":"Y Z a d e f g h i j k l m n o p b H tB","772":"X"},D:{"2":"I q J D E F A B C K L G M N O r s","164":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q AC uB BC","132":"A B C K vB mB nB wB","164":"J D E F CC DC EC","516":"L G FC GC xB yB zB 0B oB 1B HC"},F:{"2":"F B C IC JC KC LC mB 2B MC nB","164":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"uB NC 3B OC","132":"UC VC WC XC YC ZC aC bC cC dC","164":"E PC QC RC SC TC","516":"eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B","164":"H mC nC"},J:{"2":"D","164":"A"},K:{"2":"A B C mB 2B nB","164":"c"},L:{"164":"H"},M:{"257":"b"},N:{"2":"A B"},O:{"164":"oC"},P:{"164":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"164":"wB"},R:{"164":"1C"},S:{"2":"2C"}},B:5,C:"CSS image-set"}; 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 b0d308f67f9a7f..5f495d76288698 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C","260":"K L G M N O"},C:{"1":"LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","516":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB"},D:{"1":"OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I","16":"p J D E F A B C K L","260":"NB","772":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB","16":"p","772":"J D E F A AC BC CC DC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","16":"F HC","260":"B C AB IC JC KC lB 2B LC mB","772":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B","772":"E NC OC PC QC RC SC TC"},H:{"132":"gC"},I:{"1":"H","2":"oB hC iC jC","260":"I kC 3B lC mC"},J:{"2":"D","260":"A"},K:{"1":"c","260":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","260":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"516":"1C"}},B:5,C:":in-range and :out-of-range CSS pseudo-classes"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C","260":"K L G M N O"},C:{"1":"MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","516":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB"},D:{"1":"PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I","16":"q J D E F A B C K L","260":"OB","772":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB","16":"q","772":"J D E F A BC CC DC EC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","16":"F IC","260":"B C BB JC KC LC mB 2B MC nB","772":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B","772":"E OC PC QC RC SC TC UC"},H:{"132":"hC"},I:{"1":"H","2":"pB iC jC kC","260":"I lC 3B mC nC"},J:{"2":"D","260":"A"},K:{"1":"c","260":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","260":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"516":"2C"}},B:5,C:":in-range and :out-of-range CSS pseudo-classes"}; 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 5b92012ea661a3..160c0b852e62ec 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":"J D E 4B","132":"A B","388":"F"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","132":"C K L G M N O"},C:{"1":"MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","16":"5B oB 6B 7B","132":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","388":"I p"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"I p J 9B uB","132":"D E F A BC CC DC","388":"AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","16":"F B HC IC JC KC lB 2B","132":"G M N O q r s t u v w","516":"C LC mB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB MC 3B NC OC","132":"E PC QC RC SC TC"},H:{"516":"gC"},I:{"1":"H","16":"oB hC iC jC mC","132":"lC","388":"I kC 3B"},J:{"16":"D","132":"A"},K:{"1":"c","16":"A B C lB 2B","516":"mB"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"132":"1C"}},B:5,C:":indeterminate CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E 4B","132":"A B","388":"F"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","132":"C K L G M N O"},C:{"1":"NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","16":"5B pB 6B 7B","132":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","388":"I q"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"I q J AC uB","132":"D E F A CC DC EC","388":"BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","16":"F B IC JC KC LC mB 2B","132":"G M N O r s t u v w x","516":"C MC nB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB NC 3B OC PC","132":"E QC RC SC TC UC"},H:{"516":"hC"},I:{"1":"H","16":"pB iC jC kC nC","132":"mC","388":"I lC 3B"},J:{"16":"D","132":"A"},K:{"1":"c","16":"A B C mB 2B","516":"nB"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"132":"2C"}},B:5,C:":indeterminate CSS pseudo-class"}; 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 f22bb961b2611e..b2e91eb8ebf15c 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E 9B uB AC BC CC","4":"F","164":"A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC","164":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:5,C:"CSS Initial Letter"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E AC uB BC CC DC","4":"F","164":"A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC","164":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:5,C:"CSS Initial Letter"}; 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 6d5e936ec54edc..92e940bb913fd1 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":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","33":"I p J D E F A B C K L G M N O 6B 7B","164":"5B oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB"},H:{"2":"gC"},I:{"1":"oB I H jC kC 3B lC mC","16":"hC iC"},J:{"1":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"CSS initial value"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","33":"I q J D E F A B C K L G M N O 6B 7B","164":"5B pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB"},H:{"2":"hC"},I:{"1":"pB I H kC lC 3B mC nC","16":"iC jC"},J:{"1":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"CSS initial value"}; 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 26db36f8f5c717..df87e168bcc6d5 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"G FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B C K L 9B uB AC BC CC DC vB lB mB wB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:4,C:"LCH and Lab color values"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"G GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B C K L AC uB BC CC DC EC vB mB nB wB FC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:4,C:"LCH and Lab color values"}; 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 090cf2fd1df504..f8d74b6296695f 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":"4B","132":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","132":"0 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"9B","132":"I p J uB AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","16":"F HC","132":"B C G M IC JC KC lB 2B LC mB"},G:{"1":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB"},H:{"2":"gC"},I:{"1":"H lC mC","16":"hC iC","132":"oB I jC kC 3B"},J:{"132":"D A"},K:{"1":"c","132":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"letter-spacing CSS property"}; +module.exports={A:{A:{"1":"F A B","16":"4B","132":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","132":"0 1 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"AC","132":"I q J uB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","16":"F IC","132":"B C G M JC KC LC mB 2B MC nB"},G:{"1":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB"},H:{"2":"hC"},I:{"1":"H mC nC","16":"iC jC","132":"pB I kC lC 3B"},J:{"132":"D A"},K:{"1":"c","132":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"letter-spacing CSS property"}; 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 7a829d5f630b1f..f95120411c1c5e 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":"J D E F A B 4B"},B:{"2":"C K L G M","33":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","129":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB 6B 7B","33":"aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"16":"I p J D E F A B C K","33":"0 1 2 3 4 5 6 7 8 9 L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I 9B uB","33":"p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"F B C HC IC JC KC lB 2B LC mB","33":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"uB MC 3B","33":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"16":"hC iC","33":"oB I H jC kC 3B lC mC"},J:{"33":"D A"},K:{"2":"A B C lB 2B mB","33":"c"},L:{"33":"H"},M:{"33":"b"},N:{"2":"A B"},O:{"33":"nC"},P:{"33":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"33":"wB"},R:{"33":"0C"},S:{"2":"1C"}},B:5,C:"CSS line-clamp"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M","33":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","129":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB 6B 7B","33":"bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"16":"I q J D E F A B C K","33":"0 1 2 3 4 5 6 7 8 9 L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I AC uB","33":"q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"F B C IC JC KC LC mB 2B MC nB","33":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"uB NC 3B","33":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"16":"iC jC","33":"pB I H kC lC 3B mC nC"},J:{"33":"D A"},K:{"2":"A B C mB 2B nB","33":"c"},L:{"33":"H"},M:{"33":"b"},N:{"2":"A B"},O:{"33":"oC"},P:{"33":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"33":"wB"},R:{"33":"1C"},S:{"2":"2C"}},B:5,C:"CSS line-clamp"}; 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 da547be58f30d5..cce56f6c43166d 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":"J D E F A B 4B"},B:{"1":"Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O","1028":"W X","1540":"P Q R S T U V"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B","164":"0 1 2 3 4 5 6 7 8 9 oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB 6B 7B","1540":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB"},D:{"1":"Y Z a d e f g h i j k l m n o b H sB tB 8B","292":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB","1028":"W X","1540":"bB cB dB eB fB gB hB iB jB kB P Q R S T U V"},E:{"1":"G FC xB yB zB 0B nB 1B GC","292":"I p J D E F A B C 9B uB AC BC CC DC vB lB","1028":"EC","1540":"K L mB wB"},F:{"1":"iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB","292":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","1028":"gB hB","1540":"RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB"},G:{"1":"fC xB yB zB 0B nB 1B","292":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC","1028":"eC","1540":"YC ZC aC bC cC dC"},H:{"2":"gC"},I:{"1":"H","292":"oB I hC iC jC kC 3B lC mC"},J:{"292":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"292":"nC"},P:{"1":"xC nB yC zC","292":"I oC pC qC rC sC","1540":"vB tC uC vC wC"},Q:{"1540":"wB"},R:{"1":"0C"},S:{"1540":"1C"}},B:5,C:"CSS Logical Properties"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O","1028":"W X","1540":"P Q R S T U V"},C:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B","164":"0 1 2 3 4 5 6 7 8 9 pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB 6B 7B","1540":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB"},D:{"1":"Y Z a d e f g h i j k l m n o p b H tB 8B 9B","292":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB","1028":"W X","1540":"cB dB eB fB gB hB iB jB kB lB P Q R S T U V"},E:{"1":"G GC xB yB zB 0B oB 1B HC","292":"I q J D E F A B C AC uB BC CC DC EC vB mB","1028":"FC","1540":"K L nB wB"},F:{"1":"jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB","292":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","1028":"hB iB","1540":"SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB"},G:{"1":"gC xB yB zB 0B oB 1B","292":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC","1028":"fC","1540":"ZC aC bC cC dC eC"},H:{"2":"hC"},I:{"1":"H","292":"pB I iC jC kC lC 3B mC nC"},J:{"292":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"292":"oC"},P:{"1":"yC oB zC 0C","292":"I pC qC rC sC tC","1540":"vB uC vC wC xC"},Q:{"1540":"wB"},R:{"1":"1C"},S:{"1540":"2C"}},B:5,C:"CSS Logical Properties"}; 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 752cbff74de7b3..1ddb1ded811cf0 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":"J D E F A B 4B"},B:{"1":"V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O P Q R S T U"},C:{"1":"aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB 6B 7B"},D:{"1":"V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U"},E:{"1":"GC","2":"I p J D E F A B 9B uB AC BC CC DC vB","129":"C K L G lB mB wB EC FC xB yB zB 0B nB 1B"},F:{"1":"eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB HC IC JC KC lB 2B LC mB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"wC xC nB yC zC","2":"I oC pC qC rC sC vB tC uC vC"},Q:{"2":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"CSS ::marker pseudo-element"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O P Q R S T U"},C:{"1":"bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB 6B 7B"},D:{"1":"V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U"},E:{"1":"HC","2":"I q J D E F A B AC uB BC CC DC EC vB","129":"C K L G mB nB wB FC GC xB yB zB 0B oB 1B"},F:{"1":"fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB IC JC KC LC mB 2B MC nB"},G:{"1":"XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"xC yC oB zC 0C","2":"I pC qC rC sC tC vB uC vC wC"},Q:{"2":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"CSS ::marker pseudo-element"}; 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 15babd0df11a25..097c4344888b3a 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":"J D E F A B 4B"},B:{"2":"C K L G M","164":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","3138":"N","12292":"O"},C:{"1":"OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB","260":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 6B 7B"},D:{"164":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"yB zB 0B nB 1B GC","2":"9B uB","164":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB"},F:{"2":"F B C HC IC JC KC lB 2B LC mB","164":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"1":"yB zB 0B nB 1B","164":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB"},H:{"2":"gC"},I:{"164":"H lC mC","676":"oB I hC iC jC kC 3B"},J:{"164":"D A"},K:{"2":"A B C lB 2B mB","164":"c"},L:{"164":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"164":"nC"},P:{"164":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"164":"wB"},R:{"164":"0C"},S:{"260":"1C"}},B:4,C:"CSS Masks"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M","164":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","3138":"N","12292":"O"},C:{"1":"PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB","260":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB 6B 7B"},D:{"164":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"yB zB 0B oB 1B HC","2":"AC uB","164":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB"},F:{"2":"F B C IC JC KC LC mB 2B MC nB","164":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"1":"yB zB 0B oB 1B","164":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB"},H:{"2":"hC"},I:{"164":"H mC nC","676":"pB I iC jC kC lC 3B"},J:{"164":"D A"},K:{"2":"A B C mB 2B nB","164":"c"},L:{"164":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"164":"oC"},P:{"164":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"164":"wB"},R:{"164":"1C"},S:{"260":"2C"}},B:4,C:"CSS Masks"}; 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 7d9c2afea5808f..8b5d7029ab3c62 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":"J D E F A B 4B"},B:{"1":"X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O","1220":"P Q R S T U V W"},C:{"1":"kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","16":"5B oB 6B 7B","548":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB"},D:{"1":"X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L","164":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c","196":"XB YB ZB","1220":"aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W"},E:{"1":"L G EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB","16":"p","164":"J D E AC BC CC","260":"F A B C K DC vB lB mB wB"},F:{"1":"hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB","164":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","196":"NB OB PB","1220":"QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB"},G:{"1":"dC eC fC xB yB zB 0B nB 1B","16":"uB MC 3B NC OC","164":"E PC QC","260":"RC SC TC UC VC WC XC YC ZC aC bC cC"},H:{"2":"gC"},I:{"1":"H","16":"oB hC iC jC","164":"I kC 3B lC mC"},J:{"16":"D","164":"A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"164":"nC"},P:{"1":"xC nB yC zC","164":"I oC pC qC rC sC vB tC uC vC wC"},Q:{"1220":"wB"},R:{"1":"0C"},S:{"548":"1C"}},B:5,C:":is() CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O","1220":"P Q R S T U V W"},C:{"1":"lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","16":"5B pB 6B 7B","548":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB"},D:{"1":"X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L","164":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c","196":"YB ZB aB","1220":"bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W"},E:{"1":"L G FC GC xB yB zB 0B oB 1B HC","2":"I AC uB","16":"q","164":"J D E BC CC DC","260":"F A B C K EC vB mB nB wB"},F:{"1":"iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB","164":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","196":"OB PB QB","1220":"RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB"},G:{"1":"eC fC gC xB yB zB 0B oB 1B","16":"uB NC 3B OC PC","164":"E QC RC","260":"SC TC UC VC WC XC YC ZC aC bC cC dC"},H:{"2":"hC"},I:{"1":"H","16":"pB iC jC kC","164":"I lC 3B mC nC"},J:{"16":"D","164":"A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"164":"oC"},P:{"1":"yC oB zC 0C","164":"I pC qC rC sC tC vB uC vC wC xC"},Q:{"1220":"wB"},R:{"1":"1C"},S:{"548":"2C"}},B:5,C:":is() CSS pseudo-class"}; 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 41e56397b3118b..2881237818364b 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB 6B 7B"},D:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},E:{"1":"L G wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B 9B uB AC BC CC DC vB","132":"C K lB mB"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB HC IC JC KC lB 2B LC mB"},G:{"1":"cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC","132":"WC XC YC ZC aC bC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"uC vC wC xC nB yC zC","2":"I oC pC qC rC sC vB tC"},Q:{"2":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"CSS math functions min(), max() and clamp()"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB 6B 7B"},D:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB"},E:{"1":"L G wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B AC uB BC CC DC EC vB","132":"C K mB nB"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB IC JC KC LC mB 2B MC nB"},G:{"1":"dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC","132":"XC YC ZC aC bC cC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"vC wC xC yC oB zC 0C","2":"I pC qC rC sC tC vB uC"},Q:{"2":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"CSS math functions min(), max() and clamp()"}; 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 38c7bae53eafe7..f19d100707bc7a 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":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB 6B 7B"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E 9B uB AC BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u v w x y HC IC JC KC lB 2B LC mB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:4,C:"Media Queries: interaction media features"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB 6B 7B"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E AC uB BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:4,C:"Media Queries: interaction media features"}; 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 177d355ffc4f01..9083bc04939a41 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":"J D E F A B 4B"},B:{"1":"b H","2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o"},C:{"1":"WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB 6B 7B"},D:{"1":"b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:4,C:"Media Queries: Range Syntax"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"p b H","2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o"},C:{"1":"XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB 6B 7B"},D:{"1":"p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:4,C:"Media Queries: Range Syntax"}; 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 0051acef8618f1..879ace58df4141 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":"J D E 4B","132":"F A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","1028":"C K L G M N O"},C:{"1":"VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB","260":"I p J D E F A B C K L G 6B 7B","1028":"0 1 2 3 4 5 6 7 8 9 M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB"},D:{"1":"aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","548":"I p J D E F A B C K L G M N O q r s t u v w x y z","1028":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB"},E:{"1":"nB 1B GC","2":"9B uB","548":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B"},F:{"1":"QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"F","548":"B C HC IC JC KC lB 2B LC","1028":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},G:{"1":"nB 1B","16":"uB","548":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B"},H:{"132":"gC"},I:{"1":"H","16":"hC iC","548":"oB I jC kC 3B","1028":"lC mC"},J:{"548":"D A"},K:{"1":"c mB","548":"A B C lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"nC"},P:{"1":"vB tC uC vC wC xC nB yC zC","1028":"I oC pC qC rC sC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"Media Queries: resolution feature"}; +module.exports={A:{A:{"2":"J D E 4B","132":"F A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","1028":"C K L G M N O"},C:{"1":"WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB","260":"I q J D E F A B C K L G 6B 7B","1028":"0 1 2 3 4 5 6 7 8 9 M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB"},D:{"1":"bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","548":"0 I q J D E F A B C K L G M N O r s t u v w x y z","1028":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB"},E:{"1":"oB 1B HC","2":"AC uB","548":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B"},F:{"1":"RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"F","548":"B C IC JC KC LC mB 2B MC","1028":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},G:{"1":"oB 1B","16":"uB","548":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B"},H:{"132":"hC"},I:{"1":"H","16":"iC jC","548":"pB I kC lC 3B","1028":"mC nC"},J:{"548":"D A"},K:{"1":"c nB","548":"A B C mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"oC"},P:{"1":"vB uC vC wC xC yC oB zC 0C","1028":"I pC qC rC sC tC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"Media Queries: resolution feature"}; 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 1d5b6cd1ef8b71..f2057accd57d48 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:5,C:"Media Queries: scripting media feature"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:5,C:"Media Queries: scripting media feature"}; 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 1bec619e5585c0..d1af12c1ac9934 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":"J D E 4B","129":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","2":"5B oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","129":"I p J D E F A B C K L G M N O q r s t u v w"},E:{"1":"D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","129":"I p J AC","388":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","2":"F"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","129":"uB MC 3B NC OC"},H:{"1":"gC"},I:{"1":"H lC mC","129":"oB I hC iC jC kC 3B"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"129":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"CSS3 Media Queries"}; +module.exports={A:{A:{"8":"J D E 4B","129":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","2":"5B pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","129":"I q J D E F A B C K L G M N O r s t u v w x"},E:{"1":"D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","129":"I q J BC","388":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","2":"F"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","129":"uB NC 3B OC PC"},H:{"1":"hC"},I:{"1":"H mC nC","129":"pB I iC jC kC lC 3B"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"129":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"CSS3 Media Queries"}; 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 8b191ba2c07dfd..5c0b18c6872f56 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r s t u v w x y z","194":"0 1 2 3 4 5 6 7 8 9 AB BB"},E:{"2":"I p J D 9B uB AC BC","260":"E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"2":"uB MC 3B NC OC PC","260":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"Blending of HTML/SVG elements"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 I q J D E F A B C K L G M N O r s t u v w x y z","194":"1 2 3 4 5 6 7 8 9 AB BB CB"},E:{"2":"I q J D AC uB BC CC","260":"E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"2":"uB NC 3B OC PC QC","260":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"Blending of HTML/SVG elements"}; 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 07187e2410c658..f8e6021321ad6d 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB 6B 7B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB","194":"EB FB GB"},E:{"1":"nB 1B GC","2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","194":"1 2 3"},G:{"1":"nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"CSS Motion Path"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB 6B 7B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB","194":"FB GB HB"},E:{"1":"oB 1B HC","2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","194":"2 3 4"},G:{"1":"oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"CSS Motion Path"}; 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 54614637768780..f7e01fb1ffb2d7 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB MC"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"CSS namespaces"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB NC"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"CSS namespaces"}; 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 bacfb298470ccc..96a2c25d7fd05b 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:5,C:"CSS Nesting"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:5,C:"CSS Nesting"}; 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 ea7c6c014a7cb9..a6be26a7db3d6c 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":"J D E F A B 4B"},B:{"1":"X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O Q R S T U V W","16":"P"},C:{"1":"T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S 6B 7B"},D:{"1":"X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E 9B uB AC BC CC"},F:{"1":"hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB HC IC JC KC lB 2B LC mB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"xC nB yC zC","2":"I oC pC qC rC sC vB tC uC vC wC"},Q:{"2":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"selector list argument of :not()"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O Q R S T U V W","16":"P"},C:{"1":"T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S 6B 7B"},D:{"1":"X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E AC uB BC CC DC"},F:{"1":"iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB IC JC KC LC mB 2B MC nB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"yC oB zC 0C","2":"I pC qC rC sC tC vB uC vC wC xC"},Q:{"2":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"selector list argument of :not()"}; 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 19dd81e2287689..b6223d93b68d9e 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E 9B uB AC BC CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:5,C:"selector list argument of :nth-child and :nth-last-child CSS pseudo-classes"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E AC uB BC CC DC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:5,C:"selector list argument of :nth-child and :nth-last-child CSS pseudo-classes"}; 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 bd109de4934a58..a720d6edef1a89 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"CSS3 Opacity"}; +module.exports={A:{A:{"1":"F A B","4":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"CSS3 Opacity"}; 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 aa6c7c0466628d..604c20140fff25 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L"},E:{"1":"p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","16":"F HC","132":"B C IC JC KC lB 2B LC mB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B"},H:{"132":"gC"},I:{"1":"oB I H jC kC 3B lC mC","16":"hC iC"},J:{"1":"D A"},K:{"1":"c","132":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:":optional CSS pseudo-class"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L"},E:{"1":"q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","16":"F IC","132":"B C JC KC LC mB 2B MC nB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B"},H:{"132":"hC"},I:{"1":"pB I H kC lC 3B mC nC","16":"iC jC"},J:{"1":"D A"},K:{"1":"c","132":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:":optional CSS pseudo-class"}; 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 244dd5bfbc215d..3e6cd40a4abf4b 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB 6B 7B"},D:{"1":"RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"CSS overflow-anchor (Scroll Anchoring)"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB 6B 7B"},D:{"1":"SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"CSS overflow-anchor (Scroll Anchoring)"}; 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 86a86a50ee02be..53073c59a0addb 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L"},E:{"1":"I p J D E F A B AC BC CC DC vB lB","16":"9B uB","130":"C K L G mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E MC 3B NC OC PC QC RC SC TC UC VC WC","16":"uB","130":"XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"16":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:7,C:"CSS overflow: overlay"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L"},E:{"1":"I q J D E F A B BC CC DC EC vB mB","16":"AC uB","130":"C K L G nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E NC 3B OC PC QC RC SC TC UC VC WC XC","16":"uB","130":"YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"16":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:7,C:"CSS overflow: overlay"}; 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 04b1b955a536e6..86e64d5f8c6cf3 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":"J D E F A B 4B"},B:{"1":"Z a d e f g h i j k l m n o b H","260":"P Q R S T U V W X Y","388":"C K L G M N O"},C:{"1":"R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","260":"qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q","388":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB 6B 7B"},D:{"1":"Z a d e f g h i j k l m n o b H sB tB 8B","260":"aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y","388":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB"},E:{"1":"nB 1B GC","260":"L G wB EC FC xB yB zB 0B","388":"I p J D E F A B C K 9B uB AC BC CC DC vB lB mB"},F:{"1":"iB jB kB P Q R rB S T U V W X Y Z a","260":"QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB","388":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB HC IC JC KC lB 2B LC mB"},G:{"1":"nB 1B","260":"cC dC eC fC xB yB zB 0B","388":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC"},H:{"388":"gC"},I:{"1":"H","388":"oB I hC iC jC kC 3B lC mC"},J:{"388":"D A"},K:{"1":"c","388":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"388":"A B"},O:{"388":"nC"},P:{"1":"xC nB yC zC","388":"I oC pC qC rC sC vB tC uC vC wC"},Q:{"388":"wB"},R:{"1":"0C"},S:{"388":"1C"}},B:5,C:"CSS overflow property"}; +module.exports={A:{A:{"388":"J D E F A B 4B"},B:{"1":"Z a d e f g h i j k l m n o p b H","260":"P Q R S T U V W X Y","388":"C K L G M N O"},C:{"1":"R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","260":"rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q","388":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB 6B 7B"},D:{"1":"Z a d e f g h i j k l m n o p b H tB 8B 9B","260":"bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y","388":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB"},E:{"1":"oB 1B HC","260":"L G wB FC GC xB yB zB 0B","388":"I q J D E F A B C K AC uB BC CC DC EC vB mB nB"},F:{"1":"jB kB lB P Q R sB S T U V W X Y Z a","260":"RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB","388":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB IC JC KC LC mB 2B MC nB"},G:{"1":"oB 1B","260":"dC eC fC gC xB yB zB 0B","388":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC"},H:{"388":"hC"},I:{"1":"H","388":"pB I iC jC kC lC 3B mC nC"},J:{"388":"D A"},K:{"1":"c","388":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"388":"A B"},O:{"388":"oC"},P:{"1":"yC oB zC 0C","388":"I pC qC rC sC tC vB uC vC wC xC"},Q:{"388":"wB"},R:{"1":"1C"},S:{"388":"2C"}},B:5,C:"CSS overflow property"}; 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 c95710b2dd2bed..416ca6d6287884 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":"J D E F 4B","132":"A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","132":"C K L G M N","516":"O"},C:{"1":"pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB 6B 7B"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB","260":"WB c"},E:{"1":"nB 1B GC","2":"I p J D E F A B C K L 9B uB AC BC CC DC vB lB mB wB","1090":"G EC FC xB yB zB 0B"},F:{"1":"NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB HC IC JC KC lB 2B LC mB","260":"LB MB"},G:{"1":"nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC","1090":"eC fC xB yB zB 0B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"nC"},P:{"1":"rC sC vB tC uC vC wC xC nB yC zC","2":"I oC pC qC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"CSS overscroll-behavior"}; +module.exports={A:{A:{"2":"J D E F 4B","132":"A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","132":"C K L G M N","516":"O"},C:{"1":"qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB 6B 7B"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB","260":"XB c"},E:{"1":"oB 1B HC","2":"I q J D E F A B C K L AC uB BC CC DC EC vB mB nB wB","1090":"G FC GC xB yB zB 0B"},F:{"1":"OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB IC JC KC LC mB 2B MC nB","260":"MB NB"},G:{"1":"oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC","1090":"fC gC xB yB zB 0B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"oC"},P:{"1":"sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC rC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"CSS overscroll-behavior"}; 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 547ab043f6d1cd..7df9d9541032af 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":"J D E F 4B"},B:{"388":"C K L G M N O","900":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"772":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","900":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c 6B 7B"},D:{"900":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"772":"A","900":"I p J D E F B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"16":"F HC","129":"B C IC JC KC lB 2B LC mB","900":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"900":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"129":"gC"},I:{"900":"oB I H hC iC jC kC 3B lC mC"},J:{"900":"D A"},K:{"129":"A B C lB 2B mB","900":"c"},L:{"900":"H"},M:{"772":"b"},N:{"388":"A B"},O:{"900":"nC"},P:{"900":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"900":"wB"},R:{"900":"0C"},S:{"900":"1C"}},B:2,C:"CSS page-break properties"}; +module.exports={A:{A:{"388":"A B","900":"J D E F 4B"},B:{"388":"C K L G M N O","900":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"772":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","900":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c 6B 7B"},D:{"900":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"772":"A","900":"I q J D E F B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"16":"F IC","129":"B C JC KC LC mB 2B MC nB","900":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"900":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"129":"hC"},I:{"900":"pB I H iC jC kC lC 3B mC nC"},J:{"900":"D A"},K:{"129":"A B C mB 2B nB","900":"c"},L:{"900":"H"},M:{"772":"b"},N:{"388":"A B"},O:{"900":"oC"},P:{"900":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"900":"wB"},R:{"900":"1C"},S:{"900":"2C"}},B:2,C:"CSS page-break properties"}; 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 d00f170d3b0dc7..78fdb8e015217a 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":"J D 4B","132":"E F A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","132":"C K L G M N O"},C:{"2":"5B oB I p J D E F A B C K L G M N O 6B 7B","132":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","132":"F B C HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"16":"gC"},I:{"16":"oB I H hC iC jC kC 3B lC mC"},J:{"16":"D A"},K:{"16":"A B C c lB 2B mB"},L:{"1":"H"},M:{"132":"b"},N:{"258":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"132":"1C"}},B:5,C:"CSS Paged Media (@page)"}; +module.exports={A:{A:{"2":"J D 4B","132":"E F A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","132":"C K L G M N O"},C:{"2":"5B pB I q J D E F A B C K L G M N O 6B 7B","132":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","132":"F B C IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"16":"hC"},I:{"16":"pB I H iC jC kC lC 3B mC nC"},J:{"16":"D A"},K:{"16":"A B C c mB 2B nB"},L:{"1":"H"},M:{"132":"b"},N:{"258":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"132":"2C"}},B:5,C:"CSS Paged Media (@page)"}; 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 23565415d80b32..13bf97104d3ca4 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c"},E:{"2":"I p J D E F A B C 9B uB AC BC CC DC vB lB","194":"K L G mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:4,C:"CSS Paint API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c"},E:{"2":"I q J D E F A B C AC uB BC CC DC EC vB mB","194":"K L G nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:4,C:"CSS Paint API"}; 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 9b6c4489b54f3d..5d41a8ae7f2a08 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":"J D E F 4B","292":"A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B","164":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E 9B uB AC BC CC"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"164":"1C"}},B:5,C:":placeholder-shown CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F 4B","292":"A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B","164":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E AC uB BC CC DC"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"164":"2C"}},B:5,C:":placeholder-shown CSS pseudo-class"}; 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 90d85692e1284c..563decb83f3d7e 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","36":"C K L G M N O"},C:{"1":"MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O 6B 7B","33":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},D:{"1":"SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","36":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB","36":"p J D E F A AC BC CC DC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB","36":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC","36":"E 3B NC OC PC QC RC SC TC"},H:{"2":"gC"},I:{"1":"H","36":"oB I hC iC jC kC 3B lC mC"},J:{"36":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"36":"A B"},O:{"1":"nC"},P:{"1":"qC rC sC vB tC uC vC wC xC nB yC zC","36":"I oC pC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"33":"1C"}},B:5,C:"::placeholder CSS pseudo-element"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","36":"C K L G M N O"},C:{"1":"NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O 6B 7B","33":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},D:{"1":"TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","36":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB","36":"q J D E F A BC CC DC EC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB","36":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC","36":"E 3B OC PC QC RC SC TC UC"},H:{"2":"hC"},I:{"1":"H","36":"pB I iC jC kC lC 3B mC nC"},J:{"36":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"36":"A B"},O:{"1":"oC"},P:{"1":"rC sC tC vB uC vC wC xC yC oB zC 0C","36":"I pC qC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"33":"2C"}},B:5,C:"::placeholder CSS pseudo-element"}; 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 495fc51c4b0240..093bc373543539 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":"I p J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7 8 9 N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB 6B 7B","33":"JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h"},M:{"1":"b"},A:{"2":"J D E F A B 4B"},F:{"2":"F B C HC IC JC KC lB 2B LC mB","33":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},K:{"2":"A B C lB 2B mB","33":"c"},E:{"1":"yB zB 0B nB 1B","2":"I p 9B uB AC GC","33":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB"},G:{"1":"yB zB 0B nB 1B","2":"uB MC 3B NC","33":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB"},P:{"33":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},I:{"2":"oB I hC iC jC kC 3B","33":"H lC mC"}},B:6,C:"print-color-adjust property"}; +module.exports={A:{D:{"2":"I q J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7 8 9 N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 6B 7B","33":"KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h"},M:{"1":"b"},A:{"2":"J D E F A B 4B"},F:{"2":"F B C IC JC KC LC mB 2B MC nB","33":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},K:{"2":"A B C mB 2B nB","33":"c"},E:{"1":"yB zB 0B oB 1B","2":"I q AC uB BC HC","33":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB"},G:{"1":"yB zB 0B oB 1B","2":"uB NC 3B OC","33":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB"},P:{"33":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},I:{"2":"pB I iC jC kC lC 3B","33":"H mC nC"}},B:6,C:"print-color-adjust property"}; 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 03eb7aaffaeba1..353dde72cca235 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":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C"},C:{"1":"kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","16":"5B","33":"0 1 2 3 4 5 6 7 8 9 oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB 6B 7B"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L","132":"0 1 2 3 4 5 6 G M N O q r s t u v w x y z"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"9B uB","132":"I p J D E AC BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","16":"F B HC IC JC KC lB","132":"C G M N O q r s t 2B LC mB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB MC","132":"E 3B NC OC PC QC"},H:{"2":"gC"},I:{"1":"H","16":"hC iC","132":"oB I jC kC 3B lC mC"},J:{"1":"A","132":"D"},K:{"1":"c","2":"A B lB","132":"C 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"33":"1C"}},B:1,C:"CSS :read-only and :read-write selectors"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C"},C:{"1":"lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","16":"5B","33":"0 1 2 3 4 5 6 7 8 9 pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB 6B 7B"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L","132":"0 1 2 3 4 5 6 7 G M N O r s t u v w x y z"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"AC uB","132":"I q J D E BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","16":"F B IC JC KC LC mB","132":"C G M N O r s t u 2B MC nB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB NC","132":"E 3B OC PC QC RC"},H:{"2":"hC"},I:{"1":"H","16":"iC jC","132":"pB I kC lC 3B mC nC"},J:{"1":"A","132":"D"},K:{"1":"c","2":"A B mB","132":"C 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"33":"2C"}},B:1,C:"CSS :read-only and :read-write selectors"}; 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 8621547c9b0525..690f4d5d86a81f 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":"J D E F A 4B","132":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"D E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J 9B uB AC","16":"BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u v HC IC JC KC lB 2B LC mB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC PC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"Rebeccapurple color"}; +module.exports={A:{A:{"2":"J D E F A 4B","132":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"D E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J AC uB BC","16":"CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u v w IC JC KC LC mB 2B MC nB"},G:{"1":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC QC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"Rebeccapurple color"}; 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 5ecc4a91727ffc..63528403768d62 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":"J D E F A B 4B"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"9B uB","33":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"F B C HC IC JC KC lB 2B LC mB","33":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"33":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"33":"oB I H hC iC jC kC 3B lC mC"},J:{"33":"D A"},K:{"2":"A B C lB 2B mB","33":"c"},L:{"33":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"33":"nC"},P:{"33":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"33":"wB"},R:{"33":"0C"},S:{"2":"1C"}},B:7,C:"CSS Reflections"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"AC uB","33":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"F B C IC JC KC LC mB 2B MC nB","33":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"33":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"33":"pB I H iC jC kC lC 3B mC nC"},J:{"33":"D A"},K:{"2":"A B C mB 2B nB","33":"c"},L:{"33":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"33":"oC"},P:{"33":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"33":"wB"},R:{"33":"1C"},S:{"2":"2C"}},B:7,C:"CSS Reflections"}; 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 65157c6c38db1a..7dc60a6acf3e9c 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":"J D E F 4B","420":"A B"},B:{"2":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","420":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"6 7 8 9 I p J D E F A B C K L AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","36":"G M N O","66":"0 1 2 3 4 5 q r s t u v w x y z"},E:{"2":"I p J C K L G 9B uB AC lB mB wB EC FC xB yB zB 0B nB 1B GC","33":"D E F A B BC CC DC vB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"uB MC 3B NC OC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","33":"E PC QC RC SC TC UC VC"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"420":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:5,C:"CSS Regions"}; +module.exports={A:{A:{"2":"J D E F 4B","420":"A B"},B:{"2":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","420":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"7 8 9 I q J D E F A B C K L AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","36":"G M N O","66":"0 1 2 3 4 5 6 r s t u v w x y z"},E:{"2":"I q J C K L G AC uB BC mB nB wB FC GC xB yB zB 0B oB 1B HC","33":"D E F A B CC DC EC vB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"uB NC 3B OC PC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","33":"E QC RC SC TC UC VC WC"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"420":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:5,C:"CSS Regions"}; 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 a1ed4e7e1feb7a..75a89b708b8c20 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B","33":"I p J D E F A B C K L G 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F","33":"A B C K L G M N O q r s t u v w"},E:{"1":"D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB","33":"J AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"F B HC IC JC KC","33":"C LC","36":"lB 2B"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B","33":"NC OC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB hC iC jC","33":"I kC 3B"},J:{"1":"A","2":"D"},K:{"1":"c mB","2":"A B","33":"C","36":"lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"CSS Repeating Gradients"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B","33":"I q J D E F A B C K L G 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F","33":"A B C K L G M N O r s t u v w x"},E:{"1":"D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB","33":"J BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"F B IC JC KC LC","33":"C MC","36":"mB 2B"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B","33":"OC PC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB iC jC kC","33":"I lC 3B"},J:{"1":"A","2":"D"},K:{"1":"c nB","2":"A B","33":"C","36":"mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"CSS Repeating Gradients"}; 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 4c521b78016ddd..b8a1b391d660a9 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B","33":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC","132":"mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:2,C:"CSS resize property"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B","33":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC","132":"nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:2,C:"CSS resize property"}; 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 4c0356391a70d0..de83f6d6365c3f 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":"J D E F A B 4B"},B:{"1":"T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O P Q R S"},C:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB 6B 7B"},D:{"1":"T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S"},E:{"1":"A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC"},F:{"1":"fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB HC IC JC KC lB 2B LC mB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"wC xC nB yC zC","2":"I oC pC qC rC sC vB tC uC vC"},Q:{"2":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:4,C:"CSS revert value"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O P Q R S"},C:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB 6B 7B"},D:{"1":"T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S"},E:{"1":"A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC"},F:{"1":"gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB IC JC KC LC mB 2B MC nB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"xC yC oB zC 0C","2":"I pC qC rC sC tC vB uC vC wC"},Q:{"2":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:4,C:"CSS revert value"}; 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 ba5bac5b3dbad6..efd25678ecd291 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 6B 7B"},D:{"1":"VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","194":"NB OB PB QB RB SB TB pB UB qB"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC DC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","194":"AB BB CB DB EB FB GB HB IB JB KB LB MB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"rC sC vB tC uC vC wC xC nB yC zC","2":"I","194":"oC pC qC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:4,C:"#rrggbbaa hex color notation"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 6B 7B"},D:{"1":"WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","194":"OB PB QB RB SB TB UB qB VB rB"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC EC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB IC JC KC LC mB 2B MC nB","194":"BB CB DB EB FB GB HB IB JB KB LB MB NB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"sC tC vB uC vC wC xC yC oB zC 0C","2":"I","194":"pC qC rC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:4,C:"#rrggbbaa hex color notation"}; 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 1bc249788ef062..8da8f9c1e644a7 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":"J D E F A B 4B"},B:{"2":"C K L G M N O","129":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB","129":"qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","450":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB"},E:{"1":"yB zB 0B nB 1B GC","2":"I p J D E F A B C K 9B uB AC BC CC DC vB lB mB wB","578":"L G EC FC xB"},F:{"2":"F B C G M N O q r s t u v w x y HC IC JC KC lB 2B LC mB","129":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","450":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB"},G:{"1":"yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC","578":"eC fC xB"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"129":"nC"},P:{"1":"rC sC vB tC uC vC wC xC nB yC zC","2":"I oC pC qC"},Q:{"129":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"CSS Scroll-behavior"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O","129":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB","129":"rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","450":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB"},E:{"1":"yB zB 0B oB 1B HC","2":"I q J D E F A B C K AC uB BC CC DC EC vB mB nB wB","578":"L G FC GC xB"},F:{"2":"F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","129":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","450":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB"},G:{"1":"yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC","578":"fC gC xB"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"129":"oC"},P:{"1":"sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC rC"},Q:{"129":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"CSS Scroll-behavior"}; 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 0e38dfac1e67ba..fd1915c1abf56b 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y","194":"Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T","194":"X Y Z a d e f g h i j k l m n o b H sB tB 8B","322":"U V W"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB HC IC JC KC lB 2B LC mB","194":"hB iB jB kB P Q R rB S T U V W X Y Z a","322":"fB gB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:7,C:"CSS @scroll-timeline"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y","194":"Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T","194":"X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","322":"U V W"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB IC JC KC LC mB 2B MC nB","194":"iB jB kB lB P Q R sB S T U V W X Y Z a","322":"gB hB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:7,C:"CSS @scroll-timeline"}; 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 930da53e96cbda..eda74f305c76bd 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":"J D E F A B 4B"},B:{"2":"C K L G M N O","292":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB 6B 7B","3074":"WB","4100":"c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"292":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"16":"I p 9B uB","292":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"F B C HC IC JC KC lB 2B LC mB","292":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"dC eC fC xB yB zB 0B nB 1B","16":"uB MC 3B NC OC","292":"PC","804":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC"},H:{"2":"gC"},I:{"16":"hC iC","292":"oB I H jC kC 3B lC mC"},J:{"292":"D A"},K:{"2":"A B C lB 2B mB","292":"c"},L:{"292":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"292":"nC"},P:{"292":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"292":"wB"},R:{"292":"0C"},S:{"2":"1C"}},B:7,C:"CSS scrollbar styling"}; +module.exports={A:{A:{"132":"J D E F A B 4B"},B:{"2":"C K L G M N O","292":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB 6B 7B","3074":"XB","4100":"c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"292":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"16":"I q AC uB","292":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"F B C IC JC KC LC mB 2B MC nB","292":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"eC fC gC xB yB zB 0B oB 1B","16":"uB NC 3B OC PC","292":"QC","804":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC"},H:{"2":"hC"},I:{"16":"iC jC","292":"pB I H kC lC 3B mC nC"},J:{"292":"D A"},K:{"2":"A B C mB 2B nB","292":"c"},L:{"292":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"292":"oC"},P:{"292":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"292":"wB"},R:{"292":"1C"},S:{"2":"2C"}},B:7,C:"CSS scrollbar styling"}; 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 f202d3e689243f..2848a05b78bfa4 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":"4B","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"CSS 2.1 selectors"}; +module.exports={A:{A:{"1":"D E F A B","2":"4B","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"CSS 2.1 selectors"}; 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 29e12a4604bb20..1da90c2c39ff99 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":"4B","8":"J","132":"D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","2":"5B oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","2":"F"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"CSS3 selectors"}; +module.exports={A:{A:{"1":"F A B","2":"4B","8":"J","132":"D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","2":"5B pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","2":"F"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"CSS3 selectors"}; 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 4d27682ebf3b37..5f6afaf28c36c6 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","33":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","2":"F"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"1":"A","2":"D"},K:{"1":"C c 2B mB","16":"A B lB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"33":"1C"}},B:5,C:"::selection CSS pseudo-element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","33":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","2":"F"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"1":"A","2":"D"},K:{"1":"C c 2B nB","16":"A B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"33":"2C"}},B:5,C:"::selection CSS pseudo-element"}; 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 7c16aab416ba11..10e29a01bd9c29 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 6B 7B","322":"MB NB OB PB QB RB SB TB pB UB qB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 I p J D E F A B C K L G M N O q r s t u v w x y z","194":"5 6 7"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D 9B uB AC BC","33":"E F A CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u HC IC JC KC lB 2B LC mB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC PC","33":"E QC RC SC TC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:4,C:"CSS Shapes Level 1"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 6B 7B","322":"NB OB PB QB RB SB TB UB qB VB rB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 I q J D E F A B C K L G M N O r s t u v w x y z","194":"6 7 8"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D AC uB BC CC","33":"E F A DC EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u v IC JC KC LC mB 2B MC nB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC QC","33":"E RC SC TC UC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:4,C:"CSS Shapes Level 1"}; 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 0999c7a48d2685..a6525549862c82 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":"J D E F 4B","6308":"A","6436":"B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","6436":"C K L G M N O"},C:{"1":"aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","2052":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB"},D:{"1":"bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB","8258":"YB ZB aB"},E:{"1":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E 9B uB AC BC CC","3108":"F A DC vB"},F:{"1":"c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB HC IC JC KC lB 2B LC mB","8258":"PB QB RB SB TB UB VB WB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC","3108":"RC SC TC UC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"vB tC uC vC wC xC nB yC zC","2":"I oC pC qC rC sC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2052":"1C"}},B:4,C:"CSS Scroll Snap"}; +module.exports={A:{A:{"2":"J D E F 4B","6308":"A","6436":"B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","6436":"C K L G M N O"},C:{"1":"bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB 6B 7B","2052":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB"},D:{"1":"cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB","8258":"ZB aB bB"},E:{"1":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E AC uB BC CC DC","3108":"F A EC vB"},F:{"1":"c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB IC JC KC LC mB 2B MC nB","8258":"QB RB SB TB UB VB WB XB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC","3108":"SC TC UC VC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"vB uC vC wC xC yC oB zC 0C","2":"I pC qC rC sC tC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2052":"2C"}},B:4,C:"CSS Scroll Snap"}; 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 78c9a30ce04513..d328c74a4a1efd 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":"J D E F A B 4B"},B:{"1":"a d e f g h i j k l m n o b H","2":"C K L G","1028":"P Q R S T U V W X Y Z","4100":"M N O"},C:{"1":"pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t u v w 6B 7B","194":"0 1 2 x y z","516":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},D:{"1":"a d e f g h i j k l m n o b H sB tB 8B","2":"8 9 I p J D E F A B C K L G M N O q r s t AB BB CB DB EB FB GB HB IB JB KB LB MB","322":"0 1 2 3 4 5 6 7 u v w x y z NB OB PB QB","1028":"RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z"},E:{"1":"K L G wB EC FC xB yB zB 0B nB 1B GC","2":"I p J 9B uB AC","33":"E F A B C CC DC vB lB mB","2084":"D BC"},F:{"1":"kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","322":"AB BB CB","1028":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB"},G:{"1":"ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC","33":"E QC RC SC TC UC VC WC XC YC","2084":"OC PC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1028":"nC"},P:{"1":"pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I oC"},Q:{"1028":"wB"},R:{"1":"0C"},S:{"516":"1C"}},B:5,C:"CSS position:sticky"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"a d e f g h i j k l m n o p b H","2":"C K L G","1028":"P Q R S T U V W X Y Z","4100":"M N O"},C:{"1":"qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s t u v w x 6B 7B","194":"0 1 2 3 y z","516":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},D:{"1":"a d e f g h i j k l m n o p b H tB 8B 9B","2":"9 I q J D E F A B C K L G M N O r s t u AB BB CB DB EB FB GB HB IB JB KB LB MB NB","322":"0 1 2 3 4 5 6 7 8 v w x y z OB PB QB RB","1028":"SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z"},E:{"1":"K L G wB FC GC xB yB zB 0B oB 1B HC","2":"I q J AC uB BC","33":"E F A B C DC EC vB mB nB","2084":"D CC"},F:{"1":"lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB IC JC KC LC mB 2B MC nB","322":"BB CB DB","1028":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB"},G:{"1":"aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC","33":"E RC SC TC UC VC WC XC YC ZC","2084":"PC QC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1028":"oC"},P:{"1":"qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC"},Q:{"1028":"wB"},R:{"1":"1C"},S:{"516":"2C"}},B:5,C:"CSS position:sticky"}; 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 4f9d9586359dce..72b86f9d714177 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"nB 1B GC","2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:4,C:"CSS Subgrid"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"oB 1B HC","2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:4,C:"CSS Subgrid"}; 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 6b2f9a34cf4414..88b9cb901179ec 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","260":"C K L G M N O"},C:{"1":"QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q 6B 7B","66":"r s","260":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},D:{"1":"qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r s t u v w x y","260":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E 9B uB AC BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC","132":"mB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC"},H:{"132":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B","132":"mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"CSS.supports() API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","260":"C K L G M N O"},C:{"1":"RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r 6B 7B","66":"s t","260":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},D:{"1":"rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r s t u v w x y z","260":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E AC uB BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC","132":"nB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC"},H:{"132":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B","132":"nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"CSS.supports() API"}; 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 446786eb866848..cd3371f06993ea 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":"J D 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","132":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"CSS Table display"}; +module.exports={A:{A:{"1":"E F A B","2":"J D 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","132":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"CSS Table display"}; 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 200b4e3b2a8228..6600397b4899db 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","4":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B 6B 7B","33":"0 1 2 3 4 5 6 7 8 9 C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 I p J D E F A B C K L G M N O q r s t u v w x y z","322":"6 7 8 9 AB BB CB DB EB FB GB HB"},E:{"1":"nB 1B GC","2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s HC IC JC KC lB 2B LC mB","578":"0 1 2 3 4 t u v w x y z"},G:{"1":"nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"33":"1C"}},B:4,C:"CSS3 text-align-last"}; +module.exports={A:{A:{"132":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","4":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B 6B 7B","33":"0 1 2 3 4 5 6 7 8 9 C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 I q J D E F A B C K L G M N O r s t u v w x y z","322":"7 8 9 AB BB CB DB EB FB GB HB IB"},E:{"1":"oB 1B HC","2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t IC JC KC LC mB 2B MC nB","578":"0 1 2 3 4 5 u v w x y z"},G:{"1":"oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"33":"2C"}},B:4,C:"CSS3 text-align-last"}; 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 6c0bf14ae8d13e..ea5be101c15c72 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":"J D E F A B 4B"},B:{"132":"C K L G M N O","388":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"132":"0 1 2 3 4 5 6 7 8 I p J D E F A B C K L G M N O q r s t u v w x y z","388":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"nB 1B GC","132":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B"},F:{"132":"F B C G M N O q r s t u v HC IC JC KC lB 2B LC mB","388":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"1":"nB 1B","132":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B"},H:{"132":"gC"},I:{"132":"oB I hC iC jC kC 3B lC mC","388":"H"},J:{"132":"D A"},K:{"132":"A B C lB 2B mB","388":"c"},L:{"388":"H"},M:{"132":"b"},N:{"132":"A B"},O:{"388":"nC"},P:{"132":"I","388":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"388":"wB"},R:{"388":"0C"},S:{"132":"1C"}},B:4,C:"CSS text-indent"}; +module.exports={A:{A:{"132":"J D E F A B 4B"},B:{"132":"C K L G M N O","388":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"132":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z","388":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"oB 1B HC","132":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B"},F:{"132":"F B C G M N O r s t u v w IC JC KC LC mB 2B MC nB","388":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"1":"oB 1B","132":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B"},H:{"132":"hC"},I:{"132":"pB I iC jC kC lC 3B mC nC","388":"H"},J:{"132":"D A"},K:{"132":"A B C mB 2B nB","388":"c"},L:{"388":"H"},M:{"132":"b"},N:{"132":"A B"},O:{"388":"oC"},P:{"132":"I","388":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"388":"wB"},R:{"388":"1C"},S:{"132":"2C"}},B:4,C:"CSS text-indent"}; 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 7a3f8b07eba7f5..8d2f4c604a6b44 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":"J D 4B","132":"E F A B"},B:{"132":"C K L G M N O","322":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB 6B 7B","1025":"QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","1602":"PB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB","322":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","322":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B lC mC","322":"H"},J:{"2":"D A"},K:{"2":"A B C lB 2B mB","322":"c"},L:{"322":"H"},M:{"1025":"b"},N:{"132":"A B"},O:{"322":"nC"},P:{"2":"I","322":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"322":"wB"},R:{"322":"0C"},S:{"2":"1C"}},B:4,C:"CSS text-justify"}; +module.exports={A:{A:{"16":"J D 4B","132":"E F A B"},B:{"132":"C K L G M N O","322":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB 6B 7B","1025":"RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","1602":"QB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB","322":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","322":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B mC nC","322":"H"},J:{"2":"D A"},K:{"2":"A B C mB 2B nB","322":"c"},L:{"322":"H"},M:{"1025":"b"},N:{"132":"A B"},O:{"322":"oC"},P:{"2":"I","322":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"322":"wB"},R:{"322":"1C"},S:{"2":"2C"}},B:4,C:"CSS text-justify"}; 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 451466b6fbe3d3..895b77a9e1525c 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","194":"9 AB BB"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},E:{"1":"L G EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC DC","16":"A","33":"B C K vB lB mB wB"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"CSS text-orientation"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","194":"AB BB CB"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},E:{"1":"L G FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC EC","16":"A","33":"B C K vB mB nB wB"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"CSS text-orientation"}; 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 e3909d625a2821..d7f0fa116b5cdb 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":"J D 4B","161":"E F A B"},B:{"2":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"16":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:5,C:"CSS Text 4 text-spacing"}; +module.exports={A:{A:{"2":"J D 4B","161":"E F A B"},B:{"2":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"16":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:5,C:"CSS Text 4 text-spacing"}; 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 60e42de5795b79..b4bbf303b7d742 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":"J D E F 4B","129":"A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","129":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","2":"5B oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","260":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","2":"F"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"4":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"A","4":"D"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"129":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"CSS3 Text-shadow"}; +module.exports={A:{A:{"2":"J D E F 4B","129":"A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","129":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","2":"5B pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","260":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","2":"F"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"4":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"A","4":"D"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"129":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"CSS3 Text-shadow"}; 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 57e0269df5e337..229fe35d0e74e7 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":"J D E F 4B","289":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","194":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB","1025":"NB OB PB QB RB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t HC IC JC KC lB 2B LC mB"},G:{"1":"ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC","516":"SC TC UC VC WC XC YC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","289":"A"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"194":"1C"}},B:2,C:"CSS touch-action property"}; +module.exports={A:{A:{"1":"B","2":"J D E F 4B","289":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","194":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB","1025":"OB PB QB RB SB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u IC JC KC LC mB 2B MC nB"},G:{"1":"aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC","516":"TC UC VC WC XC YC ZC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","289":"A"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"194":"2C"}},B:2,C:"CSS touch-action property"}; 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 4692fea0c7c637..187c7f902ab86f 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B","33":"p J D E F A B C K L G","164":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","33":"I p J D E F A B C K L G M N O q r s t u v w"},E:{"1":"D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","33":"J AC","164":"I p 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"F HC IC","33":"C","164":"B JC KC lB 2B LC"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","33":"OC","164":"uB MC 3B NC"},H:{"2":"gC"},I:{"1":"H lC mC","33":"oB I hC iC jC kC 3B"},J:{"1":"A","33":"D"},K:{"1":"c mB","33":"C","164":"A B lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"CSS3 Transitions"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B","33":"q J D E F A B C K L G","164":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","33":"I q J D E F A B C K L G M N O r s t u v w x"},E:{"1":"D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","33":"J BC","164":"I q AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"F IC JC","33":"C","164":"B KC LC mB 2B MC"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","33":"PC","164":"uB NC 3B OC"},H:{"2":"hC"},I:{"1":"H mC nC","33":"pB I iC jC kC lC 3B"},J:{"1":"A","33":"D"},K:{"1":"c nB","33":"C","164":"A B mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"CSS3 Transitions"}; 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 2985ab3d5af85e..bc3ec173b07b61 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","132":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","33":"0 1 2 3 4 5 6 7 8 9 N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","132":"5B oB I p J D E F 6B 7B","292":"A B C K L G M"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","132":"I p J D E F A B C K L G M","548":"0 1 2 3 4 5 6 7 8 9 N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},E:{"132":"I p J D E 9B uB AC BC CC","548":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"132":"E uB MC 3B NC OC PC QC","548":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"16":"gC"},I:{"1":"H","16":"oB I hC iC jC kC 3B lC mC"},J:{"16":"D A"},K:{"1":"c","16":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","16":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"33":"1C"}},B:4,C:"CSS unicode-bidi property"}; +module.exports={A:{A:{"132":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","132":"C K L G M N O"},C:{"1":"MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","33":"0 1 2 3 4 5 6 7 8 9 N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","132":"5B pB I q J D E F 6B 7B","292":"A B C K L G M"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","132":"I q J D E F A B C K L G M","548":"0 1 2 3 4 5 6 7 8 9 N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},E:{"132":"I q J D E AC uB BC CC DC","548":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"132":"E uB NC 3B OC PC QC RC","548":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"16":"hC"},I:{"1":"H","16":"pB I iC jC kC lC 3B mC nC"},J:{"16":"D A"},K:{"1":"c","16":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","16":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"33":"2C"}},B:4,C:"CSS unicode-bidi property"}; 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 3999edcd9ae807..c191c3e4379eaf 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":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t u v w x 6B 7B"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB"},E:{"1":"A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u v w x y HC IC JC KC lB 2B LC mB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"CSS unset value"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s t u v w x y 6B 7B"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB"},E:{"1":"A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"CSS unset value"}; 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 3dab8674e83d20..67e114d2279b6f 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":"J D E F A B 4B"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L","260":"G"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB","194":"JB"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC","260":"DC"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","194":"6"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC","260":"SC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"CSS Variables (Custom Properties)"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L","260":"G"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","194":"KB"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC","260":"EC"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","194":"7"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC","260":"TC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"CSS Variables (Custom Properties)"}; 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 d87946dd487012..6b070eaaffbac0 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:5,C:"CSS @when / @else conditional rules"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:5,C:"CSS @when / @else conditional rules"}; 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 048b1c0ad80872..928b407e6dac1b 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":"J D 4B","129":"E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r s t u v"},E:{"1":"D E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J 9B uB AC BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","129":"F B HC IC JC KC lB 2B LC"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC"},H:{"1":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"2":"D A"},K:{"1":"c mB","2":"A B C lB 2B"},L:{"1":"H"},M:{"2":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:2,C:"CSS widows & orphans"}; +module.exports={A:{A:{"1":"A B","2":"J D 4B","129":"E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r s t u v w"},E:{"1":"D E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J AC uB BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","129":"F B IC JC KC LC mB 2B MC"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC"},H:{"1":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"2":"D A"},K:{"1":"c nB","2":"A B C mB 2B"},L:{"1":"H"},M:{"2":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:2,C:"CSS widows & orphans"}; 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 626b34914d1d20..2d42a7f903c3a2 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":"I p J D E F A B C K L G M N O q r s","33":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"5B","33":"0 1 2 3 4 5 6 7 8 9 oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},M:{"33":"b"},A:{"2":"J D E F A B 4B"},F:{"2":"F B C HC IC JC KC lB 2B LC mB","33":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},K:{"2":"A B C lB 2B mB","33":"c"},E:{"2":"I p J 9B uB AC BC GC","33":"D E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B"},G:{"2":"uB MC 3B NC OC","33":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},P:{"2":"I","33":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},I:{"2":"oB I hC iC jC kC 3B","33":"H lC mC"}},B:6,C:"width: stretch property"}; +module.exports={A:{D:{"2":"I q J D E F A B C K L G M N O r s t","33":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"5B","33":"0 1 2 3 4 5 6 7 8 9 pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},M:{"33":"b"},A:{"2":"J D E F A B 4B"},F:{"2":"F B C IC JC KC LC mB 2B MC nB","33":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},K:{"2":"A B C mB 2B nB","33":"c"},E:{"2":"I q J AC uB BC CC HC","33":"D E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B"},G:{"2":"uB NC 3B OC PC","33":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},P:{"2":"I","33":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},I:{"2":"pB I iC jC kC lC 3B","33":"H mC nC"}},B:6,C:"width: stretch property"}; 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 51b42ddee1a3c8..8ca80b52736207 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":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","322":"7 8 9 AB BB"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J","16":"D","33":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},E:{"1":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB","16":"p","33":"J D E F A AC BC CC DC vB"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB","33":"0 1 2 3 4 5 G M N O q r s t u v w x y z"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB MC 3B","33":"E NC OC PC QC RC SC TC UC"},H:{"2":"gC"},I:{"1":"H","2":"hC iC jC","33":"oB I kC 3B lC mC"},J:{"33":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"36":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","33":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"CSS writing-mode property"}; +module.exports={A:{A:{"132":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","322":"8 9 AB BB CB"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J","16":"D","33":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},E:{"1":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB","16":"q","33":"J D E F A BC CC DC EC vB"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB","33":"0 1 2 3 4 5 6 G M N O r s t u v w x y z"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB NC 3B","33":"E OC PC QC RC SC TC UC VC"},H:{"2":"hC"},I:{"1":"H","2":"iC jC kC","33":"pB I lC 3B mC nC"},J:{"33":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"36":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","33":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"CSS writing-mode property"}; 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 224cb28f384e7d..c85c14e04819c9 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":"J D 4B","129":"E F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB"},H:{"2":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"129":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:7,C:"CSS zoom"}; +module.exports={A:{A:{"1":"J D 4B","129":"E F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB"},H:{"2":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"129":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:7,C:"CSS zoom"}; 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 4ec6dddbfb6d2f..5852170f744d04 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:7,C:"CSS3 attr() function for all properties"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:7,C:"CSS3 attr() function for all properties"}; 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 86867bccdab7ae..96ca0e33366ed5 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":"J D 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b 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 NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","33":"5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","33":"I p J D E F"},E:{"1":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","33":"I p 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","2":"F"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","33":"uB MC 3B"},H:{"1":"gC"},I:{"1":"I H kC 3B lC mC","33":"oB hC iC jC"},J:{"1":"A","33":"D"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"CSS3 Box-sizing"}; +module.exports={A:{A:{"1":"E F A B","8":"J D 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","33":"0 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","33":"I q J D E F"},E:{"1":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","33":"I q AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","2":"F"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","33":"uB NC 3B"},H:{"1":"hC"},I:{"1":"I H lC 3B mC nC","33":"pB iC jC kC"},J:{"1":"A","33":"D"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"CSS3 Box-sizing"}; 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 498f092134d74e..60e2724ad97850 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","4":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a IC JC KC lB 2B LC mB","2":"F","4":"HC"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"CSS3 Colors"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","4":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a JC KC LC mB 2B MC nB","2":"F","4":"IC"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"CSS3 Colors"}; 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 de749bf290438b..41c1575a9cece2 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":"J D E F A B 4B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","33":"5B oB I p J D E F A B C K L G M N O q r s t u v w x 6B 7B"},D:{"1":"aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","33":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB"},E:{"1":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","33":"I p J D E F A 9B uB AC BC CC DC vB"},F:{"1":"C QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a LC mB","2":"F B HC IC JC KC lB 2B","33":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"33":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:2,C:"CSS grab & grabbing cursors"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","33":"5B pB I q J D E F A B C K L G M N O r s t u v w x y 6B 7B"},D:{"1":"bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","33":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB"},E:{"1":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","33":"I q J D E F A AC uB BC CC DC EC vB"},F:{"1":"C RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a MC nB","2":"F B IC JC KC LC mB 2B","33":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"33":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:2,C:"CSS grab & grabbing cursors"}; 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 1c50ba7c300ec9..2175a0fd4e6945 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":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","33":"5B oB I p J D E F A B C K L G M N O q r s t u 6B 7B"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","33":"0 1 2 3 4 5 6 7 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","33":"I p J D E 9B uB AC BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a LC mB","2":"F B HC IC JC KC lB 2B","33":"G M N O q r s t u"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"33":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:2,C:"CSS3 Cursors: zoom-in & zoom-out"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","33":"5B pB I q J D E F A B C K L G M N O r s t u v 6B 7B"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","33":"0 1 2 3 4 5 6 7 8 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","33":"I q J D E AC uB BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a MC nB","2":"F B IC JC KC LC mB 2B","33":"G M N O r s t u v"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"33":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:2,C:"CSS3 Cursors: zoom-in & zoom-out"}; 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 a68c5f16aca828..941afa6a625bc7 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":"J D E 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","260":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","4":"5B oB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","4":"I"},E:{"1":"p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","4":"I 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","260":"F B C HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D","16":"A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:2,C:"CSS3 Cursors (original values)"}; +module.exports={A:{A:{"1":"F A B","132":"J D E 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","260":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","4":"5B pB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","4":"I"},E:{"1":"q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","4":"I AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","260":"F B C IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D","16":"A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:2,C:"CSS3 Cursors (original values)"}; 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 c63210c327ddf4..4339e4aa2e6557 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B","33":"OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z","164":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r","132":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB"},E:{"1":"L G wB EC FC xB yB zB 0B nB 1B GC","2":"I p J 9B uB AC","132":"D E F A B C K BC CC DC vB lB mB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F HC IC JC","132":"G M N O q r s t u v w x y z","164":"B C KC lB 2B LC mB"},G:{"1":"cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC","132":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC"},H:{"164":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B","132":"lC mC"},J:{"132":"D A"},K:{"1":"c","2":"A","164":"B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"164":"1C"}},B:4,C:"CSS3 tab-size"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B","33":"PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z","164":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r s","132":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB"},E:{"1":"L G wB FC GC xB yB zB 0B oB 1B HC","2":"I q J AC uB BC","132":"D E F A B C K CC DC EC vB mB nB"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F IC JC KC","132":"0 G M N O r s t u v w x y z","164":"B C LC mB 2B MC nB"},G:{"1":"dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC","132":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC"},H:{"164":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B","132":"mC nC"},J:{"132":"D A"},K:{"1":"c","2":"A","164":"B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"164":"2C"}},B:4,C:"CSS3 tab-size"}; 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 fd4d693fa3d45c..e4012a6419e29a 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","2":"F"},G:{"1":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"CSS currentColor value"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","2":"F"},G:{"1":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"CSS currentColor value"}; 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 096e255c92901a..82827273af60d0 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":"J D E F 4B","8":"A B"},B:{"1":"P","2":"Q R S T U V W X Y Z a d e f g h i j k l m n o b H","8":"C K L G M N O"},C:{"2":"5B oB I p J D E F A B C K L G M N O q r s t pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","66":"0 u v w x y z","72":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P","2":"I p J D E F A B C K L G M N O q r s t u v w x Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","66":"0 1 2 3 y z"},E:{"2":"I p 9B uB AC","8":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB","2":"F B C ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","66":"G M N O q"},G:{"2":"uB MC 3B NC OC","8":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"mC","2":"oB I H hC iC jC kC 3B lC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC","2":"vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"2":"0C"},S:{"72":"1C"}},B:7,C:"Custom Elements (deprecated V0 spec)"}; +module.exports={A:{A:{"2":"J D E F 4B","8":"A B"},B:{"1":"P","2":"Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","8":"C K L G M N O"},C:{"2":"5B pB I q J D E F A B C K L G M N O r s t u qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","66":"0 1 v w x y z","72":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P","2":"I q J D E F A B C K L G M N O r s t u v w x y Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","66":"0 1 2 3 4 z"},E:{"2":"I q AC uB BC","8":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB","2":"F B C aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","66":"G M N O r"},G:{"2":"uB NC 3B OC PC","8":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"nC","2":"pB I H iC jC kC lC 3B mC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC","2":"wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"2":"1C"},S:{"72":"2C"}},B:7,C:"Custom Elements (deprecated V0 spec)"}; 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 f5e9d7f78745a4..a084af732cf8aa 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":"J D E F 4B","8":"A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","8":"C K L G M N O"},C:{"1":"WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","8":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB","456":"LB MB NB OB PB QB RB SB TB","712":"pB UB qB VB"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","8":"NB OB","132":"PB QB RB SB TB pB UB qB VB WB c XB YB"},E:{"2":"I p J D 9B uB AC BC CC","8":"E F A DC","132":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB HC IC JC KC lB 2B LC mB","132":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC","132":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I","132":"oC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"8":"1C"}},B:1,C:"Custom Elements (V1)"}; +module.exports={A:{A:{"2":"J D E F 4B","8":"A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","8":"C K L G M N O"},C:{"1":"XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","8":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB","456":"MB NB OB PB QB RB SB TB UB","712":"qB VB rB WB"},D:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","8":"OB PB","132":"QB RB SB TB UB qB VB rB WB XB c YB ZB"},E:{"2":"I q J D AC uB BC CC DC","8":"E F A EC","132":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB IC JC KC LC mB 2B MC nB","132":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC","132":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I","132":"pC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"8":"2C"}},B:1,C:"Custom Elements (V1)"}; 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 24c1caeeabf336..6fb5b9995baa8f 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":"J D E 4B","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p 6B 7B","132":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I","16":"p J D E K L","388":"F A B C"},E:{"1":"D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB","16":"p J","388":"AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a LC mB","2":"F HC IC JC KC","132":"B lB 2B"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"MC","16":"uB 3B","388":"NC"},H:{"1":"gC"},I:{"1":"H lC mC","2":"hC iC jC","388":"oB I kC 3B"},J:{"1":"A","388":"D"},K:{"1":"C c mB","2":"A","132":"B lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"CustomEvent"}; +module.exports={A:{A:{"2":"J D E 4B","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q 6B 7B","132":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I","16":"q J D E K L","388":"F A B C"},E:{"1":"D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB","16":"q J","388":"BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a MC nB","2":"F IC JC KC LC","132":"B mB 2B"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"NC","16":"uB 3B","388":"OC"},H:{"1":"hC"},I:{"1":"H mC nC","2":"iC jC kC","388":"pB I lC 3B"},J:{"1":"A","388":"D"},K:{"1":"C c nB","2":"A","132":"B mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"CustomEvent"}; 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 846b16366b4e57..eb74c0206ae401 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":"4B","8":"J D E F","260":"A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","260":"C K L G","1284":"M N O"},C:{"8":"5B oB 6B 7B","516":"n o b H sB tB","4612":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m"},D:{"1":"bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","8":"I p J D E F A B C K L G M N O q","132":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB"},E:{"1":"K L G mB wB EC FC xB yB zB 0B nB 1B GC","8":"I p J D E F A B C 9B uB AC BC CC DC vB lB"},F:{"1":"F B C c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","132":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},G:{"8":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC","2049":"YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H mC","8":"oB I hC iC jC kC 3B lC"},J:{"1":"A","8":"D"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"516":"b"},N:{"8":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:1,C:"Datalist element"}; +module.exports={A:{A:{"2":"4B","8":"J D E F","260":"A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","260":"C K L G","1284":"M N O"},C:{"8":"5B pB 6B 7B","516":"n o p b H tB","4612":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m"},D:{"1":"cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","8":"I q J D E F A B C K L G M N O r","132":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB"},E:{"1":"K L G nB wB FC GC xB yB zB 0B oB 1B HC","8":"I q J D E F A B C AC uB BC CC DC EC vB mB"},F:{"1":"F B C c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","132":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"8":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC","2049":"ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H nC","8":"pB I iC jC kC lC 3B mC"},J:{"1":"A","8":"D"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"516":"b"},N:{"8":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:1,C:"Datalist element"}; 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 8b37cdf520c10c..487c8db609aad2 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":"J D E F A 4B"},B:{"1":"C K L G M","129":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","4":"5B oB I p 6B 7B","129":"MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB","4":"I p J","129":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"4":"I p 9B uB","129":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"3 4 5 6 7 8 9 C AB BB CB lB 2B LC mB","4":"F B HC IC JC KC","129":"0 1 2 G M N O q r s t u v w x y z DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"4":"uB MC 3B","129":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"4":"gC"},I:{"4":"hC iC jC","129":"oB I H kC 3B lC mC"},J:{"129":"D A"},K:{"1":"C lB 2B mB","4":"A B","129":"c"},L:{"129":"H"},M:{"129":"b"},N:{"1":"B","4":"A"},O:{"129":"nC"},P:{"129":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"129":"wB"},R:{"129":"0C"},S:{"1":"1C"}},B:1,C:"dataset & data-* attributes"}; +module.exports={A:{A:{"1":"B","4":"J D E F A 4B"},B:{"1":"C K L G M","129":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","4":"5B pB I q 6B 7B","129":"NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"1":"HB IB JB KB LB MB NB OB PB QB","4":"I q J","129":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"4":"I q AC uB","129":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"4 5 6 7 8 9 C AB BB CB DB mB 2B MC nB","4":"F B IC JC KC LC","129":"0 1 2 3 G M N O r s t u v w x y z EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"4":"uB NC 3B","129":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"4":"hC"},I:{"4":"iC jC kC","129":"pB I H lC 3B mC nC"},J:{"129":"D A"},K:{"1":"C mB 2B nB","4":"A B","129":"c"},L:{"129":"H"},M:{"129":"b"},N:{"1":"B","4":"A"},O:{"129":"oC"},P:{"129":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"129":"wB"},R:{"129":"1C"},S:{"1":"2C"}},B:1,C:"dataset & data-* attributes"}; 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 73ef74e838d7eb..e08e1bdb4b2b07 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":"J D 4B","132":"E","260":"F A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","260":"C K G M N O","772":"L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"260":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"Data URIs"}; +module.exports={A:{A:{"2":"J D 4B","132":"E","260":"F A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","260":"C K G M N O","772":"L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"260":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"Data URIs"}; 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 0adb95e374848b..027d3ba3c3204a 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":"4B","132":"J D E F A B"},B:{"1":"O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","132":"C K L G M N"},C:{"1":"RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","132":"5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","260":"NB OB PB QB","772":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB"},D:{"1":"cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","132":"I p J D E F A B C K L G M N O q r s t u","260":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB","772":"0 1 2 3 4 5 6 7 8 v w x y z"},E:{"1":"C K L G mB wB EC FC xB yB zB 0B nB 1B GC","16":"I p 9B uB","132":"J D E F A AC BC CC DC","260":"B vB lB"},F:{"1":"SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","16":"F B C HC IC JC KC lB 2B LC","132":"mB","260":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","772":"G M N O q r s t u v"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB MC 3B NC","132":"E OC PC QC RC SC TC"},H:{"132":"gC"},I:{"1":"H","16":"oB hC iC jC","132":"I kC 3B","772":"lC mC"},J:{"132":"D A"},K:{"1":"c","16":"A B C lB 2B","132":"mB"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"nC"},P:{"1":"sC vB tC uC vC wC xC nB yC zC","260":"I oC pC qC rC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"132":"1C"}},B:6,C:"Date.prototype.toLocaleDateString"}; +module.exports={A:{A:{"16":"4B","132":"J D E F A B"},B:{"1":"O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","132":"C K L G M N"},C:{"1":"SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","132":"0 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","260":"OB PB QB RB","772":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},D:{"1":"dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","132":"I q J D E F A B C K L G M N O r s t u v","260":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB","772":"0 1 2 3 4 5 6 7 8 9 w x y z"},E:{"1":"C K L G nB wB FC GC xB yB zB 0B oB 1B HC","16":"I q AC uB","132":"J D E F A BC CC DC EC","260":"B vB mB"},F:{"1":"TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","16":"F B C IC JC KC LC mB 2B MC","132":"nB","260":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","772":"G M N O r s t u v w"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB NC 3B OC","132":"E PC QC RC SC TC UC"},H:{"132":"hC"},I:{"1":"H","16":"pB iC jC kC","132":"I lC 3B","772":"mC nC"},J:{"132":"D A"},K:{"1":"c","16":"A B C mB 2B","132":"nB"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"oC"},P:{"1":"tC vB uC vC wC xC yC oB zC 0C","260":"I pC qC rC sC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"132":"2C"}},B:6,C:"Date.prototype.toLocaleDateString"}; 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 c2df85c8b8be0b..05ae8b5c1ea3e0 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":"J D E F A B 4B"},B:{"1":"Z a d e f g h i j k l m n o b H","2":"C K L G M N O P Q R S T U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T","66":"U V W X Y"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B","16":"GC"},F:{"1":"jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"xC nB yC zC","2":"I oC pC qC rC sC vB tC uC vC wC"},Q:{"2":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:7,C:"Declarative Shadow DOM"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"Z a d e f g h i j k l m n o p b H","2":"C K L G M N O P Q R S T U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T","66":"U V W X Y"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B","16":"HC"},F:{"1":"kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"yC oB zC 0C","2":"I pC qC rC sC tC vB uC vC wC xC"},Q:{"2":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:7,C:"Declarative Shadow DOM"}; 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 f2d854064f0e50..57d194f040f581 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:7,C:"Decorators"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:7,C:"Decorators"}; 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 fee4c1725ff568..d303ab2460ba1c 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 4B","8":"J D E"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B","8":"0 1 2 3 4 5 6 7 8 9 oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB 6B 7B","194":"IB JB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","8":"I p J D E F A B","257":"0 1 2 3 4 5 6 q r s t u v w x y z","769":"C K L G M N O"},E:{"1":"C K L G mB wB EC FC xB yB zB 0B nB 1B GC","8":"I p 9B uB AC","257":"J D E F A BC CC DC","1025":"B vB lB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"C lB 2B LC mB","8":"F B HC IC JC KC"},G:{"1":"E OC PC QC RC SC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","8":"uB MC 3B NC","1025":"TC UC VC"},H:{"8":"gC"},I:{"1":"I H kC 3B lC mC","8":"oB hC iC jC"},J:{"1":"A","8":"D"},K:{"1":"c","8":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Details & Summary elements"}; +module.exports={A:{A:{"2":"F A B 4B","8":"J D E"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B","8":"0 1 2 3 4 5 6 7 8 9 pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB 6B 7B","194":"JB KB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","8":"I q J D E F A B","257":"0 1 2 3 4 5 6 7 r s t u v w x y z","769":"C K L G M N O"},E:{"1":"C K L G nB wB FC GC xB yB zB 0B oB 1B HC","8":"I q AC uB BC","257":"J D E F A CC DC EC","1025":"B vB mB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"C mB 2B MC nB","8":"F B IC JC KC LC"},G:{"1":"E PC QC RC SC TC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","8":"uB NC 3B OC","1025":"UC VC WC"},H:{"8":"hC"},I:{"1":"I H lC 3B mC nC","8":"pB iC jC kC"},J:{"1":"A","8":"D"},K:{"1":"c","8":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Details & Summary elements"}; 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 8baf24910cf927..8ffc542b26bcac 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":"J D E F A 4B","132":"B"},B:{"1":"C K L G M N O","4":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"5B oB 6B","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","8":"I p 7B"},D:{"2":"I p J","4":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"F B C HC IC JC KC lB 2B LC mB","4":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"uB MC","4":"E 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"hC iC jC","4":"oB I H kC 3B lC mC"},J:{"2":"D","4":"A"},K:{"1":"C mB","2":"A B lB 2B","4":"c"},L:{"4":"H"},M:{"4":"b"},N:{"1":"B","2":"A"},O:{"4":"nC"},P:{"4":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"4":"wB"},R:{"4":"0C"},S:{"4":"1C"}},B:4,C:"DeviceOrientation & DeviceMotion events"}; +module.exports={A:{A:{"2":"J D E F A 4B","132":"B"},B:{"1":"C K L G M N O","4":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"5B pB 6B","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","8":"I q 7B"},D:{"2":"I q J","4":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"F B C IC JC KC LC mB 2B MC nB","4":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"uB NC","4":"E 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"iC jC kC","4":"pB I H lC 3B mC nC"},J:{"2":"D","4":"A"},K:{"1":"C nB","2":"A B mB 2B","4":"c"},L:{"4":"H"},M:{"4":"b"},N:{"1":"B","2":"A"},O:{"4":"oC"},P:{"4":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"4":"wB"},R:{"4":"1C"},S:{"4":"2C"}},B:4,C:"DeviceOrientation & DeviceMotion events"}; 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 ef79c6b31b2d3d..7ada8732f6797a 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":"J D E F A 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a LC mB","2":"F B HC IC JC KC lB 2B"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"C c mB","2":"A B lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"Window.devicePixelRatio"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a MC nB","2":"F B IC JC KC LC mB 2B"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"C c nB","2":"A B mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"Window.devicePixelRatio"}; 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 80ff8fe950eb6f..c49dec4858b256 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 6B 7B","194":"OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P","1218":"Q R rB S T U V W X Y Z a d e f g h i"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 I p J D E F A B C K L G M N O q r s t u v w x y z","322":"3 4 5 6 7"},E:{"1":"yB zB 0B nB 1B GC","2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O HC IC JC KC lB 2B LC mB","578":"q r s t u"},G:{"1":"yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:1,C:"Dialog element"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB 6B 7B","194":"PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P","1218":"Q R sB S T U V W X Y Z a d e f g h i"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 I q J D E F A B C K L G M N O r s t u v w x y z","322":"4 5 6 7 8"},E:{"1":"yB zB 0B oB 1B HC","2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O IC JC KC LC mB 2B MC nB","578":"r s t u v"},G:{"1":"yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:1,C:"Dialog element"}; 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 a741ccbcf5e0ed..965bb61c270dbd 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":"4B","129":"F A","130":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","16":"F"},G:{"1":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB"},H:{"1":"gC"},I:{"1":"oB I H jC kC 3B lC mC","16":"hC iC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","129":"A"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"EventTarget.dispatchEvent"}; +module.exports={A:{A:{"1":"B","16":"4B","129":"F A","130":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","16":"F"},G:{"1":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB"},H:{"1":"hC"},I:{"1":"pB I H kC lC 3B mC nC","16":"iC jC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","129":"A"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"EventTarget.dispatchEvent"}; 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 dcd9863467acaa..571c4bd0b47f61 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":"J D E F A B 4B"},B:{"132":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"132":"2 3 4 5 6 7 8 9 I p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","388":"0 1 J D E F A B C K L G M N O q r s t u v w x y z"},E:{"132":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"132":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"132":"gC"},I:{"132":"oB I H hC iC jC kC 3B lC mC"},J:{"132":"D A"},K:{"132":"A B C c lB 2B mB"},L:{"132":"H"},M:{"132":"b"},N:{"132":"A B"},O:{"132":"nC"},P:{"132":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"132":"wB"},R:{"132":"0C"},S:{"132":"1C"}},B:6,C:"DNSSEC and DANE"}; +module.exports={A:{A:{"132":"J D E F A B 4B"},B:{"132":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"132":"3 4 5 6 7 8 9 I q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","388":"0 1 2 J D E F A B C K L G M N O r s t u v w x y z"},E:{"132":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"132":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"132":"hC"},I:{"132":"pB I H iC jC kC lC 3B mC nC"},J:{"132":"D A"},K:{"132":"A B C c mB 2B nB"},L:{"132":"H"},M:{"132":"b"},N:{"132":"A B"},O:{"132":"oC"},P:{"132":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"132":"wB"},R:{"132":"1C"},S:{"132":"2C"}},B:6,C:"DNSSEC and DANE"}; 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 afcdfb4afeefc8..d5ca9c4c7e1ce5 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":"J D E 4B","164":"F A","260":"B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","260":"C K L G M"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E 6B 7B","516":"0 1 2 F A B C K L G M N O q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r s t"},E:{"1":"J A B C AC DC vB lB","2":"I p K L G 9B uB mB wB EC FC xB yB zB 0B nB 1B GC","1028":"D E F BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"F B HC IC JC KC lB 2B LC"},G:{"1":"RC SC TC UC VC WC XC","2":"uB MC 3B NC OC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","1028":"E PC QC"},H:{"1":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"16":"D","1028":"A"},K:{"1":"c mB","16":"A B C lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"164":"A","260":"B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:7,C:"Do Not Track API"}; +module.exports={A:{A:{"2":"J D E 4B","164":"F A","260":"B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","260":"C K L G M"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E 6B 7B","516":"0 1 2 3 F A B C K L G M N O r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r s t u"},E:{"1":"J A B C BC EC vB mB","2":"I q K L G AC uB nB wB FC GC xB yB zB 0B oB 1B HC","1028":"D E F CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"F B IC JC KC LC mB 2B MC"},G:{"1":"SC TC UC VC WC XC YC","2":"uB NC 3B OC PC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","1028":"E QC RC"},H:{"1":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"16":"D","1028":"A"},K:{"1":"c nB","16":"A B C mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"164":"A","260":"B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:7,C:"Do Not Track API"}; 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 988ccd3c1b85c3..f5c54d0ac0a8da 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":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B"},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 NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"E F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D 9B uB AC BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G HC IC JC KC lB 2B LC mB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC PC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"document.currentScript"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"E F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D AC uB BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G IC JC KC LC mB 2B MC nB"},G:{"1":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC QC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"document.currentScript"}; 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 467c792a0f02a5..b1be853bf7e0c0 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":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","16":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","16":"F"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:7,C:"document.evaluate & XPath"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","16":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","16":"F"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:7,C:"document.evaluate & XPath"}; 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 7c27461d68ca31..cbf703f5ab471b 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":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"I p 9B uB AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a IC JC KC lB 2B LC mB","16":"F HC"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC","16":"3B NC OC"},H:{"2":"gC"},I:{"1":"H kC 3B lC mC","2":"oB I hC iC jC"},J:{"1":"A","2":"D"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:7,C:"Document.execCommand()"}; +module.exports={A:{A:{"1":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"I q AC uB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a JC KC LC mB 2B MC nB","16":"F IC"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC","16":"3B OC PC"},H:{"2":"hC"},I:{"1":"H lC 3B mC nC","2":"pB I iC jC kC"},J:{"1":"A","2":"D"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:7,C:"Document.execCommand()"}; 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 230cc32bc8ee11..0c8afdf71606cb 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T","132":"U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T","132":"U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB HC IC JC KC lB 2B LC mB","132":"dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B lC mC","132":"H"},J:{"2":"D A"},K:{"2":"A B C lB 2B mB","132":"c"},L:{"132":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"132":"0C"},S:{"2":"1C"}},B:7,C:"Document Policy"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T","132":"U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T","132":"U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB IC JC KC LC mB 2B MC nB","132":"eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B mC nC","132":"H"},J:{"2":"D A"},K:{"2":"A B C mB 2B nB","132":"c"},L:{"132":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"132":"1C"},S:{"2":"2C"}},B:7,C:"Document Policy"}; 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 c4df34ca1074d6..5b2c96005980e2 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":"J D E F A B 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","16":"C K"},C:{"1":"JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB 6B 7B"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E 9B uB AC BC CC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"document.scrollingElement"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","16":"C K"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 6B 7B"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E AC uB BC CC DC"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"document.scrollingElement"}; 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 32ddf679622546..b0c5d5c2ce6c95 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB","16":"p"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a lB 2B LC mB","2":"F HC IC JC KC"},G:{"1":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB"},H:{"1":"gC"},I:{"1":"oB I H jC kC 3B lC mC","16":"hC iC"},J:{"1":"D A"},K:{"1":"B C c lB 2B mB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"document.head"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB","16":"q"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a mB 2B MC nB","2":"F IC JC KC LC"},G:{"1":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB"},H:{"1":"hC"},I:{"1":"pB I H kC lC 3B mC nC","16":"iC jC"},J:{"1":"D A"},K:{"1":"B C c mB 2B nB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"document.head"}; 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 ee2c5b9b6524f9..35faba72c5a510 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":"J D E F A B 4B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M"},C:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 6B 7B"},D:{"1":"PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","194":"NB OB"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC DC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB HC IC JC KC lB 2B LC mB","194":"BB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I oC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:1,C:"DOM manipulation convenience methods"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M"},C:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 6B 7B"},D:{"1":"QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","194":"OB PB"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB 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 c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB IC JC KC LC mB 2B MC nB","194":"CB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:1,C:"DOM manipulation convenience methods"}; 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 c907d40ecd54bd..2ef9167d08ce8a 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":"4B","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Document Object Model Range"}; +module.exports={A:{A:{"1":"F A B","2":"4B","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Document Object Model Range"}; 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 fac5851b7ae6cb..d66f4b7aa492a7 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"DOMContentLoaded"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"DOMContentLoaded"}; 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 0912a4ec740d30..fe5b0d68e0b2e0 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":"J D E F 4B","132":"A B"},B:{"132":"C K L G M N O","1028":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","1028":"bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2564":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB","3076":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB"},D:{"16":"I p J D","132":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB","388":"E","1028":"qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"16":"I 9B uB","132":"p J D E F A AC BC CC DC vB","1028":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"F B C HC IC JC KC lB 2B LC mB","132":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB","1028":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"16":"uB MC 3B","132":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"132":"I kC 3B lC mC","292":"oB hC iC jC","1028":"H"},J:{"16":"D","132":"A"},K:{"2":"A B C lB 2B mB","1028":"c"},L:{"1028":"H"},M:{"1028":"b"},N:{"132":"A B"},O:{"1028":"nC"},P:{"132":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1028":"wB"},R:{"1028":"0C"},S:{"2564":"1C"}},B:4,C:"DOMMatrix"}; +module.exports={A:{A:{"2":"J D E F 4B","132":"A B"},B:{"132":"C K L G M N O","1028":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","1028":"cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2564":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB","3076":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB"},D:{"16":"I q J D","132":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB","388":"E","1028":"rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"16":"I AC uB","132":"q J D E F A BC CC DC EC vB","1028":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"F B C IC JC KC LC mB 2B MC nB","132":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","1028":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"16":"uB NC 3B","132":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"132":"I lC 3B mC nC","292":"pB iC jC kC","1028":"H"},J:{"16":"D","132":"A"},K:{"2":"A B C mB 2B nB","1028":"c"},L:{"1028":"H"},M:{"1028":"b"},N:{"132":"A B"},O:{"1028":"oC"},P:{"132":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1028":"wB"},R:{"1028":"1C"},S:{"2564":"2C"}},B:4,C:"DOMMatrix"}; 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 294315ee8104c8..d03c21ce9a03ba 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":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Download attribute"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Download attribute"}; 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 b83cc6f466301d..cd74a6b0e18de8 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":"J D E F 4B","772":"A B"},B:{"1":"O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","260":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","8":"5B oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","8":"F B HC IC JC KC lB 2B LC"},G:{"1":"fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B lC mC","1025":"H"},J:{"2":"D A"},K:{"1":"mB","8":"A B C lB 2B","1025":"c"},L:{"1025":"H"},M:{"2":"b"},N:{"1":"A B"},O:{"1025":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:1,C:"Drag and Drop"}; +module.exports={A:{A:{"644":"J D E F 4B","772":"A B"},B:{"1":"O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","260":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","8":"5B pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","8":"F B IC JC KC LC mB 2B MC"},G:{"1":"gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B mC nC","1025":"H"},J:{"2":"D A"},K:{"1":"nB","8":"A B C mB 2B","1025":"c"},L:{"1025":"H"},M:{"2":"b"},N:{"1":"A B"},O:{"1025":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:1,C:"Drag and Drop"}; 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 39d83b867f786c..844c6b4f49b400 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":"J D E F A B 4B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E 9B uB AC BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u v w x y HC IC JC KC lB 2B LC mB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Element.closest()"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E AC uB BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Element.closest()"}; 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 ad5f41d5552775..e94bfe823f2f19 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":"J D E F A B","16":"4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","16":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L"},E:{"1":"p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"I 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a lB 2B LC mB","16":"F HC IC JC KC"},G:{"1":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB"},H:{"1":"gC"},I:{"1":"oB I H jC kC 3B lC mC","16":"hC iC"},J:{"1":"D A"},K:{"1":"C c mB","16":"A B lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"document.elementFromPoint()"}; +module.exports={A:{A:{"1":"J D E F A B","16":"4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","16":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L"},E:{"1":"q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"I AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a mB 2B MC nB","16":"F IC JC KC LC"},G:{"1":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB"},H:{"1":"hC"},I:{"1":"pB I H kC lC 3B mC nC","16":"iC jC"},J:{"1":"D A"},K:{"1":"C c nB","16":"A B mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"document.elementFromPoint()"}; 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 52105e1472711e..d302ba885290c5 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB"},E:{"1":"L G EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC DC","132":"A B C K vB lB mB wB"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB HC IC JC KC lB 2B LC mB"},G:{"1":"eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC","132":"TC UC VC WC XC YC ZC aC bC cC dC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"rC sC vB tC uC vC wC xC nB yC zC","2":"I oC pC qC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"Scroll methods on elements (scroll, scrollTo, scrollBy)"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB"},E:{"1":"L G FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC EC","132":"A B C K vB mB nB wB"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB IC JC KC LC mB 2B MC nB"},G:{"1":"fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC","132":"UC VC WC XC YC ZC aC bC cC dC eC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC rC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"Scroll methods on elements (scroll, scrollTo, scrollBy)"}; 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 db6f1d71f95db1..16df18d135ab84 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":"J D E F A 4B","164":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 I p J D E F A B C K L G M N O q r s t u v w x y z","132":"6 7 8 9 AB BB CB"},E:{"1":"C K L G mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J 9B uB AC BC","164":"D E F A B CC DC vB lB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s HC IC JC KC lB 2B LC mB","132":"t u v w x y z"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"Encrypted Media Extensions"}; +module.exports={A:{A:{"2":"J D E F A 4B","164":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 I q J D E F A B C K L G M N O r s t u v w x y z","132":"7 8 9 AB BB CB DB"},E:{"1":"C K L G nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J AC uB BC CC","164":"D E F A B DC EC vB mB"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t IC JC KC LC mB 2B MC nB","132":"0 u v w x y z"},G:{"1":"XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"Encrypted Media Extensions"}; 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 ee62ba0bbf2860..7b129510472302 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":"J D E F A B","2":"4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:7,C:"EOT - Embedded OpenType fonts"}; +module.exports={A:{A:{"1":"J D E F A B","2":"4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:7,C:"EOT - Embedded OpenType fonts"}; 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 4859820a722d7c..55cc7d3f0655a2 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":"J D 4B","260":"F","1026":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","4":"5B oB 6B 7B","132":"I p J D E F A B C K L G M N O q r"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","4":"I p J D E F A B C K L G M N O","132":"q r s t"},E:{"1":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","4":"I p 9B uB AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","4":"F B C HC IC JC KC lB 2B LC","132":"mB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","4":"uB MC 3B NC"},H:{"132":"gC"},I:{"1":"H lC mC","4":"oB hC iC jC","132":"kC 3B","900":"I"},J:{"1":"A","4":"D"},K:{"1":"c","4":"A B C lB 2B","132":"mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"ECMAScript 5"}; +module.exports={A:{A:{"1":"A B","2":"J D 4B","260":"F","1026":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","4":"5B pB 6B 7B","132":"I q J D E F A B C K L G M N O r s"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","4":"I q J D E F A B C K L G M N O","132":"r s t u"},E:{"1":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","4":"I q AC uB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","4":"F B C IC JC KC LC mB 2B MC","132":"nB"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","4":"uB NC 3B OC"},H:{"132":"hC"},I:{"1":"H mC nC","4":"pB iC jC kC","132":"lC 3B","900":"I"},J:{"1":"A","4":"D"},K:{"1":"c","4":"A B C mB 2B","132":"nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"ECMAScript 5"}; 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 9079a0990a69d2..ade7dbd9e8db10 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":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB 6B 7B"},D:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB","132":"DB EB FB GB HB IB JB"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E 9B uB AC BC CC"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","132":"0 1 2 3 4 5 6"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"ES6 classes"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB 6B 7B"},D:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB","132":"EB FB GB HB IB JB KB"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E AC uB BC CC DC"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","132":"1 2 3 4 5 6 7"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"ES6 classes"}; 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 8d68293e286301..85054b656d4c2b 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":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t u v w 6B 7B"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u v w HC IC JC KC lB 2B LC mB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"ES6 Generators"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s t u v w x 6B 7B"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u v w x IC JC KC LC mB 2B MC nB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"ES6 Generators"}; 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 48674bbc36ed32..90c0986ad38716 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB 6B 7B","194":"YB"},D:{"1":"WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB"},E:{"1":"C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B 9B uB AC BC CC DC vB"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB HC IC JC KC lB 2B LC mB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"rC sC vB tC uC vC wC xC nB yC zC","2":"I oC pC qC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:6,C:"JavaScript modules: dynamic import()"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB 6B 7B","194":"ZB"},D:{"1":"XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB"},E:{"1":"C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B AC uB BC CC DC EC vB"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB IC JC KC LC mB 2B MC nB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC rC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:6,C:"JavaScript modules: dynamic import()"}; 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 b313e108f9e88b..fc9468fde59ad8 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L","4097":"M N O","4290":"G"},C:{"1":"UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB 6B 7B","322":"PB QB RB SB TB pB"},D:{"1":"qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB","194":"UB"},E:{"1":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC","3076":"vB"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB HC IC JC KC lB 2B LC mB","194":"IB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC","3076":"UC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"rC sC vB tC uC vC wC xC nB yC zC","2":"I oC pC qC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:1,C:"JavaScript modules via script tag"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L","4097":"M N O","4290":"G"},C:{"1":"VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB 6B 7B","322":"QB RB SB TB UB qB"},D:{"1":"rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB","194":"VB"},E:{"1":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC","3076":"vB"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB IC JC KC LC mB 2B MC nB","194":"JB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC","3076":"VC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC rC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:1,C:"JavaScript modules via script tag"}; 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 973acf7d5c7133..37d7b57a187d6d 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":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G 6B 7B","132":"M N O q r s t u v","260":"0 1 w x y z","516":"2"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O","1028":"0 1 2 3 4 q r s t u v w x y z"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E 9B uB AC BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB","1028":"G M N O q r"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC","1028":"kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"ES6 Number"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G 6B 7B","132":"M N O r s t u v w","260":"0 1 2 x y z","516":"3"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O","1028":"0 1 2 3 4 5 r s t u v w x y z"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E AC uB BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB","1028":"G M N O r s"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC","1028":"lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"ES6 Number"}; 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 b223f5942f9f06..9780734ff2e371 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":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB 6B 7B"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E 9B uB AC BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u v w x y HC IC JC KC lB 2B LC mB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"String.prototype.includes"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB 6B 7B"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E AC uB BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"String.prototype.includes"}; 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 a9486989ec1028..e35f0628985535 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":"J D E F A 4B","388":"B"},B:{"257":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","260":"C K L","769":"G M N O"},C:{"2":"5B oB I p 6B 7B","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","257":"PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"2":"I p J D E F A B C K L G M N O q r","4":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","257":"MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D 9B uB AC BC","4":"E F CC DC"},F:{"2":"F B C HC IC JC KC lB 2B LC mB","4":"0 1 2 3 4 5 6 7 8 G M N O q r s t u v w x y z","257":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC","4":"E PC QC RC SC"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B","4":"lC mC","257":"H"},J:{"2":"D","4":"A"},K:{"2":"A B C lB 2B mB","257":"c"},L:{"257":"H"},M:{"257":"b"},N:{"2":"A","388":"B"},O:{"257":"nC"},P:{"4":"I","257":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"257":"wB"},R:{"257":"0C"},S:{"4":"1C"}},B:6,C:"ECMAScript 2015 (ES6)"}; +module.exports={A:{A:{"2":"J D E F A 4B","388":"B"},B:{"257":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","260":"C K L","769":"G M N O"},C:{"2":"5B pB I q 6B 7B","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","257":"QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"2":"I q J D E F A B C K L G M N O r s","4":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","257":"NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D AC uB BC CC","4":"E F DC EC"},F:{"2":"F B C IC JC KC LC mB 2B MC nB","4":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z","257":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC","4":"E QC RC SC TC"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B","4":"mC nC","257":"H"},J:{"2":"D","4":"A"},K:{"2":"A B C mB 2B nB","257":"c"},L:{"257":"H"},M:{"257":"b"},N:{"2":"A","388":"B"},O:{"257":"oC"},P:{"4":"I","257":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"257":"wB"},R:{"257":"1C"},S:{"4":"2C"}},B:6,C:"ECMAScript 2015 (ES6)"}; 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 7e7855d0ee51dd..6aa79fff31e5eb 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p"},E:{"1":"p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a lB 2B LC mB","4":"F HC IC JC KC"},G:{"1":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"1":"D A"},K:{"1":"C c lB 2B mB","4":"A B"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Server-sent events"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q"},E:{"1":"q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a mB 2B MC nB","4":"F IC JC KC LC"},G:{"1":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"1":"D A"},K:{"1":"C c mB 2B nB","4":"A B"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Server-sent events"}; 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 987c6cf68c6d14..d219d787c9f95c 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"L G wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B C K 9B uB AC BC CC DC vB lB mB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:5,C:"ui-serif, ui-sans-serif, ui-monospace and ui-rounded values for font-family"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"L G wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B C K AC uB BC CC DC EC vB mB nB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:5,C:"ui-serif, ui-sans-serif, ui-monospace and ui-rounded values for font-family"}; 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 b08c6cbd59f216..86aa5ef171693f 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W","2":"C K L G M N O","1025":"X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB 6B 7B","260":"gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"1":"gB hB iB jB kB P Q R S T U V W","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB","132":"UB qB VB WB c XB YB ZB aB bB cB dB eB fB","1025":"X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B 9B uB AC BC CC DC vB","772":"C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"VB WB c XB YB ZB aB bB cB dB eB fB gB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB HC IC JC KC lB 2B LC mB","132":"IB JB KB LB MB NB OB PB QB RB SB TB UB","1025":"hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC","772":"WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1025":"H"},M:{"260":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"tC uC vC wC xC nB yC zC","2":"I oC pC qC","132":"rC sC vB"},Q:{"132":"wB"},R:{"1025":"0C"},S:{"2":"1C"}},B:7,C:"Feature Policy"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W","2":"C K L G M N O","1025":"X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB 6B 7B","260":"hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"1":"hB iB jB kB lB P Q R S T U V W","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB","132":"VB rB WB XB c YB ZB aB bB cB dB eB fB gB","1025":"X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B AC uB BC CC DC EC vB","772":"C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"WB XB c YB ZB aB bB cB dB eB fB gB hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB IC JC KC LC mB 2B MC nB","132":"JB KB LB MB NB OB PB QB RB SB TB UB VB","1025":"iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC","772":"XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1025":"H"},M:{"260":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"uC vC wC xC yC oB zC 0C","2":"I pC qC rC","132":"sC tC vB"},Q:{"132":"wB"},R:{"1025":"1C"},S:{"2":"2C"}},B:7,C:"Feature Policy"}; 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 ab48293bcb49b4..db79fd4d6a1303 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":"J D E F A B 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","1025":"AB","1218":"5 6 7 8 9"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB","260":"BB","772":"CB"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u v w x HC IC JC KC lB 2B LC mB","260":"y","772":"z"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Fetch"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","1025":"BB","1218":"6 7 8 9 AB"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB","260":"CB","772":"DB"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u v w x y IC JC KC LC mB 2B MC nB","260":"z","772":"0"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Fetch"}; 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 f514869fdbbfa6..cb9a637dcc4d05 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":"4B","132":"E F","388":"J D A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G","16":"M N O q"},E:{"1":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a IC JC KC lB 2B LC mB","16":"F HC"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC"},H:{"388":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"1":"A","2":"D"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A","260":"B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"disabled attribute of the fieldset element"}; +module.exports={A:{A:{"16":"4B","132":"E F","388":"J D A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G","16":"M N O r"},E:{"1":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a JC KC LC mB 2B MC nB","16":"F IC"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC"},H:{"388":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"1":"A","2":"D"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A","260":"B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"disabled attribute of the fieldset element"}; 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 44c86050a7d541..b0b905f242a584 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":"J D E F 4B","260":"A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","260":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B","260":"I p J D E F A B C K L G M N O q r s t u v w x y 7B"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p","260":"0 1 2 3 4 5 6 7 8 K L G M N O q r s t u v w x y z","388":"J D E F A B C"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB","260":"J D E F BC CC DC","388":"AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B HC IC JC KC","260":"C G M N O q r s t u v lB 2B LC mB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC","260":"E OC PC QC RC SC"},H:{"2":"gC"},I:{"1":"H mC","2":"hC iC jC","260":"lC","388":"oB I kC 3B"},J:{"260":"A","388":"D"},K:{"1":"c","2":"A B","260":"C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A","260":"B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"File API"}; +module.exports={A:{A:{"2":"J D E F 4B","260":"A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","260":"C K L G M N O"},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 NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B","260":"I q J D E F A B C K L G M N O r s t u v w x y z 7B"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q","260":"0 1 2 3 4 5 6 7 8 9 K L G M N O r s t u v w x y z","388":"J D E F A B C"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB","260":"J D E F CC DC EC","388":"BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B IC JC KC LC","260":"C G M N O r s t u v w mB 2B MC nB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC","260":"E PC QC RC SC TC"},H:{"2":"hC"},I:{"1":"H nC","2":"iC jC kC","260":"mC","388":"pB I lC 3B"},J:{"260":"A","388":"D"},K:{"1":"c","2":"A B","260":"C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A","260":"B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"File API"}; 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 ad3b2f71ee86bf..86b93a0092a74c 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":"J D E F 4B","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 7B","2":"5B oB 6B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p"},E:{"1":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a lB 2B LC mB","2":"F B HC IC JC KC"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC"},H:{"2":"gC"},I:{"1":"oB I H kC 3B lC mC","2":"hC iC jC"},J:{"1":"A","2":"D"},K:{"1":"C c lB 2B mB","2":"A B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"FileReader API"}; +module.exports={A:{A:{"2":"J D E F 4B","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 7B","2":"5B pB 6B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q"},E:{"1":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a mB 2B MC nB","2":"F B IC JC KC LC"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC"},H:{"2":"hC"},I:{"1":"pB I H lC 3B mC nC","2":"iC jC kC"},J:{"1":"A","2":"D"},K:{"1":"C c mB 2B nB","2":"A B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"FileReader API"}; 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 14769539d4db59..008cce8eb7d78d 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L"},E:{"1":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a LC mB","2":"F HC IC","16":"B JC KC lB 2B"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"1":"A","2":"D"},K:{"1":"C c 2B mB","2":"A","16":"B lB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"FileReaderSync"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L"},E:{"1":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a MC nB","2":"F IC JC","16":"B KC LC mB 2B"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"1":"A","2":"D"},K:{"1":"C c 2B nB","2":"A","16":"B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"FileReaderSync"}; 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 b6022500930806..79a3d082ebb285 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":"J D E F A B 4B"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"I p J D","33":"0 1 2 3 4 5 6 7 8 9 K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","36":"E F A B C"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"F B C HC IC JC KC lB 2B LC mB","33":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D","33":"A"},K:{"2":"A B C c lB 2B mB"},L:{"33":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"33":"nC"},P:{"2":"I","33":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"33":"0C"},S:{"2":"1C"}},B:7,C:"Filesystem & FileWriter API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"I q J D","33":"0 1 2 3 4 5 6 7 8 9 K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","36":"E F A B C"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"F B C IC JC KC LC mB 2B MC nB","33":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D","33":"A"},K:{"2":"A B C c mB 2B nB"},L:{"33":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"33":"oC"},P:{"2":"I","33":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"33":"1C"},S:{"2":"2C"}},B:7,C:"Filesystem & FileWriter API"}; 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 100236e96c1a8a..d18dd379889a6f 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":"J D E F A B 4B"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G"},C:{"1":"MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 6B 7B"},D:{"1":"RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB","16":"FB GB HB","388":"IB JB KB LB MB NB OB PB QB"},E:{"1":"K L G wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC vB","516":"B C lB mB"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB HC IC JC KC lB 2B LC mB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC"},H:{"2":"gC"},I:{"1":"H","2":"hC iC jC","16":"oB I kC 3B lC mC"},J:{"1":"A","2":"D"},K:{"1":"c mB","16":"A B C lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","129":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:6,C:"FLAC audio format"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G"},C:{"1":"NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 6B 7B"},D:{"1":"SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB","16":"GB HB IB","388":"JB KB LB MB NB OB PB QB RB"},E:{"1":"K L G wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC vB","516":"B C mB nB"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB IC JC KC LC mB 2B MC nB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC"},H:{"2":"hC"},I:{"1":"H","2":"iC jC kC","16":"pB I lC 3B mC nC"},J:{"1":"A","2":"D"},K:{"1":"c nB","16":"A B C mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","129":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:6,C:"FLAC audio format"}; 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 e2e160b6a92316..fff88b27928b77 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":"J D E F A B 4B"},B:{"1":"T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O P Q R S"},C:{"1":"WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB 6B 7B"},D:{"1":"T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S"},E:{"1":"G EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B C K L 9B uB AC BC CC DC vB lB mB wB"},F:{"1":"cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB HC IC JC KC lB 2B LC mB"},G:{"1":"eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"wC xC nB yC zC","2":"I oC pC qC rC sC vB tC uC vC"},Q:{"2":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"gap property for Flexbox"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O P Q R S"},C:{"1":"XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB 6B 7B"},D:{"1":"T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S"},E:{"1":"G FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B C K L AC uB BC CC DC EC vB mB nB wB"},F:{"1":"dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB IC JC KC LC mB 2B MC nB"},G:{"1":"fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"xC yC oB zC 0C","2":"I pC qC rC sC tC vB uC vC wC"},Q:{"2":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"gap property for Flexbox"}; 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 9daf35e01f1da5..a37db16c80cec2 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":"J D E F 4B","1028":"B","1316":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","164":"5B oB I p J D E F A B C K L G M N O q r s 6B 7B","516":"t u v w x y"},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 NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","33":"s t u v w x y z","164":"I p J D E F A B C K L G M N O q r"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","33":"D E BC CC","164":"I p J 9B uB AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"F B C HC IC JC KC lB 2B LC","33":"G M"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","33":"E PC QC","164":"uB MC 3B NC OC"},H:{"1":"gC"},I:{"1":"H lC mC","164":"oB I hC iC jC kC 3B"},J:{"1":"A","164":"D"},K:{"1":"c mB","2":"A B C lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","292":"A"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"CSS Flexible Box Layout Module"}; +module.exports={A:{A:{"2":"J D E F 4B","1028":"B","1316":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b 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 NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","164":"5B pB I q J D E F A B C K L G M N O r s t 6B 7B","516":"u v w x y z"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","33":"0 t u v w x y z","164":"I q J D E F A B C K L G M N O r s"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","33":"D E CC DC","164":"I q J AC uB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"F B C IC JC KC LC mB 2B MC","33":"G M"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","33":"E QC RC","164":"uB NC 3B OC PC"},H:{"1":"hC"},I:{"1":"H mC nC","164":"pB I iC jC kC lC 3B"},J:{"1":"A","164":"D"},K:{"1":"c nB","2":"A B C mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","292":"A"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"CSS Flexible Box Layout Module"}; 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 5a50102b24130d..da69c211b48b14 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 6B 7B"},D:{"1":"TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"1":"K L G wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B C 9B uB AC BC CC DC vB lB mB"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB HC IC JC KC lB 2B LC mB"},G:{"1":"ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"qC rC sC vB tC uC vC wC xC nB yC zC","2":"I oC pC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:4,C:"display: flow-root"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB 6B 7B"},D:{"1":"UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},E:{"1":"K L G wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B C AC uB BC CC DC EC vB mB nB"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB IC JC KC LC mB 2B MC nB"},G:{"1":"aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:4,C:"display: flow-root"}; 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 a3deb8536c1bbf..e1390e62bfafc3 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":"J D E F A B","2":"4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L"},E:{"1":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"I p 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a LC mB","2":"F HC IC JC KC","16":"B lB 2B"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B"},H:{"2":"gC"},I:{"1":"I H kC 3B lC mC","2":"hC iC jC","16":"oB"},J:{"1":"D A"},K:{"1":"C c mB","2":"A","16":"B lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"focusin & focusout events"}; +module.exports={A:{A:{"1":"J D E F A B","2":"4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L"},E:{"1":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"I q AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a MC nB","2":"F IC JC KC LC","16":"B mB 2B"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B"},H:{"2":"hC"},I:{"1":"I H lC 3B mC nC","2":"iC jC kC","16":"pB"},J:{"1":"D A"},K:{"1":"C c nB","2":"A","16":"B mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"focusin & focusout events"}; 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 ec0cf3e7bcae90..39068775294d68 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB 6B 7B","132":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},D:{"1":"RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","260":"OB PB QB"},E:{"1":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E 9B uB AC BC CC","16":"F","132":"A DC vB"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB HC IC JC KC lB 2B LC mB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC","132":"RC SC TC UC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I oC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"132":"1C"}},B:5,C:"system-ui value for font-family"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB 6B 7B","132":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},D:{"1":"SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","260":"PB QB RB"},E:{"1":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E AC uB BC CC DC","16":"F","132":"A EC vB"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB IC JC KC LC mB 2B MC nB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC","132":"SC TC UC VC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"132":"2C"}},B:5,C:"system-ui value for font-family"}; 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 457068b776657c..95ace1237103f6 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B","33":"0 1 2 3 4 G M N O q r s t u v w x y z","164":"I p J D E F A B C K L"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G","33":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB","292":"M N O q r"},E:{"1":"A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"D E F 9B uB BC CC","4":"I p J AC"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB","33":"0 1 2 3 4 5 G M N O q r s t u v w x y z"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E PC QC RC","4":"uB MC 3B NC OC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B","33":"lC mC"},J:{"2":"D","33":"A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","33":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"CSS font-feature-settings"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B","33":"0 1 2 3 4 5 G M N O r s t u v w x y z","164":"I q J D E F A B C K L"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G","33":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB","292":"M N O r s"},E:{"1":"A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"D E F AC uB CC DC","4":"I q J BC"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB","33":"0 1 2 3 4 5 6 G M N O r s t u v w x y z"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E QC RC SC","4":"uB NC 3B OC PC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B","33":"mC nC"},J:{"2":"D","33":"A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","33":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"CSS font-feature-settings"}; 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 f54a4559f87f3d..3ce23b26b0e768 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t u 6B 7B","194":"0 1 2 3 4 v w x y z"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r s t u v w x y z","33":"0 1 2 3"},E:{"1":"A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J 9B uB AC BC","33":"D E F CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G HC IC JC KC lB 2B LC mB","33":"M N O q"},G:{"1":"XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC PC","33":"E QC RC SC TC UC VC WC"},H:{"2":"gC"},I:{"1":"H mC","2":"oB I hC iC jC kC 3B","33":"lC"},J:{"2":"D","33":"A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"CSS3 font-kerning"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s t u v 6B 7B","194":"0 1 2 3 4 5 w x y z"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 I q J D E F A B C K L G M N O r s t u v w x y z","33":"1 2 3 4"},E:{"1":"A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J AC uB BC CC","33":"D E F DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G IC JC KC LC mB 2B MC nB","33":"M N O r"},G:{"1":"YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC QC","33":"E RC SC TC UC VC WC XC"},H:{"2":"hC"},I:{"1":"H nC","2":"pB I iC jC kC lC 3B","33":"mC"},J:{"2":"D","33":"A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"CSS3 font-kerning"}; 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 ebcf03cd12b4e5..365094de16e816 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","194":"6 7 8 9 AB BB"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s HC IC JC KC lB 2B LC mB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"CSS Font Loading"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","194":"7 8 9 AB BB CB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t IC JC KC LC mB 2B MC nB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"CSS Font Loading"}; 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 7599cf2dce6dee..6a884c2cc60cba 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":"J D E F A B 4B"},B:{"2":"C K L G M N O","194":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","2":"5B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB","194":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","194":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"194":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:2,C:"CSS font-size-adjust"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O","194":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","2":"5B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB","194":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","194":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"194":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:2,C:"CSS font-size-adjust"}; 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 e754abc8c2574d..e7539c42c5876e 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":"J D E F A B 4B"},B:{"2":"C K L G M N O","676":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"5B oB I p J D E F A B C K L G M N O q r s t u v 6B 7B","804":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"2":"I","676":"0 1 2 3 4 5 6 7 8 9 p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"9B uB","676":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"F B C HC IC JC KC lB 2B LC mB","676":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"804":"1C"}},B:7,C:"CSS font-smooth"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O","676":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"5B pB I q J D E F A B C K L G M N O r s t u v w 6B 7B","804":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"2":"I","676":"0 1 2 3 4 5 6 7 8 9 q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"AC uB","676":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"F B C IC JC KC LC mB 2B MC nB","676":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"804":"2C"}},B:7,C:"CSS font-smooth"}; 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 f7b9fa56153b46..ab847e0772232f 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":"J D E 4B","4":"F A B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","4":"C K L G M"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","194":"7 8 9 AB BB CB DB EB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","4":"0 1 2 3 4 5 6 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","4":"I p J D E F 9B uB AC BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB","4":"G M N O q r s t"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","4":"E uB MC 3B NC OC PC QC RC SC"},H:{"2":"gC"},I:{"1":"H","4":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D","4":"A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"4":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","4":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"Font unicode-range subsetting"}; +module.exports={A:{A:{"2":"J D E 4B","4":"F A B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","4":"C K L G M"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","194":"8 9 AB BB CB DB EB FB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","4":"0 1 2 3 4 5 6 7 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","4":"I q J D E F AC uB BC CC DC EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB","4":"G M N O r s t u"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","4":"E uB NC 3B OC PC QC RC SC TC"},H:{"2":"hC"},I:{"1":"H","4":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D","4":"A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"4":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","4":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"Font unicode-range subsetting"}; 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 0aa4c329740c43..f768b82ab9488c 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":"J D E F 4B","130":"A B"},B:{"130":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B","130":"I p J D E F A B C K L G M N O q r s t u","322":"0 1 2 3 4 v w x y z"},D:{"2":"I p J D E F A B C K L G","130":"0 1 2 3 4 5 6 7 8 9 M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"D E F 9B uB BC CC","130":"I p J AC"},F:{"2":"F B C HC IC JC KC lB 2B LC mB","130":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB PC QC RC","130":"MC 3B NC OC"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B","130":"H lC mC"},J:{"2":"D","130":"A"},K:{"2":"A B C lB 2B mB","130":"c"},L:{"130":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"130":"nC"},P:{"130":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"130":"wB"},R:{"130":"0C"},S:{"1":"1C"}},B:5,C:"CSS font-variant-alternates"}; +module.exports={A:{A:{"2":"J D E F 4B","130":"A B"},B:{"130":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B","130":"I q J D E F A B C K L G M N O r s t u v","322":"0 1 2 3 4 5 w x y z"},D:{"2":"I q J D E F A B C K L G","130":"0 1 2 3 4 5 6 7 8 9 M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"D E F AC uB CC DC","130":"I q J BC"},F:{"2":"F B C IC JC KC LC mB 2B MC nB","130":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB QC RC SC","130":"NC 3B OC PC"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B","130":"H mC nC"},J:{"2":"D","130":"A"},K:{"2":"A B C mB 2B nB","130":"c"},L:{"130":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"130":"oC"},P:{"130":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"130":"wB"},R:{"130":"1C"},S:{"1":"2C"}},B:5,C:"CSS font-variant-alternates"}; 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 1fad2aed8272ea..61412ac5e3c225 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC"},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 c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D","16":"A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I oC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"CSS font-variant-numeric"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC"},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 c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB IC JC KC LC mB 2B MC nB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D","16":"A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"CSS font-variant-numeric"}; 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 469bf3af30d1ae..871d1b4495747f 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","2":"5B oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a IC JC KC lB 2B LC mB","2":"F HC"},G:{"1":"E 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","260":"uB MC"},H:{"2":"gC"},I:{"1":"I H kC 3B lC mC","2":"hC","4":"oB iC jC"},J:{"1":"A","4":"D"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"@font-face Web fonts"}; +module.exports={A:{A:{"1":"F A B","132":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","2":"5B pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a JC KC LC mB 2B MC nB","2":"F IC"},G:{"1":"E 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","260":"uB NC"},H:{"2":"hC"},I:{"1":"I H lC 3B mC nC","2":"iC","4":"pB jC kC"},J:{"1":"A","4":"D"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"@font-face Web fonts"}; 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 8d9561dc8f2e3a..3412552395fb2e 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":"J D E F A B 4B"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F"},E:{"1":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB","16":"p"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","2":"F"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B"},H:{"1":"gC"},I:{"1":"oB I H kC 3B lC mC","2":"hC iC jC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Form attribute"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F"},E:{"1":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB","16":"q"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","2":"F"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B"},H:{"1":"hC"},I:{"1":"pB I H lC 3B mC nC","2":"iC jC kC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Form attribute"}; 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 6fd7570a87290c..02880899496b88 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L"},E:{"1":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a KC lB 2B LC mB","2":"F HC","16":"IC JC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B"},H:{"1":"gC"},I:{"1":"I H kC 3B lC mC","2":"hC iC jC","16":"oB"},J:{"1":"A","2":"D"},K:{"1":"B C c lB 2B mB","16":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Attributes for form submission"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L"},E:{"1":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a LC mB 2B MC nB","2":"F IC","16":"JC KC"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B"},H:{"1":"hC"},I:{"1":"I H lC 3B mC nC","2":"iC jC kC","16":"pB"},J:{"1":"A","2":"D"},K:{"1":"B C c mB 2B nB","16":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Attributes for form submission"}; 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 9cd5095373aa41..822a6430ad19f4 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB","132":"p J D E F A AC BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a IC JC KC lB 2B LC mB","2":"F HC"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB","132":"E MC 3B NC OC PC QC RC SC TC"},H:{"516":"gC"},I:{"1":"H mC","2":"oB hC iC jC","132":"I kC 3B lC"},J:{"1":"A","132":"D"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"260":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"132":"1C"}},B:1,C:"Form validation"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB","132":"q J D E F A BC CC DC EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a JC KC LC mB 2B MC nB","2":"F IC"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB","132":"E NC 3B OC PC QC RC SC TC UC"},H:{"516":"hC"},I:{"1":"H nC","2":"pB iC jC kC","132":"I lC 3B mC"},J:{"1":"A","132":"D"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"260":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"132":"2C"}},B:1,C:"Form validation"}; 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 abab3f1eecdc50..1ad389b813dacc 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":"4B","4":"A B","8":"J D E F"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","4":"C K L G"},C:{"4":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","8":"5B oB 6B 7B"},D:{"1":"qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","4":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB"},E:{"4":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","8":"9B uB"},F:{"1":"F B C NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","4":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},G:{"2":"uB","4":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B","4":"lC mC"},J:{"2":"D","4":"A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"4":"b"},N:{"4":"A B"},O:{"1":"nC"},P:{"1":"rC sC vB tC uC vC wC xC nB yC zC","4":"I oC pC qC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"4":"1C"}},B:1,C:"HTML5 form features"}; +module.exports={A:{A:{"2":"4B","4":"A B","8":"J D E F"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","4":"C K L G"},C:{"4":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","8":"5B pB 6B 7B"},D:{"1":"rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","4":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB"},E:{"4":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","8":"AC uB"},F:{"1":"F B C OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","4":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},G:{"2":"uB","4":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B","4":"mC nC"},J:{"2":"D","4":"A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"4":"b"},N:{"4":"A B"},O:{"1":"oC"},P:{"1":"sC tC vB uC vC wC xC yC oB zC 0C","4":"I pC qC rC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"4":"2C"}},B:1,C:"HTML5 form features"}; 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 0c77b235239618..bbdef1ce84c3f3 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":"J D E F A 4B","548":"B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","516":"C K L G M N O"},C:{"1":"c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F 6B 7B","676":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB","1700":"IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB"},D:{"1":"dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L","676":"G M N O q","804":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB"},E:{"2":"I p 9B uB","548":"yB zB 0B nB 1B GC","676":"AC","804":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB"},F:{"1":"c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"F B C HC IC JC KC lB 2B LC","804":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z 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 uB MC 3B NC OC PC QC RC SC TC UC VC WC","2052":"XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D","292":"A"},K:{"2":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A","548":"B"},O:{"1":"nC"},P:{"1":"vB tC uC vC wC xC nB yC zC","804":"I oC pC qC rC sC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Full Screen API"}; +module.exports={A:{A:{"2":"J D E F A 4B","548":"B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","516":"C K L G M N O"},C:{"1":"c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F 6B 7B","676":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB","1700":"JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB"},D:{"1":"eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L","676":"G M N O r","804":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB"},E:{"2":"I q AC uB","548":"yB zB 0B oB 1B HC","676":"BC","804":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB"},F:{"1":"c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"F B C IC JC KC LC mB 2B MC","804":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC","2052":"YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D","292":"A"},K:{"2":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A","548":"B"},O:{"1":"oC"},P:{"1":"vB uC vC wC xC yC oB zC 0C","804":"I pC qC rC sC tC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Full Screen API"}; 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 16d9335d19c768..561971bc5b4066 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":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b 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 NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r","33":"s t u v"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u HC IC JC KC lB 2B LC mB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"Gamepad API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r s","33":"t u v w"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u v IC JC KC LC mB 2B MC nB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"Gamepad API"}; 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 65a04b25782f3b..c3066ecbfdcdf3 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":"4B","8":"J D E"},B:{"1":"C K L G M N O","129":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB 6B 7B","8":"5B oB","129":"QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","4":"I","129":"LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"p J D E F B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","8":"I 9B uB","129":"A"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C M N O q r s t u v w x y z KC lB 2B LC mB","2":"F G HC","8":"IC JC","129":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"1":"E uB MC 3B NC OC PC QC RC SC","129":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"oB I hC iC jC kC 3B lC mC","129":"H"},J:{"1":"D A"},K:{"1":"B C lB 2B mB","8":"A","129":"c"},L:{"129":"H"},M:{"129":"b"},N:{"1":"A B"},O:{"129":"nC"},P:{"1":"I","129":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"129":"wB"},R:{"129":"0C"},S:{"1":"1C"}},B:2,C:"Geolocation"}; +module.exports={A:{A:{"1":"F A B","2":"4B","8":"J D E"},B:{"1":"C K L G M N O","129":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB 6B 7B","8":"5B pB","129":"RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","4":"I","129":"MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"q J D E F B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","8":"I AC uB","129":"A"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C M N O r s t u v w x y z AB LC mB 2B MC nB","2":"F G IC","8":"JC KC","129":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"1":"E uB NC 3B OC PC QC RC SC TC","129":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"pB I iC jC kC lC 3B mC nC","129":"H"},J:{"1":"D A"},K:{"1":"B C mB 2B nB","8":"A","129":"c"},L:{"129":"H"},M:{"129":"b"},N:{"1":"A B"},O:{"129":"oC"},P:{"1":"I","129":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"129":"wB"},R:{"129":"1C"},S:{"1":"2C"}},B:2,C:"Geolocation"}; 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 8fc28b364507ea..808e54c9078ccc 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":"J D 4B","2049":"F A B","2692":"E"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2049":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B","260":"I p J D E F A B","1156":"oB","1284":"6B","1796":"7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a KC lB 2B LC mB","16":"F HC","132":"IC JC"},G:{"1":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB"},H:{"1":"gC"},I:{"1":"oB I H jC kC 3B lC mC","16":"hC iC"},J:{"1":"D A"},K:{"1":"B C c lB 2B mB","132":"A"},L:{"1":"H"},M:{"1":"b"},N:{"2049":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"Element.getBoundingClientRect()"}; +module.exports={A:{A:{"644":"J D 4B","2049":"F A B","2692":"E"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2049":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B","260":"I q J D E F A B","1156":"pB","1284":"6B","1796":"7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a LC mB 2B MC nB","16":"F IC","132":"JC KC"},G:{"1":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB"},H:{"1":"hC"},I:{"1":"pB I H kC lC 3B mC nC","16":"iC jC"},J:{"1":"D A"},K:{"1":"B C c mB 2B nB","132":"A"},L:{"1":"H"},M:{"1":"b"},N:{"2049":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"Element.getBoundingClientRect()"}; 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 47952c9a631140..25ea65e6961a2d 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B","132":"oB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","260":"I p J D E F A"},E:{"1":"p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","260":"I 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a KC lB 2B LC mB","260":"F HC IC JC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","260":"uB MC 3B"},H:{"260":"gC"},I:{"1":"I H kC 3B lC mC","260":"oB hC iC jC"},J:{"1":"A","260":"D"},K:{"1":"B C c lB 2B mB","260":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"getComputedStyle"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B","132":"pB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","260":"I q J D E F A"},E:{"1":"q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","260":"I AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a LC mB 2B MC nB","260":"F IC JC KC"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","260":"uB NC 3B"},H:{"260":"hC"},I:{"1":"I H lC 3B mC nC","260":"pB iC jC kC"},J:{"1":"A","260":"D"},K:{"1":"B C c mB 2B nB","260":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"getComputedStyle"}; 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 6bf1a4f1fc35b2..05d6d76a1b7c53 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":"4B","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","8":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","2":"F"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"getElementsByClassName"}; +module.exports={A:{A:{"1":"F A B","2":"4B","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","8":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","2":"F"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"getElementsByClassName"}; 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 05a71dfa5e1cd4..c13c20e5d6c8da 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":"J D E F A 4B","33":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A"},E:{"1":"D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J 9B uB AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A","33":"B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"crypto.getRandomValues()"}; +module.exports={A:{A:{"2":"J D E F A 4B","33":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A"},E:{"1":"D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J AC uB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A","33":"B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"crypto.getRandomValues()"}; 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 15f55c9db2478d..e0d4e6f65bac60 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","194":"TB pB UB qB VB WB c XB YB"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:4,C:"Gyroscope"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","194":"UB qB VB rB WB XB c YB ZB"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:4,C:"Gyroscope"}; 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 b2357f025dcd3f..ed5968d54297aa 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":"J D E F A B 4B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L"},C:{"1":"JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB 6B 7B"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"2":"I p J D 9B uB AC BC CC","129":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","194":"E F A DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u HC IC JC KC lB 2B LC mB"},G:{"2":"uB MC 3B NC OC PC","129":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","194":"E QC RC SC TC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"navigator.hardwareConcurrency"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 6B 7B"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"2":"I q J D AC uB BC CC DC","129":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","194":"E F A EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u v IC JC KC LC mB 2B MC nB"},G:{"2":"uB NC 3B OC PC QC","129":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","194":"E RC SC TC UC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"navigator.hardwareConcurrency"}; 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 c24bc158aacf55..b4bbff7c7e2dd4 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":"J D 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 7B","8":"5B oB 6B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","8":"I"},E:{"1":"p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","8":"I 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a KC lB 2B LC mB","8":"F HC IC JC"},G:{"1":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB"},H:{"2":"gC"},I:{"1":"oB I H iC jC kC 3B lC mC","2":"hC"},J:{"1":"D A"},K:{"1":"B C c lB 2B mB","8":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Hashchange event"}; +module.exports={A:{A:{"1":"E F A B","8":"J D 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 7B","8":"5B pB 6B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","8":"I"},E:{"1":"q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","8":"I AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a LC mB 2B MC nB","8":"F IC JC KC"},G:{"1":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB"},H:{"2":"hC"},I:{"1":"pB I H jC kC lC 3B mC nC","2":"iC"},J:{"1":"D A"},K:{"1":"B C c mB 2B nB","8":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Hashchange event"}; 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 95527dd7eea795..4573fd03d8f56d 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A 9B uB AC BC CC DC vB","130":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC","130":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:6,C:"HEIF/ISO Base Media File Format"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A AC uB BC CC DC EC vB","130":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC","130":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:6,C:"HEIF/ISO Base Media File Format"}; 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 a82ad18e275619..6e7ab33ccf9e22 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":"J D E F A 4B","132":"B"},B:{"132":"C K L G M N O","1028":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b","2052":"H sB tB 8B"},E:{"1":"K L G wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC vB","516":"B C lB mB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B lC mC","258":"H"},J:{"2":"D A"},K:{"2":"A B C lB 2B mB","258":"c"},L:{"260":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I","258":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:6,C:"HEVC/H.265 video format"}; +module.exports={A:{A:{"2":"J D E F A 4B","132":"B"},B:{"132":"C K L G M N O","1028":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2052":"tB 8B 9B"},E:{"1":"K L G wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC vB","516":"B C mB nB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B mC nC","258":"H"},J:{"2":"D A"},K:{"2":"A B C mB 2B nB","258":"c"},L:{"258":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I","258":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:6,C:"HEVC/H.265 video format"}; 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 ebcc7130b115fc..dc8c488b65c4ef 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":"J D E F A 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p"},E:{"1":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a lB 2B LC mB","2":"F B HC IC JC KC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B"},H:{"1":"gC"},I:{"1":"I H kC 3B lC mC","2":"oB hC iC jC"},J:{"1":"A","2":"D"},K:{"1":"C c lB 2B mB","2":"A B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"hidden attribute"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q"},E:{"1":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a mB 2B MC nB","2":"F B IC JC KC LC"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B"},H:{"1":"hC"},I:{"1":"I H lC 3B mC nC","2":"pB iC jC kC"},J:{"1":"A","2":"D"},K:{"1":"C c mB 2B nB","2":"A B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"hidden attribute"}; 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 98f729ee019b32..c041f3b8444f2d 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q","33":"r s t u"},E:{"1":"E F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D 9B uB AC BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC PC QC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"High Resolution Time API"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r","33":"s t u v"},E:{"1":"E F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D AC uB BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC QC RC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"High Resolution Time API"}; 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 1d631c2ce2a16e..525ac45749ba15 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I"},E:{"1":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB","4":"p AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a 2B LC mB","2":"F B HC IC JC KC lB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC","4":"3B"},H:{"2":"gC"},I:{"1":"H iC jC 3B lC mC","2":"oB I hC kC"},J:{"1":"D A"},K:{"1":"C c lB 2B mB","2":"A B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Session history management"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I"},E:{"1":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB","4":"q BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a 2B MC nB","2":"F B IC JC KC LC mB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC","4":"3B"},H:{"2":"hC"},I:{"1":"H jC kC 3B mC nC","2":"pB I iC lC"},J:{"1":"D A"},K:{"1":"C c mB 2B nB","2":"A B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Session history management"}; 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 2f6cf8ca517119..a9aade33d3c217 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"uB MC 3B NC","129":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"oB I H kC 3B lC mC","2":"hC","257":"iC jC"},J:{"1":"A","16":"D"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"516":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"16":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:2,C:"HTML Media Capture"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"uB NC 3B OC","129":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"pB I H lC 3B mC nC","2":"iC","257":"jC kC"},J:{"1":"A","16":"D"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"516":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"16":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:2,C:"HTML Media Capture"}; 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 5350fc53e50501..e88e5c949df8cc 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":"4B","8":"J D E","260":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B","132":"oB 6B 7B","260":"I p J D E F A B C K L G M N O q r"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","132":"I p","260":"J D E F A B C K L G M N O q r s t u v w"},E:{"1":"D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","132":"I 9B uB","260":"p J AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","132":"F B HC IC JC KC","260":"C lB 2B LC mB"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","132":"uB","260":"MC 3B NC OC"},H:{"132":"gC"},I:{"1":"H lC mC","132":"hC","260":"oB I iC jC kC 3B"},J:{"260":"D A"},K:{"1":"c","132":"A","260":"B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"260":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"HTML5 semantic elements"}; +module.exports={A:{A:{"2":"4B","8":"J D E","260":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B","132":"pB 6B 7B","260":"I q J D E F A B C K L G M N O r s"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","132":"I q","260":"J D E F A B C K L G M N O r s t u v w x"},E:{"1":"D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","132":"I AC uB","260":"q J BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","132":"F B IC JC KC LC","260":"C mB 2B MC nB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","132":"uB","260":"NC 3B OC PC"},H:{"132":"hC"},I:{"1":"H mC nC","132":"iC","260":"pB I jC kC lC 3B"},J:{"260":"D A"},K:{"1":"c","132":"A","260":"B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"260":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"HTML5 semantic elements"}; 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 80f88280715b31..2c053905f67603 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":"J D E F A B 4B"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"oB I H kC 3B lC mC","2":"hC iC jC"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:7,C:"HTTP Live Streaming (HLS)"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"pB I H lC 3B mC nC","2":"iC jC kC"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:7,C:"HTTP Live Streaming (HLS)"}; 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 a38f39a7c5e654..3a6feadfd91309 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":"J D E F A 4B","132":"B"},B:{"1":"C K L G M N O","513":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB","2":"0 1 2 3 4 5 6 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","513":"OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB","513":"MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E 9B uB AC BC CC","260":"F A DC vB"},F:{"1":"0 1 2 3 4 5 6 7 8 z","2":"F B C G M N O q r s t u v w x y HC IC JC KC lB 2B LC mB","513":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B lC mC","513":"H"},J:{"2":"D A"},K:{"2":"A B C lB 2B mB","513":"c"},L:{"513":"H"},M:{"513":"b"},N:{"2":"A B"},O:{"513":"nC"},P:{"1":"I","513":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"513":"wB"},R:{"513":"0C"},S:{"1":"1C"}},B:6,C:"HTTP/2 protocol"}; +module.exports={A:{A:{"2":"J D E F A 4B","132":"B"},B:{"1":"C K L G M N O","513":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","2":"0 1 2 3 4 5 6 7 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","513":"PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"1":"DB EB FB GB HB IB JB KB LB MB","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB","513":"NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E AC uB BC CC DC","260":"F A EC vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9","2":"F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","513":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B mC nC","513":"H"},J:{"2":"D A"},K:{"2":"A B C mB 2B nB","513":"c"},L:{"513":"H"},M:{"513":"b"},N:{"2":"A B"},O:{"513":"oC"},P:{"1":"I","513":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"513":"wB"},R:{"513":"1C"},S:{"1":"2C"}},B:6,C:"HTTP/2 protocol"}; 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 31a849e35c68ca..d59960454a0301 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":"J D E F A B 4B"},B:{"1":"W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O","322":"P Q R S T","578":"U V"},C:{"1":"X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB 6B 7B","194":"eB fB gB hB iB jB kB P Q R rB S T U V W"},D:{"1":"W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB","322":"P Q R S T","578":"U V"},E:{"2":"I p J D E F A B C K 9B uB AC BC CC DC vB lB mB wB","1090":"L G EC FC xB yB zB 0B nB 1B GC"},F:{"1":"gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB HC IC JC KC lB 2B LC mB","578":"fB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC","66":"dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"wC xC nB yC zC","2":"I oC pC qC rC sC vB tC uC vC"},Q:{"2":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:6,C:"HTTP/3 protocol"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O","322":"P Q R S T","578":"U V"},C:{"1":"X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB 6B 7B","194":"fB gB hB iB jB kB lB P Q R sB S T U V W"},D:{"1":"W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB","322":"P Q R S T","578":"U V"},E:{"2":"I q J D E F A B C K AC uB BC CC DC EC vB mB nB wB","1090":"L G FC GC xB yB zB 0B oB 1B HC"},F:{"1":"hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB IC JC KC LC mB 2B MC nB","578":"gB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC","66":"eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"xC yC oB zC 0C","2":"I pC qC rC sC tC vB uC vC wC"},Q:{"2":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:6,C:"HTTP/3 protocol"}; 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 c7464c8171ec12..80b5b8b58100d4 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M 6B 7B","4":"N O q r s t u v w x y"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC"},H:{"2":"gC"},I:{"1":"oB I H iC jC kC 3B lC mC","2":"hC"},J:{"1":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"sandbox attribute for iframes"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b 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 NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M 6B 7B","4":"N O r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC"},H:{"2":"hC"},I:{"1":"pB I H jC kC lC 3B mC nC","2":"iC"},J:{"1":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"sandbox attribute for iframes"}; 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 a0549eb7066012..c6dae0e88ae448 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","66":"r s t u v w x"},E:{"2":"I p J E F A B C K L G 9B uB AC BC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","130":"D CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","130":"PC"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:7,C:"seamless attribute for iframes"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","66":"s t u v w x y"},E:{"2":"I q J E F A B C K L G AC uB BC CC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","130":"D DC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","130":"QC"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:7,C:"seamless attribute for iframes"}; 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 b92d5c845d7a00..f7f72ba4302166 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":"4B","8":"J D E F A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","8":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B","8":"oB I p J D E F A B C K L G M N O q r s t u v 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K","8":"L G M N O q"},E:{"1":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"9B uB","8":"I p AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B HC IC JC KC","8":"C lB 2B LC mB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB","8":"MC 3B NC"},H:{"2":"gC"},I:{"1":"H lC mC","8":"oB I hC iC jC kC 3B"},J:{"1":"A","8":"D"},K:{"1":"c","2":"A B","8":"C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"8":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"srcdoc attribute for iframes"}; +module.exports={A:{A:{"2":"4B","8":"J D E F A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","8":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B","8":"pB I q J D E F A B C K L G M N O r s t u v w 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K","8":"L G M N O r"},E:{"1":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"AC uB","8":"I q BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B IC JC KC LC","8":"C mB 2B MC nB"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB","8":"NC 3B OC"},H:{"2":"hC"},I:{"1":"H mC nC","8":"pB I iC jC kC lC 3B"},J:{"1":"A","8":"D"},K:{"1":"c","2":"A B","8":"C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"8":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"srcdoc attribute for iframes"}; 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 e200eef2ea792c..1fea01cc537dd4 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","194":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"1":"pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","322":"OB PB QB RB SB TB"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB HC IC JC KC lB 2B LC mB","322":"BB CB DB EB FB GB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"194":"1C"}},B:5,C:"ImageCapture API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","194":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"1":"qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","322":"PB QB RB SB TB UB"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB IC JC KC LC mB 2B MC nB","322":"CB DB EB FB GB HB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"194":"2C"}},B:5,C:"ImageCapture API"}; 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 348b3cd6255616..e1a97e0dc7d237 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":"J D E F A 4B","161":"B"},B:{"2":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A","161":"B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:7,C:"Input Method Editor API"}; +module.exports={A:{A:{"2":"J D E F A 4B","161":"B"},B:{"2":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A","161":"B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:7,C:"Input Method Editor API"}; 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 f0c381af34efbf..ec28c49ee661d8 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"naturalWidth & naturalHeight image properties"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"naturalWidth & naturalHeight image properties"}; 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 4f4cf1f3600af7..17e5d721aa24b0 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":"J D E F A B 4B"},B:{"1":"Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O","194":"P Q R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m 6B 7B","322":"n o b H sB tB"},D:{"1":"Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB","194":"gB hB iB jB kB P Q R S T U V W X"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB HC IC JC KC lB 2B LC mB","194":"VB WB c XB YB ZB aB bB cB dB eB fB gB hB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"xC nB yC zC","2":"I oC pC qC rC sC vB tC uC vC wC"},Q:{"2":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:7,C:"Import maps"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O","194":"P Q R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m 6B 7B","322":"n o p b H tB"},D:{"1":"Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB","194":"hB iB jB kB lB P Q R S T U V W X"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB IC JC KC LC mB 2B MC nB","194":"WB XB c YB ZB aB bB cB dB eB fB gB hB iB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"yC oB zC 0C","2":"I pC qC rC sC tC vB uC vC wC xC"},Q:{"2":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:7,C:"Import maps"}; 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 222ee4ae9ef636..4ceb9e9b757575 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":"J D E F 4B","8":"A B"},B:{"1":"P","2":"Q R S T U V W X Y Z a d e f g h i j k l m n o b H","8":"C K L G M N O"},C:{"2":"0 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","8":"1 2 RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","72":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P","2":"0 I p J D E F A B C K L G M N O q r s t u v w x y z Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","66":"1 2 3 4 5","72":"6"},E:{"2":"I p 9B uB AC","8":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB","2":"F B C G M ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","66":"N O q r s","72":"t"},G:{"2":"uB MC 3B NC OC","8":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"8":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC","2":"vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"2":"0C"},S:{"1":"1C"}},B:5,C:"HTML Imports"}; +module.exports={A:{A:{"2":"J D E F 4B","8":"A B"},B:{"1":"P","2":"Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","8":"C K L G M N O"},C:{"2":"0 1 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","8":"2 3 SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","72":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P","2":"0 1 I q J D E F A B C K L G M N O r s t u v w x y z Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","66":"2 3 4 5 6","72":"7"},E:{"2":"I q AC uB BC","8":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB","2":"F B C G M aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","66":"N O r s t","72":"u"},G:{"2":"uB NC 3B OC PC","8":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"8":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC","2":"wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"2":"1C"},S:{"1":"2C"}},B:5,C:"HTML Imports"}; 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 2c168e6fd260e9..f8b8bb87ba30ac 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":"J D E F A B","16":"4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 7B","2":"5B oB","16":"6B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r s t u v w x y"},E:{"1":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a LC mB","2":"F B HC IC JC KC lB 2B"},G:{"1":"YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"indeterminate checkbox"}; +module.exports={A:{A:{"1":"J D E F A B","16":"4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 7B","2":"5B pB","16":"6B"},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 NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a MC nB","2":"F B IC JC KC LC mB 2B"},G:{"1":"ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"indeterminate checkbox"}; 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 9a41fed80a9125..10812b0cb87fff 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":"J D E F 4B","132":"A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","132":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B","33":"A B C K L G","36":"I p J D E F"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"A","8":"I p J D E F","33":"u","36":"B C K L G M N O q r s t"},E:{"1":"A B C K L G vB lB mB wB FC xB yB zB 0B nB 1B GC","8":"I p J D 9B uB AC BC","260":"E F CC DC","516":"EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F HC IC","8":"B C JC KC lB 2B LC mB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC fC xB yB zB 0B nB 1B","8":"uB MC 3B NC OC PC","260":"E QC RC SC","516":"eC"},H:{"2":"gC"},I:{"1":"H lC mC","8":"oB I hC iC jC kC 3B"},J:{"1":"A","8":"D"},K:{"1":"c","2":"A","8":"B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"IndexedDB"}; +module.exports={A:{A:{"2":"J D E F 4B","132":"A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","132":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B","33":"A B C K L G","36":"I q J D E F"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"A","8":"I q J D E F","33":"v","36":"B C K L G M N O r s t u"},E:{"1":"A B C K L G vB mB nB wB GC xB yB zB 0B oB 1B HC","8":"I q J D AC uB BC CC","260":"E F DC EC","516":"FC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F IC JC","8":"B C KC LC mB 2B MC nB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC gC xB yB zB 0B oB 1B","8":"uB NC 3B OC PC QC","260":"E RC SC TC","516":"fC"},H:{"2":"hC"},I:{"1":"H mC nC","8":"pB I iC jC kC lC 3B"},J:{"1":"A","8":"D"},K:{"1":"c","2":"A","8":"B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"IndexedDB"}; 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 9143865e22f836..e8ed55b4a6c178 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB 6B 7B","132":"FB GB HB","260":"IB JB KB LB"},D:{"1":"TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB","132":"JB KB LB MB","260":"NB OB PB QB RB SB"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","132":"6 7 8 9","260":"AB BB CB DB EB FB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC","16":"TC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"qC rC sC vB tC uC vC wC xC nB yC zC","2":"I","260":"oC pC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"260":"1C"}},B:2,C:"IndexedDB 2.0"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB 6B 7B","132":"GB HB IB","260":"JB KB LB MB"},D:{"1":"UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","132":"KB LB MB NB","260":"OB PB QB RB SB TB"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","132":"7 8 9 AB","260":"BB CB DB EB FB GB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC","16":"UC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I","260":"pC qC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"260":"2C"}},B:2,C:"IndexedDB 2.0"}; 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 40eba40237407b..21cbc376817863 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":"4B","132":"J D"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","36":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"CSS inline-block"}; +module.exports={A:{A:{"1":"E F A B","4":"4B","132":"J D"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","36":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"CSS inline-block"}; 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 2172c187a911f9..34530327d75ecf 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":"J D E F A B","16":"4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","16":"F"},G:{"1":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB"},H:{"1":"gC"},I:{"1":"oB I H jC kC 3B lC mC","16":"hC iC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"HTMLElement.innerText"}; +module.exports={A:{A:{"1":"J D E F A B","16":"4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","16":"F"},G:{"1":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB"},H:{"1":"hC"},I:{"1":"pB I H kC lC 3B mC nC","16":"iC jC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"HTMLElement.innerText"}; 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 fe8a1530342007..c62e4178ce2e1e 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":"J D E F A 4B","132":"B"},B:{"132":"C K L G M N O","260":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","516":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"1":"N O q r s t u v w x","2":"I p J D E F A B C K L G M","132":"0 1 2 3 4 5 6 7 8 9 y z AB BB","260":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"J AC BC","2":"I p 9B uB","2052":"D E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"uB MC 3B","1025":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1025":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2052":"A B"},O:{"1025":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"260":"wB"},R:{"1":"0C"},S:{"516":"1C"}},B:1,C:"autocomplete attribute: on & off values"}; +module.exports={A:{A:{"1":"J D E F A 4B","132":"B"},B:{"132":"C K L G M N O","260":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","516":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"1":"N O r s t u v w x y","2":"I q J D E F A B C K L G M","132":"0 1 2 3 4 5 6 7 8 9 z AB BB CB","260":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"J BC CC","2":"I q AC uB","2052":"D E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"uB NC 3B","1025":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1025":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2052":"A B"},O:{"1025":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"260":"wB"},R:{"1":"1C"},S:{"516":"2C"}},B:1,C:"autocomplete attribute: on & off values"}; 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 46642d9080d8cf..6ee36bef3dd617 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":"J D E F A B 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K"},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 NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q"},E:{"1":"K L G mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B C 9B uB AC BC CC DC vB lB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a lB 2B LC mB","2":"F G M HC IC JC KC"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC","129":"YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:1,C:"Color input type"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r"},E:{"1":"K L G nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B C AC uB BC CC DC EC vB mB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a mB 2B MC nB","2":"F G M IC JC KC LC"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC","129":"ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:1,C:"Color input type"}; 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 44c1aec6abbcdb..be8d7cd6325689 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":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","132":"C"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 6B 7B","1090":"OB PB QB RB","2052":"SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d","4100":"e f g h i j k l m n o b H sB tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q","2052":"r s t u v"},E:{"2":"I p J D E F A B C K L 9B uB AC BC CC DC vB lB mB wB","4100":"G EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"uB MC 3B","260":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB hC iC jC","514":"I kC 3B"},J:{"1":"A","2":"D"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"4100":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2052":"1C"}},B:1,C:"Date and time input types"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","132":"C"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB 6B 7B","1090":"PB QB RB SB","2052":"TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d","4100":"e f g h i j k l m n o p b H tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r","2052":"s t u v w"},E:{"2":"I q J D E F A B C K L AC uB BC CC DC EC vB mB nB wB","4100":"G FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"uB NC 3B","260":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB iC jC kC","514":"I lC 3B"},J:{"1":"A","2":"D"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"4100":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2052":"2C"}},B:1,C:"Date and time input types"}; 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 b2bbf278c20a8f..67ad8bff03980c 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I"},E:{"1":"p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","2":"F"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"oB I H kC 3B lC mC","132":"hC iC jC"},J:{"1":"A","132":"D"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Email, telephone & URL input types"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I"},E:{"1":"q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","2":"F"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"pB I H lC 3B mC nC","132":"iC jC kC"},J:{"1":"A","132":"D"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Email, telephone & URL input types"}; 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 77bb427ddfc4df..732e453e77514b 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":"J D E 4B","2561":"A B","2692":"F"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2561":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","16":"5B","1537":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 7B","1796":"oB 6B"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L","1025":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB","1537":"0 1 2 3 4 5 G M N O q r s t u v w x y z"},E:{"1":"L G wB EC FC xB yB zB 0B nB 1B GC","16":"I p J 9B uB","1025":"D E F A B C BC CC DC vB lB","1537":"AC","4097":"K mB"},F:{"1":"NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","16":"F B C HC IC JC KC lB 2B","260":"LC","1025":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","1537":"G M N O q r s"},G:{"1":"aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB MC 3B","1025":"E QC RC SC TC UC VC WC XC","1537":"NC OC PC","4097":"YC ZC"},H:{"2":"gC"},I:{"16":"hC iC","1025":"H mC","1537":"oB I jC kC 3B lC"},J:{"1025":"A","1537":"D"},K:{"1":"A B C lB 2B mB","1025":"c"},L:{"1":"H"},M:{"1":"b"},N:{"2561":"A B"},O:{"1":"nC"},P:{"1025":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1537":"1C"}},B:1,C:"input event"}; +module.exports={A:{A:{"2":"J D E 4B","2561":"A B","2692":"F"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2561":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","16":"5B","1537":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 7B","1796":"pB 6B"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L","1025":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB","1537":"0 1 2 3 4 5 6 G M N O r s t u v w x y z"},E:{"1":"L G wB FC GC xB yB zB 0B oB 1B HC","16":"I q J AC uB","1025":"D E F A B C CC DC EC vB mB","1537":"BC","4097":"K nB"},F:{"1":"OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","16":"F B C IC JC KC LC mB 2B","260":"MC","1025":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","1537":"G M N O r s t"},G:{"1":"bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB NC 3B","1025":"E RC SC TC UC VC WC XC YC","1537":"OC PC QC","4097":"ZC aC"},H:{"2":"hC"},I:{"16":"iC jC","1025":"H nC","1537":"pB I kC lC 3B mC"},J:{"1025":"A","1537":"D"},K:{"1":"A B C mB 2B nB","1025":"c"},L:{"1":"H"},M:{"1":"b"},N:{"2561":"A B"},O:{"1":"oC"},P:{"1025":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1537":"2C"}},B:1,C:"input event"}; 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 a4021e392f424c..4b2a36778f2b3c 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":"J D E F 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B","132":"0 1 2 3 4 5 6 7 I p J D E F A B C K L G M N O q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I","16":"p J D E s t u v w","132":"F A B C K L G M N O q r"},E:{"1":"C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC","132":"J D E F A B BC CC DC vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"2":"OC PC","132":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","514":"uB MC 3B NC"},H:{"2":"gC"},I:{"2":"hC iC jC","260":"oB I kC 3B","514":"H lC mC"},J:{"132":"A","260":"D"},K:{"2":"A B C lB 2B mB","514":"c"},L:{"260":"H"},M:{"2":"b"},N:{"514":"A","1028":"B"},O:{"2":"nC"},P:{"260":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"260":"wB"},R:{"260":"0C"},S:{"1":"1C"}},B:1,C:"accept attribute for file input"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B","132":"0 1 2 3 4 5 6 7 8 I q J D E F A B C K L G M N O r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I","16":"q J D E t u v w x","132":"F A B C K L G M N O r s"},E:{"1":"C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC","132":"J D E F A B CC DC EC vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"2":"PC QC","132":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","514":"uB NC 3B OC"},H:{"2":"hC"},I:{"2":"iC jC kC","260":"pB I lC 3B","514":"H mC nC"},J:{"132":"A","260":"D"},K:{"2":"A B C mB 2B nB","514":"c"},L:{"260":"H"},M:{"2":"b"},N:{"514":"A","1028":"B"},O:{"2":"oC"},P:{"260":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"260":"wB"},R:{"260":"1C"},S:{"1":"2C"}},B:1,C:"accept attribute for file input"}; 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 392722d8f81934..638d8c9160b5e4 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":"J D E F A B 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K"},C:{"1":"LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 6B 7B"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B 9B uB AC BC CC DC vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:7,C:"Directory selection from file input"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K"},C:{"1":"MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 6B 7B"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B AC uB BC CC DC EC vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:7,C:"Directory selection from file input"}; 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 697d8e2fb63684..d1478b76319585 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 7B","2":"5B oB 6B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a KC lB 2B LC mB","2":"F HC IC JC"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC"},H:{"130":"gC"},I:{"130":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"130":"A B C c lB 2B mB"},L:{"132":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"130":"nC"},P:{"130":"I","132":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"132":"wB"},R:{"132":"0C"},S:{"2":"1C"}},B:1,C:"Multiple file selection"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 7B","2":"5B pB 6B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a LC mB 2B MC nB","2":"F IC JC KC"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC"},H:{"130":"hC"},I:{"130":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"130":"A B C c mB 2B nB"},L:{"132":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"130":"oC"},P:{"130":"I","132":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"132":"wB"},R:{"132":"1C"},S:{"2":"2C"}},B:1,C:"Multiple file selection"}; 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 dcd593cb89ad16..56c535f31ad520 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M 6B 7B","4":"N O q r","194":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","66":"RB SB TB pB UB qB VB WB c XB"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB HC IC JC KC lB 2B LC mB","66":"EB FB GB HB IB JB KB LB MB NB"},G:{"1":"YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"sC vB tC uC vC wC xC nB yC zC","2":"I oC pC qC rC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"194":"1C"}},B:1,C:"inputmode attribute"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M 6B 7B","4":"N O r s","194":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","66":"SB TB UB qB VB rB WB XB c YB"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB IC JC KC LC mB 2B MC nB","66":"FB GB HB IB JB KB LB MB NB OB"},G:{"1":"ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC rC sC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"194":"2C"}},B:1,C:"inputmode attribute"}; 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 111523b1dc8765..91aab7281c5be1 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":"J D E F A B 4B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M"},C:{"1":"MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 6B 7B"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u v w x HC IC JC KC lB 2B LC mB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:1,C:"Minimum length attribute for input fields"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M"},C:{"1":"NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 6B 7B"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u v w x y IC JC KC LC mB 2B MC nB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:1,C:"Minimum length attribute for input fields"}; 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 79b0399f86da4c..f23ff8ed0055f6 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":"J D E F 4B","129":"A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","129":"C K","1025":"L G M N O"},C:{"2":"5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","513":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p"},E:{"1":"p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"388":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB hC iC jC","388":"I H kC 3B lC mC"},J:{"2":"D","388":"A"},K:{"1":"A B C lB 2B mB","388":"c"},L:{"388":"H"},M:{"641":"b"},N:{"388":"A B"},O:{"388":"nC"},P:{"388":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"388":"wB"},R:{"388":"0C"},S:{"513":"1C"}},B:1,C:"Number input type"}; +module.exports={A:{A:{"2":"J D E F 4B","129":"A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","129":"C K","1025":"L G M N O"},C:{"2":"0 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","513":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q"},E:{"1":"q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"388":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB iC jC kC","388":"I H lC 3B mC nC"},J:{"2":"D","388":"A"},K:{"1":"A B C mB 2B nB","388":"c"},L:{"388":"H"},M:{"641":"b"},N:{"388":"A B"},O:{"388":"oC"},P:{"388":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"388":"wB"},R:{"388":"1C"},S:{"513":"2C"}},B:1,C:"Number input type"}; 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 a485feb049d0f2..cc2e6bb5ff35d4 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB","16":"p","388":"J D E F A AC BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","2":"F"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB MC 3B","388":"E NC OC PC QC RC SC TC"},H:{"2":"gC"},I:{"1":"H mC","2":"oB I hC iC jC kC 3B lC"},J:{"1":"A","2":"D"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Pattern attribute for input fields"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB","16":"q","388":"J D E F A BC CC DC EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","2":"F"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB NC 3B","388":"E OC PC QC RC SC TC UC"},H:{"2":"hC"},I:{"1":"H nC","2":"pB I iC jC kC lC 3B mC"},J:{"1":"A","2":"D"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Pattern attribute for input fields"}; 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 c02809e20e5f12..05b307b1400c1c 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","132":"I 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a 2B LC mB","2":"F HC IC JC KC","132":"B lB"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB H hC iC jC 3B lC mC","4":"I kC"},J:{"1":"D A"},K:{"1":"B C c lB 2B mB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"input placeholder attribute"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","132":"I AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a 2B MC nB","2":"F IC JC KC LC","132":"B mB"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB H iC jC kC 3B mC nC","4":"I lC"},J:{"1":"D A"},K:{"1":"B C c mB 2B nB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"input placeholder attribute"}; 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 87bd7b4c840138..28b5cd02a23a82 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B"},H:{"2":"gC"},I:{"1":"H 3B lC mC","4":"oB I hC iC jC kC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Range input type"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s t u 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B"},H:{"2":"hC"},I:{"1":"H 3B mC nC","4":"pB I iC jC kC lC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Range input type"}; 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 aac358f9575802..8a0101070c6e76 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":"J D E F 4B","129":"A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","129":"C K L G M N O"},C:{"2":"5B oB 6B 7B","129":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L s t u v w","129":"G M N O q r"},E:{"1":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"I p 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a LC mB","2":"F HC IC JC KC","16":"B lB 2B"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB MC 3B"},H:{"129":"gC"},I:{"1":"H lC mC","16":"hC iC","129":"oB I jC kC 3B"},J:{"1":"D","129":"A"},K:{"1":"C c","2":"A","16":"B lB 2B","129":"mB"},L:{"1":"H"},M:{"129":"b"},N:{"129":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"129":"1C"}},B:1,C:"Search input type"}; +module.exports={A:{A:{"2":"J D E F 4B","129":"A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","129":"C K L G M N O"},C:{"2":"5B pB 6B 7B","129":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L t u v w x","129":"G M N O r s"},E:{"1":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"I q AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a MC nB","2":"F IC JC KC LC","16":"B mB 2B"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB NC 3B"},H:{"129":"hC"},I:{"1":"H mC nC","16":"iC jC","129":"pB I kC lC 3B"},J:{"1":"D","129":"A"},K:{"1":"C c","2":"A","16":"B mB 2B","129":"nB"},L:{"1":"H"},M:{"129":"b"},N:{"129":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"129":"2C"}},B:1,C:"Search input type"}; 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 82880c8e1e2d34..9aac544d2ad306 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a KC lB 2B LC mB","16":"F HC IC JC"},G:{"1":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB"},H:{"2":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Selection controls for input & textarea"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a LC mB 2B MC nB","16":"F IC JC KC"},G:{"1":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB"},H:{"2":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Selection controls for input & textarea"}; 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 74389616d955e2..940c2cb3014c04 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":"J D E F A B","16":"4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","16":"F"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H jC kC 3B lC mC","16":"hC iC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Element.insertAdjacentElement() & Element.insertAdjacentText()"}; +module.exports={A:{A:{"1":"J D E F A B","16":"4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","16":"F"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H kC lC 3B mC nC","16":"iC jC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Element.insertAdjacentElement() & Element.insertAdjacentText()"}; 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 b97bb69bfb131a..a4f1c042407efb 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":"4B","132":"J D E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a IC JC KC lB 2B LC mB","16":"F HC"},G:{"1":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB"},H:{"1":"gC"},I:{"1":"oB I H jC kC 3B lC mC","16":"hC iC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"Element.insertAdjacentHTML()"}; +module.exports={A:{A:{"1":"A B","16":"4B","132":"J D E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a JC KC LC mB 2B MC nB","16":"F IC"},G:{"1":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB"},H:{"1":"hC"},I:{"1":"pB I H kC lC 3B mC nC","16":"iC jC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"Element.insertAdjacentHTML()"}; 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 56096ae3aec014..1a7a9448876689 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":"J D E F A 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b 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 NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r s t u"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:6,C:"Internationalization API"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r s t u v"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:6,C:"Internationalization API"}; 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 2ada58410a46de..7831b6675ae4d4 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"tC uC vC wC xC nB yC zC","2":"I oC pC qC rC sC vB"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:7,C:"IntersectionObserver V2"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"uC vC wC xC yC oB zC 0C","2":"I pC qC rC sC tC vB"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:7,C:"IntersectionObserver V2"}; 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 54480c0f4097d6..659d7975d3ef6f 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":"J D E F A B 4B"},B:{"1":"M N O","2":"C K L","516":"G","1025":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 6B 7B","194":"NB OB PB"},D:{"1":"TB pB UB qB VB WB c","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","516":"MB NB OB PB QB RB SB","1025":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"K L G mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B C 9B uB AC BC CC DC vB lB"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","2":"0 1 2 3 4 5 6 7 8 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","516":"9 AB BB CB DB EB FB","1025":"c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"1":"YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B lC mC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C lB 2B mB","1025":"c"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"qC rC sC vB tC uC vC wC xC nB yC zC","2":"I","516":"oC pC"},Q:{"1025":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"IntersectionObserver"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"M N O","2":"C K L","516":"G","1025":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 6B 7B","194":"OB PB QB"},D:{"1":"UB qB VB rB WB XB c","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","516":"NB OB PB QB RB SB TB","1025":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"K L G nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B C AC uB BC CC DC EC vB mB"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","516":"AB BB CB DB EB FB GB","1025":"c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"1":"ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B mC nC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C mB 2B nB","1025":"c"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I","516":"pC qC"},Q:{"1025":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"IntersectionObserver"}; 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 b687a849e3e159..8fb3176bb29c96 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N","130":"O"},C:{"1":"TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB 6B 7B"},D:{"1":"WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB"},E:{"1":"K L G wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B C 9B uB AC BC CC DC vB lB mB"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB HC IC JC KC lB 2B LC mB"},G:{"1":"ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"rC sC vB tC uC vC wC xC nB yC zC","2":"I oC pC qC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:6,C:"Intl.PluralRules API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N","130":"O"},C:{"1":"UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB 6B 7B"},D:{"1":"XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB"},E:{"1":"K L G wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B C AC uB BC CC DC EC vB mB nB"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB IC JC KC LC mB 2B MC nB"},G:{"1":"aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC rC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:6,C:"Intl.PluralRules API"}; 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 420a4e409a138a..e20ee5a7022e79 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":"J D E F A B 4B"},B:{"2":"C K L G M N O","1537":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"5B","932":"0 1 2 3 4 5 6 7 8 9 oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB 6B 7B","2308":"YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"2":"I p J D E F A B C K L G M N O q r s","545":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB","1537":"HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J 9B uB AC","516":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","548":"F A DC vB","676":"D E BC CC"},F:{"2":"F B C HC IC JC KC lB 2B LC mB","513":"5","545":"0 1 2 3 G M N O q r s t u v w x y z","1537":"4 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"uB MC 3B NC OC","516":"dC eC fC xB yB zB 0B nB 1B","548":"RC SC TC UC VC WC XC YC ZC aC bC cC","676":"E PC QC"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B","545":"lC mC","1537":"H"},J:{"2":"D","545":"A"},K:{"2":"A B C lB 2B mB","1537":"c"},L:{"1537":"H"},M:{"2308":"b"},N:{"2":"A B"},O:{"1537":"nC"},P:{"545":"I","1537":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1537":"wB"},R:{"1537":"0C"},S:{"932":"1C"}},B:5,C:"Intrinsic & Extrinsic Sizing"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O","1537":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"5B","932":"0 1 2 3 4 5 6 7 8 9 pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB 6B 7B","2308":"ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"2":"I q J D E F A B C K L G M N O r s t","545":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB","1537":"IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J AC uB BC","516":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","548":"F A EC vB","676":"D E CC DC"},F:{"2":"F B C IC JC KC LC mB 2B MC nB","513":"6","545":"0 1 2 3 4 G M N O r s t u v w x y z","1537":"5 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"uB NC 3B OC PC","516":"eC fC gC xB yB zB 0B oB 1B","548":"SC TC UC VC WC XC YC ZC aC bC cC dC","676":"E QC RC"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B","545":"mC nC","1537":"H"},J:{"2":"D","545":"A"},K:{"2":"A B C mB 2B nB","1537":"c"},L:{"1537":"H"},M:{"2308":"b"},N:{"2":"A B"},O:{"1537":"oC"},P:{"545":"I","1537":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1537":"wB"},R:{"1537":"1C"},S:{"932":"2C"}},B:5,C:"Intrinsic & Extrinsic Sizing"}; 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 8034035357d41b..bfbf3a84f1fb71 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB","129":"p AC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:6,C:"JPEG 2000 image format"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB","129":"q BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:6,C:"JPEG 2000 image format"}; 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 957766fa67e98d..3394e73eccb015 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z","578":"a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y 6B 7B","322":"Z a d e f g h i j k l m n o b H sB tB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z","194":"a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB HC IC JC KC lB 2B LC mB","194":"jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:6,C:"JPEG XL image format"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z","578":"a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y 6B 7B","322":"Z a d e f g h i j k l m n o p b H tB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z","194":"a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB IC JC KC LC mB 2B MC nB","194":"kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:6,C:"JPEG XL image format"}; 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 9ee9e18658a839..d0a801f2c78580 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":"J D E 4B"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"1":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:6,C:"JPEG XR image format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"1":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:6,C:"JPEG XR image format"}; 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 36e67200a52bd7..c74ddb8fedf2e5 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB 6B 7B"},D:{"1":"VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"rC sC vB tC uC vC wC xC nB yC zC","2":"I oC pC qC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:6,C:"Lookbehind in JS regular expressions"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB 6B 7B"},D:{"1":"WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC rC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:6,C:"Lookbehind in JS regular expressions"}; 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 0aa9c9f0d92781..a8a391fd1f1623 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":"J D 4B","129":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","2":"5B oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a JC KC lB 2B LC mB","2":"F HC IC"},G:{"1":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"JSON parsing"}; +module.exports={A:{A:{"1":"F A B","2":"J D 4B","129":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","2":"5B pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a KC LC mB 2B MC nB","2":"F IC JC"},G:{"1":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"JSON parsing"}; 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 7d52413993ad37..b3e92f3b28bfde 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G","132":"M N O"},C:{"1":"NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 6B 7B"},D:{"1":"UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","132":"SB TB pB"},E:{"1":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC","132":"vB"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB HC IC JC KC lB 2B LC mB","132":"FB GB HB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC","132":"UC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"rC sC vB tC uC vC wC xC nB yC zC","2":"I oC pC","132":"qC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"132":"1C"}},B:5,C:"CSS justify-content: space-evenly"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G","132":"M N O"},C:{"1":"OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 6B 7B"},D:{"1":"VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","132":"TB UB qB"},E:{"1":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC","132":"vB"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB IC JC KC LC mB 2B MC nB","132":"GB HB IB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC","132":"VC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC","132":"rC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"132":"2C"}},B:5,C:"CSS justify-content: space-evenly"}; 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 16b1f66844b159..fdb707c42bbae5 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":"J D E F A B 4B"},B:{"1":"O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","2":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB MC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"hC iC jC","132":"oB I kC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:7,C:"High-quality kerning pairs & ligatures"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","2":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB NC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"iC jC kC","132":"pB I lC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:7,C:"High-quality kerning pairs & ligatures"}; 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 34acc83d130d83..d6f5a2bb8f7a8e 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","16":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"F B HC IC JC KC lB 2B LC","16":"C"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB MC 3B"},H:{"2":"gC"},I:{"1":"oB I H jC kC 3B lC mC","16":"hC iC"},J:{"1":"D A"},K:{"1":"c mB","2":"A B lB 2B","16":"C"},L:{"1":"H"},M:{"130":"b"},N:{"130":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:7,C:"KeyboardEvent.charCode"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","16":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"F B IC JC KC LC mB 2B MC","16":"C"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB NC 3B"},H:{"2":"hC"},I:{"1":"pB I H kC lC 3B mC nC","16":"iC jC"},J:{"1":"D A"},K:{"1":"c nB","2":"A B mB 2B","16":"C"},L:{"1":"H"},M:{"130":"b"},N:{"130":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:7,C:"KeyboardEvent.charCode"}; 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 e49e2768b6376a..08689ba3cb018c 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB","194":"DB EB FB GB HB IB"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","194":"0 1 2 3 4 5"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"194":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I","194":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"194":"0C"},S:{"1":"1C"}},B:5,C:"KeyboardEvent.code"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB","194":"EB FB GB HB IB JB"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","194":"1 2 3 4 5 6"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"194":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I","194":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"194":"1C"},S:{"1":"2C"}},B:5,C:"KeyboardEvent.code"}; 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 275ad043e8186e..320a88d3cdb3c1 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L 6B 7B"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"F B G M HC IC JC KC lB 2B LC","16":"C"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"2":"D A"},K:{"1":"c mB","2":"A B lB 2B","16":"C"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"KeyboardEvent.getModifierState()"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L 6B 7B"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"F B G M IC JC KC LC mB 2B MC","16":"C"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"2":"D A"},K:{"1":"c nB","2":"A B mB 2B","16":"C"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"KeyboardEvent.getModifierState()"}; 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 49420a2e8fdc3d..7b898d7d3332b5 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":"J D E 4B","260":"F A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","260":"C K L G M N O"},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 NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t 6B 7B","132":"u v w x y z"},D:{"1":"MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"0 1 2 3 4 5 6 7 8 F B G M N O q r s t u v w x y z HC IC JC KC lB 2B LC","16":"C"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC"},H:{"1":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c mB","2":"A B lB 2B","16":"C"},L:{"1":"H"},M:{"1":"b"},N:{"260":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"KeyboardEvent.key"}; +module.exports={A:{A:{"2":"J D E 4B","260":"F A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","260":"C K L G M N O"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s t u 6B 7B","132":"0 v w x y z"},D:{"1":"NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC"},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 c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"0 1 2 3 4 5 6 7 8 9 F B G M N O r s t u v w x y z IC JC KC LC mB 2B MC","16":"C"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC"},H:{"1":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c nB","2":"A B mB 2B","16":"C"},L:{"1":"H"},M:{"1":"b"},N:{"260":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"KeyboardEvent.key"}; 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 fb8f907e37b0db..2c30d8e1de5eda 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L 6B 7B"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","132":"0 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"J 9B uB","132":"I p AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"F B HC IC JC KC lB 2B LC","16":"C","132":"G M"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB MC 3B","132":"NC OC PC"},H:{"2":"gC"},I:{"1":"H lC mC","16":"hC iC","132":"oB I jC kC 3B"},J:{"132":"D A"},K:{"1":"c mB","2":"A B lB 2B","16":"C"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"KeyboardEvent.location"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L 6B 7B"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","132":"0 1 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"J AC uB","132":"I q BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"F B IC JC KC LC mB 2B MC","16":"C","132":"G M"},G:{"1":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB NC 3B","132":"OC PC QC"},H:{"2":"hC"},I:{"1":"H mC nC","16":"iC jC","132":"pB I kC lC 3B"},J:{"132":"D A"},K:{"1":"c nB","2":"A B mB 2B","16":"C"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"KeyboardEvent.location"}; 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 89c070d7d802a2..cc6801589ddc83 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB","16":"p"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a IC JC KC lB 2B LC mB","16":"F HC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB MC 3B"},H:{"2":"gC"},I:{"1":"oB I H jC kC 3B","16":"hC iC","132":"lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"132":"H"},M:{"132":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"2":"I","132":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"132":"0C"},S:{"1":"1C"}},B:7,C:"KeyboardEvent.which"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB","16":"q"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a JC KC LC mB 2B MC nB","16":"F IC"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB NC 3B"},H:{"2":"hC"},I:{"1":"pB I H kC lC 3B","16":"iC jC","132":"mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"132":"H"},M:{"132":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"2":"I","132":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"132":"1C"},S:{"1":"2C"}},B:7,C:"KeyboardEvent.which"}; 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 88695d13cf2f28..2fd2634ab82d98 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":"J D E F A 4B"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"1":"B","2":"A"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:7,C:"Resource Hints: Lazyload"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 4B"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"1":"B","2":"A"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:7,C:"Resource Hints: Lazyload"}; 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 f2e1b60a408451..af95b35d364b02 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":"J D E F A 4B","2052":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","194":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB 6B 7B"},D:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O","322":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB","516":"CB DB EB FB GB HB IB JB"},E:{"1":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC DC","1028":"A vB"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB","322":"G M N O q r s t u v w x y","516":"0 1 2 3 4 5 6 z"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC","1028":"TC UC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","516":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"let"}; +module.exports={A:{A:{"2":"J D E F A 4B","2052":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","194":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB 6B 7B"},D:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O","322":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB","516":"DB EB FB GB HB IB JB KB"},E:{"1":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC EC","1028":"A vB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB","322":"G M N O r s t u v w x y z","516":"0 1 2 3 4 5 6 7"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC","1028":"UC VC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","516":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"let"}; 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 5ce8b7633485d0..b898addf2da74b 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":"J D E F A 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","130":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC"},H:{"130":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D","130":"A"},K:{"1":"c","130":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"130":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"PNG favicons"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","130":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC"},H:{"130":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D","130":"A"},K:{"1":"c","130":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"130":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"PNG favicons"}; 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 77edfd60db658a..33c76a7a5830b2 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P","1537":"Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"5B oB 6B 7B","260":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB","513":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P","1537":"Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB PB QB RB SB TB UB VB WB c XB YB HC IC JC KC lB 2B LC mB","1537":"ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","130":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC"},H:{"130":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D","130":"A"},K:{"2":"c","130":"A B C lB 2B mB"},L:{"1537":"H"},M:{"2":"b"},N:{"130":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC","1537":"vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"1537":"0C"},S:{"513":"1C"}},B:1,C:"SVG favicons"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P","1537":"Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"5B pB 6B 7B","260":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB","513":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P","1537":"Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB QB RB SB TB UB VB WB XB c YB ZB IC JC KC LC mB 2B MC nB","1537":"aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","130":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC"},H:{"130":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D","130":"A"},K:{"2":"c","130":"A B C mB 2B nB"},L:{"1537":"H"},M:{"2":"b"},N:{"130":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC","1537":"wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"1537":"1C"},S:{"513":"2C"}},B:1,C:"SVG favicons"}; 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 ee7595c2750df3..886271877b4ea0 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":"J D E 4B","132":"F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"5B oB","260":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"16":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"16":"oB I H hC iC jC kC 3B lC mC"},J:{"16":"D A"},K:{"16":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","16":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"Resource Hints: dns-prefetch"}; +module.exports={A:{A:{"1":"A B","2":"J D E 4B","132":"F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"5B pB","260":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"16":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"16":"pB I H iC jC kC lC 3B mC nC"},J:{"16":"D A"},K:{"16":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","16":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"Resource Hints: dns-prefetch"}; 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 73fd848cb61b8d..34fb72e08a9ee6 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"sC vB tC uC vC wC xC nB yC zC","2":"I oC pC qC rC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:1,C:"Resource Hints: modulepreload"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC rC sC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:1,C:"Resource Hints: modulepreload"}; 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 8d3e6d5c0bd088..1d54811af0a5a1 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L","260":"G M N O"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","129":"AB"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B 9B uB AC BC CC DC vB"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"16":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"Resource Hints: preconnect"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L","260":"G M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","129":"BB"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"1":"C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B AC uB BC CC DC EC vB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"16":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"Resource Hints: preconnect"}; 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 87b0cccaee57ba..79e2e4f7dd282d 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":"J D E F A 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D"},E:{"2":"I p J D E F A B C K 9B uB AC BC CC DC vB lB mB","194":"L G wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC","194":"cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"I H lC mC","2":"oB hC iC jC kC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"Resource Hints: prefetch"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D"},E:{"2":"I q J D E F A B C K AC uB BC CC DC EC vB mB nB","194":"L G wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC","194":"dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"I H mC nC","2":"pB iC jC kC lC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"Resource Hints: prefetch"}; 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 774868cf480ed1..f9f8692928d3b4 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M","1028":"N O"},C:{"1":"U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB 6B 7B","132":"RB","578":"SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T"},D:{"1":"LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC vB","322":"B"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC","322":"VC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:4,C:"Resource Hints: preload"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M","1028":"N O"},C:{"1":"U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB 6B 7B","132":"SB","578":"TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T"},D:{"1":"MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC vB","322":"B"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC","322":"WC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:4,C:"Resource Hints: preload"}; 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 fb24ebba064bd6..e33e8a890fcb50 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":"J D E F A 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"1":"B","2":"A"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"Resource Hints: prerender"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"1":"B","2":"A"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"Resource Hints: prerender"}; 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 bf287cb1d487f3..88300ea7bbeb71 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB 6B 7B","132":"hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"1":"jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB","66":"hB iB"},E:{"1":"GC","2":"I p J D E F A B C K 9B uB AC BC CC DC vB lB mB","322":"L G wB EC FC xB","580":"yB zB 0B nB 1B"},F:{"1":"c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB HC IC JC KC lB 2B LC mB","66":"VB WB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC","322":"cC dC eC fC xB","580":"yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"132":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"uC vC wC xC nB yC zC","2":"I oC pC qC rC sC vB tC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:1,C:"Lazy loading via attribute for images & iframes"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB 6B 7B","132":"iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"1":"kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB","66":"iB jB"},E:{"1":"HC","2":"I q J D E F A B C K AC uB BC CC DC EC vB mB nB","322":"L G wB FC GC xB","580":"yB zB 0B oB 1B"},F:{"1":"c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB IC JC KC LC mB 2B MC nB","66":"WB XB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC","322":"dC eC fC gC xB","580":"yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"132":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"vC wC xC yC oB zC 0C","2":"I pC qC rC sC tC vB uC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:1,C:"Lazy loading via attribute for images & iframes"}; 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 02f35ee78a7c40..041d36d69672de 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":"4B","132":"J D E F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b 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 NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","132":"5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","132":"I p J D E F A B C K L G M N O q r s t u"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","132":"I p J D E F 9B uB AC BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","16":"F B C HC IC JC KC lB 2B LC","132":"mB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","132":"E uB MC 3B NC OC PC QC RC SC"},H:{"132":"gC"},I:{"1":"H lC mC","132":"oB I hC iC jC kC 3B"},J:{"132":"D A"},K:{"1":"c","16":"A B C lB 2B","132":"mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","132":"A"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","132":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"4":"1C"}},B:6,C:"localeCompare()"}; +module.exports={A:{A:{"1":"B","16":"4B","132":"J D E F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","132":"0 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","132":"I q J D E F A B C K L G M N O r s t u v"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","132":"I q J D E F AC uB BC CC DC EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","16":"F B C IC JC KC LC mB 2B MC","132":"nB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","132":"E uB NC 3B OC PC QC RC SC TC"},H:{"132":"hC"},I:{"1":"H mC nC","132":"pB I iC jC kC lC 3B"},J:{"132":"D A"},K:{"1":"c","16":"A B C mB 2B","132":"nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","132":"A"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","132":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"4":"2C"}},B:6,C:"localeCompare()"}; 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 68bd07dbfe5a26..0e243ae3aebb1a 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","194":"TB pB UB qB VB WB c XB YB"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"194":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:4,C:"Magnetometer"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","194":"UB qB VB rB WB XB c YB ZB"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"194":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:4,C:"Magnetometer"}; 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 27a465115c5409..238172cbfff3fd 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":"J D E 4B","36":"F A B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","36":"C K L"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B","36":"0 1 2 3 4 I p J D E F A B C K L G M N O q r s t u v w x y z 7B"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","36":"0 1 2 3 4 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB","36":"p J D AC BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B HC IC JC KC lB","36":"C G M N O q r 2B LC mB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB","36":"MC 3B NC OC PC"},H:{"2":"gC"},I:{"1":"H","2":"hC","36":"oB I iC jC kC 3B lC mC"},J:{"36":"D A"},K:{"1":"c","2":"A B","36":"C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"36":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","36":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"matches() DOM method"}; +module.exports={A:{A:{"2":"J D E 4B","36":"F A B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","36":"C K L"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B","36":"0 1 2 3 4 5 I q J D E F A B C K L G M N O r s t u v w x y z 7B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","36":"0 1 2 3 4 5 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB","36":"q J D BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B IC JC KC LC mB","36":"C G M N O r s 2B MC nB"},G:{"1":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB","36":"NC 3B OC PC QC"},H:{"2":"hC"},I:{"1":"H","2":"iC","36":"pB I jC kC lC 3B mC nC"},J:{"36":"D A"},K:{"1":"c","2":"A B","36":"C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"36":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","36":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"matches() DOM method"}; 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 359813bcfe3513..d2e2c7232df113 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E"},E:{"1":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"F B C HC IC JC KC lB 2B LC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B"},H:{"1":"gC"},I:{"1":"oB I H kC 3B lC mC","2":"hC iC jC"},J:{"1":"A","2":"D"},K:{"1":"c mB","2":"A B C lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"matchMedia"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E"},E:{"1":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"F B C IC JC KC LC mB 2B MC"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B"},H:{"1":"hC"},I:{"1":"pB I H lC 3B mC nC","2":"iC jC kC"},J:{"1":"A","2":"D"},K:{"1":"c nB","2":"A B C mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"matchMedia"}; 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 c6381f5f419920..70e13018ac2b47 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 4B","8":"J D E"},B:{"2":"C K L G M N O","8":"P Q R S T U V W X Y Z a d e f g h","584":"i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","129":"5B oB 6B 7B"},D:{"1":"v","8":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h","584":"i j k l m n o b H sB tB 8B"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","260":"I p J D E F 9B uB AC BC CC DC"},F:{"2":"F","8":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB","584":"S T U V W X Y Z a","2052":"B C HC IC JC KC lB 2B LC mB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","8":"uB MC 3B"},H:{"8":"gC"},I:{"8":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"A","8":"D"},K:{"8":"A B C c lB 2B mB"},L:{"8":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"8":"nC"},P:{"8":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"8":"wB"},R:{"8":"0C"},S:{"1":"1C"}},B:2,C:"MathML"}; +module.exports={A:{A:{"2":"F A B 4B","8":"J D E"},B:{"2":"C K L G M N O","8":"P Q R S T U V W X Y Z a d e f g h","584":"i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","129":"5B pB 6B 7B"},D:{"1":"w","8":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h","584":"i j k l m n o p b H tB 8B 9B"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","260":"I q J D E F AC uB BC CC DC EC"},F:{"2":"F","8":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB","584":"S T U V W X Y Z a","2052":"B C IC JC KC LC mB 2B MC nB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","8":"uB NC 3B"},H:{"8":"hC"},I:{"8":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"A","8":"D"},K:{"8":"A B C c mB 2B nB"},L:{"8":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"8":"oC"},P:{"8":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"8":"wB"},R:{"8":"1C"},S:{"1":"2C"}},B:2,C:"MathML"}; 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 5bf810b1d65c1b..63f6cd5f16fb7f 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":"4B","900":"J D E F"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","1025":"C K L G M N O"},C:{"1":"MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","900":"5B oB 6B 7B","1025":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"p 9B","900":"I uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","16":"F","132":"B C HC IC JC KC lB 2B LC mB"},G:{"1":"MC 3B NC OC PC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB","2052":"E QC"},H:{"132":"gC"},I:{"1":"oB I jC kC 3B lC mC","16":"hC iC","4097":"H"},J:{"1":"D A"},K:{"132":"A B C lB 2B mB","4097":"c"},L:{"4097":"H"},M:{"4097":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"4097":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1025":"1C"}},B:1,C:"maxlength attribute for input and textarea elements"}; +module.exports={A:{A:{"1":"A B","16":"4B","900":"J D E F"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","1025":"C K L G M N O"},C:{"1":"NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","900":"5B pB 6B 7B","1025":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z 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 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"q AC","900":"I uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","16":"F","132":"B C IC JC KC LC mB 2B MC nB"},G:{"1":"NC 3B OC PC QC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB","2052":"E RC"},H:{"132":"hC"},I:{"1":"pB I kC lC 3B mC nC","16":"iC jC","4097":"H"},J:{"1":"D A"},K:{"132":"A B C mB 2B nB","4097":"c"},L:{"4097":"H"},M:{"4097":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"4097":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1025":"2C"}},B:1,C:"maxlength attribute for input and textarea elements"}; 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 984dfeab47e664..dde06c38d96460 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":"JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M 6B 7B","33":"0 1 2 3 4 5 6 7 8 9 N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},M:{"1":"b"},A:{"2":"J D E F A B 4B"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},K:{"1":"c","2":"A B C lB 2B mB"},E:{"1":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B","2":"I p J 9B uB AC BC GC","33":"D E F A CC DC vB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC","33":"E PC QC RC SC TC UC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"}},B:6,C:"isolate-override from unicode-bidi"}; +module.exports={A:{D:{"1":"KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M 6B 7B","33":"0 1 2 3 4 5 6 7 8 9 N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},M:{"1":"b"},A:{"2":"J D E F A B 4B"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},K:{"1":"c","2":"A B C mB 2B nB"},E:{"1":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B","2":"I q J AC uB BC CC HC","33":"D E F A DC EC vB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC","33":"E QC RC SC TC UC VC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"}},B:6,C:"isolate-override from unicode-bidi"}; 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 3aec78f2f1447f..82c83c4e885185 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":"JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G","33":"0 1 2 3 4 5 6 7 8 9 M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F 6B 7B","33":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},M:{"1":"b"},A:{"2":"J D E F A B 4B"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB","33":"0 1 2 3 4 5 G M N O q r s t u v w x y z"},K:{"1":"c","2":"A B C lB 2B mB"},E:{"1":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B","2":"I p 9B uB AC GC","33":"J D E F A BC CC DC vB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC","33":"E OC PC QC RC SC TC UC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"}},B:6,C:"isolate from unicode-bidi"}; +module.exports={A:{D:{"1":"KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G","33":"0 1 2 3 4 5 6 7 8 9 M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F 6B 7B","33":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},M:{"1":"b"},A:{"2":"J D E F A B 4B"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB","33":"0 1 2 3 4 5 6 G M N O r s t u v w x y z"},K:{"1":"c","2":"A B C mB 2B nB"},E:{"1":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B","2":"I q AC uB BC HC","33":"J D E F A CC DC EC vB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC","33":"E PC QC RC SC TC UC VC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"}},B:6,C:"isolate from unicode-bidi"}; 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 2415be99d16c55..99d7955615ee5b 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":"JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F 6B 7B","33":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},M:{"1":"b"},A:{"2":"J D E F A B 4B"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},K:{"1":"c","2":"A B C lB 2B mB"},E:{"1":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B","2":"I p 9B uB AC GC","33":"J D E F A BC CC DC vB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC","33":"E OC PC QC RC SC TC UC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"}},B:6,C:"plaintext from unicode-bidi"}; +module.exports={A:{D:{"1":"KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F 6B 7B","33":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},M:{"1":"b"},A:{"2":"J D E F A B 4B"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},K:{"1":"c","2":"A B C mB 2B nB"},E:{"1":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B","2":"I q AC uB BC HC","33":"J D E F A CC DC EC vB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC","33":"E PC QC RC SC TC UC VC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"}},B:6,C:"plaintext from unicode-bidi"}; 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 cd5f2a6d96c32b..e68c15e19d9571 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":"SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p 6B 7B","33":"0 1 2 3 4 5 6 J D E F A B C K L G M N O q r s t u v w x y z"},M:{"1":"b"},A:{"2":"J D E F A B 4B"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB HC IC JC KC lB 2B LC mB"},K:{"1":"c","2":"A B C lB 2B mB"},E:{"1":"K L G mB wB EC FC xB yB zB 0B nB 1B","2":"I p J D 9B uB AC BC CC GC","33":"E F A B C DC vB lB"},G:{"1":"YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC PC","33":"E QC RC SC TC UC VC WC XC"},P:{"1":"qC rC sC vB tC uC vC wC xC nB yC zC","2":"I oC pC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"}},B:6,C:"text-decoration-color property"}; +module.exports={A:{D:{"1":"TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q 6B 7B","33":"0 1 2 3 4 5 6 7 J D E F A B C K L G M N O r s t u v w x y z"},M:{"1":"b"},A:{"2":"J D E F A B 4B"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB IC JC KC LC mB 2B MC nB"},K:{"1":"c","2":"A B C mB 2B nB"},E:{"1":"K L G nB wB FC GC xB yB zB 0B oB 1B","2":"I q J D AC uB BC CC DC HC","33":"E F A B C EC vB mB"},G:{"1":"ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC QC","33":"E RC SC TC UC VC WC XC YC"},P:{"1":"rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"}},B:6,C:"text-decoration-color property"}; 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 c058f06f3f90d9..e21100fc2847cb 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":"SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p 6B 7B","33":"0 1 2 3 4 5 6 J D E F A B C K L G M N O q r s t u v w x y z"},M:{"1":"b"},A:{"2":"J D E F A B 4B"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB HC IC JC KC lB 2B LC mB"},K:{"1":"c","2":"A B C lB 2B mB"},E:{"1":"K L G mB wB EC FC xB yB zB 0B nB 1B","2":"I p J D 9B uB AC BC CC GC","33":"E F A B C DC vB lB"},G:{"1":"YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC PC","33":"E QC RC SC TC UC VC WC XC"},P:{"1":"qC rC sC vB tC uC vC wC xC nB yC zC","2":"I oC pC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"}},B:6,C:"text-decoration-line property"}; +module.exports={A:{D:{"1":"TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q 6B 7B","33":"0 1 2 3 4 5 6 7 J D E F A B C K L G M N O r s t u v w x y z"},M:{"1":"b"},A:{"2":"J D E F A B 4B"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB IC JC KC LC mB 2B MC nB"},K:{"1":"c","2":"A B C mB 2B nB"},E:{"1":"K L G nB wB FC GC xB yB zB 0B oB 1B","2":"I q J D AC uB BC CC DC HC","33":"E F A B C EC vB mB"},G:{"1":"ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC QC","33":"E RC SC TC UC VC WC XC YC"},P:{"1":"rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"}},B:6,C:"text-decoration-line property"}; 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 bc2b85afa29d4a..71d1610dc08b3a 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":"SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p 6B 7B"},M:{"1":"b"},A:{"2":"J D E F A B 4B"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB HC IC JC KC lB 2B LC mB"},K:{"1":"c","2":"A B C lB 2B mB"},E:{"2":"I p J D 9B uB AC BC CC GC","33":"E F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B"},G:{"2":"uB MC 3B NC OC PC","33":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},P:{"1":"qC rC sC vB tC uC vC wC xC nB yC zC","2":"I oC pC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"}},B:6,C:"text-decoration shorthand property"}; +module.exports={A:{D:{"1":"TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q 6B 7B"},M:{"1":"b"},A:{"2":"J D E F A B 4B"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB IC JC KC LC mB 2B MC nB"},K:{"1":"c","2":"A B C mB 2B nB"},E:{"2":"I q J D AC uB BC CC DC HC","33":"E F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B"},G:{"2":"uB NC 3B OC PC QC","33":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},P:{"1":"rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"}},B:6,C:"text-decoration shorthand property"}; 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 fae05834e1203c..8b8a0d56f874b0 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":"SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p 6B 7B","33":"0 1 2 3 4 5 6 J D E F A B C K L G M N O q r s t u v w x y z"},M:{"1":"b"},A:{"2":"J D E F A B 4B"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB HC IC JC KC lB 2B LC mB"},K:{"1":"c","2":"A B C lB 2B mB"},E:{"1":"K L G mB wB EC FC xB yB zB 0B nB 1B","2":"I p J D 9B uB AC BC CC GC","33":"E F A B C DC vB lB"},G:{"1":"YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC PC","33":"E QC RC SC TC UC VC WC XC"},P:{"1":"qC rC sC vB tC uC vC wC xC nB yC zC","2":"I oC pC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"}},B:6,C:"text-decoration-style property"}; +module.exports={A:{D:{"1":"TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},L:{"1":"H"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q 6B 7B","33":"0 1 2 3 4 5 6 7 J D E F A B C K L G M N O r s t u v w x y z"},M:{"1":"b"},A:{"2":"J D E F A B 4B"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB IC JC KC LC mB 2B MC nB"},K:{"1":"c","2":"A B C mB 2B nB"},E:{"1":"K L G nB wB FC GC xB yB zB 0B oB 1B","2":"I q J D AC uB BC CC DC HC","33":"E F A B C EC vB mB"},G:{"1":"ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC QC","33":"E RC SC TC UC VC WC XC YC"},P:{"1":"rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"}},B:6,C:"text-decoration-style property"}; 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 1f7d27e1ab0f9e..2b5c48e86db790 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":"J D E F A B 4B"},B:{"2":"C K L G M N O","132":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","132":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"2":"I p J D E F A B C K L G M N","132":"0 1 2 3 4 5 6 7 8 9 O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p 9B uB AC","132":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"F B C HC IC JC KC lB 2B LC mB","132":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"uB MC 3B NC OC PC","132":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B","132":"H lC mC"},J:{"2":"D A"},K:{"2":"A B C lB 2B mB","132":"c"},L:{"132":"H"},M:{"132":"b"},N:{"132":"A B"},O:{"132":"nC"},P:{"2":"I oC","132":"pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"132":"wB"},R:{"132":"0C"},S:{"132":"1C"}},B:2,C:"Media Fragments"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O","132":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","132":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"2":"I q J D E F A B C K L G M N","132":"0 1 2 3 4 5 6 7 8 9 O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q AC uB BC","132":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"F B C IC JC KC LC mB 2B MC nB","132":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"uB NC 3B OC PC QC","132":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B","132":"H mC nC"},J:{"2":"D A"},K:{"2":"A B C mB 2B nB","132":"c"},L:{"132":"H"},M:{"132":"b"},N:{"132":"A B"},O:{"132":"oC"},P:{"2":"I pC","132":"qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"132":"wB"},R:{"132":"1C"},S:{"132":"2C"}},B:2,C:"Media Fragments"}; 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 15eccd2aca30f1..cdbb7ec979287b 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB 6B 7B","260":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"1":"VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","324":"MB NB OB PB QB RB SB TB pB UB qB"},E:{"2":"I p J D E F A 9B uB AC BC CC DC vB","132":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","324":"7 8 9 AB BB CB DB EB FB GB HB IB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"260":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"rC sC vB tC uC vC wC xC nB yC zC","2":"I","132":"oC pC qC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"260":"1C"}},B:5,C:"Media Capture from DOM Elements API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB 6B 7B","260":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"1":"WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","324":"NB OB PB QB RB SB TB UB qB VB rB"},E:{"2":"I q J D E F A AC uB BC CC DC EC vB","132":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","324":"8 9 AB BB CB DB EB FB GB HB IB JB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"260":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"sC tC vB uC vC wC xC yC oB zC 0C","2":"I","132":"pC qC rC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"260":"2C"}},B:5,C:"Media Capture from DOM Elements API"}; 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 c69c66e5d2dd3e..0f80d833de2b42 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},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 NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB","194":"IB JB"},E:{"1":"G EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B C 9B uB AC BC CC DC vB lB","322":"K L mB wB"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","194":"5 6"},G:{"1":"eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC","578":"XC YC ZC aC bC cC dC"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"MediaRecorder API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB","194":"JB KB"},E:{"1":"G FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B C AC uB BC CC DC EC vB mB","322":"K L nB wB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","194":"6 7"},G:{"1":"fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC","578":"YC ZC aC bC cC dC eC"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"MediaRecorder API"}; 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 2f3e17a7f17908..684ba21d22378e 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":"J D E F A 4B","132":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t u v 6B 7B","66":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M","33":"0 1 u v w x y z","66":"N O q r s t"},E:{"1":"E F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D 9B uB AC BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC","260":"ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H mC","2":"oB I hC iC jC kC 3B lC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"nC"},P:{"1":"sC vB tC uC vC wC xC nB yC zC","2":"I oC pC qC rC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"Media Source Extensions"}; +module.exports={A:{A:{"2":"J D E F A 4B","132":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s t u v w 6B 7B","66":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M","33":"0 1 2 v w x y z","66":"N O r s t u"},E:{"1":"E F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D AC uB BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC","260":"aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H nC","2":"pB I iC jC kC lC 3B mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"oC"},P:{"1":"tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC rC sC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"Media Source Extensions"}; 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 6874e315660efa..fd425101b5660e 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"5B oB I p J D 6B 7B","132":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T","450":"U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","66":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 F B C G M N O q r s t u v w x y z IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","66":"6 7 8 9 AB BB CB DB EB FB GB HB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"450":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:7,C:"Context menu item (menuitem element)"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"5B pB I q J D 6B 7B","132":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T","450":"U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","66":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 F B C G M N O r s t u v w x y z JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","66":"7 8 9 AB BB CB DB EB FB GB HB IB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"450":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:7,C:"Context menu item (menuitem element)"}; 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 7a50ec8253be51..25f50597ec2433 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z","132":"fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","258":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB"},E:{"1":"G FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B C K L 9B uB AC BC CC DC vB lB mB wB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"513":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I","16":"oC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:1,C:"theme-color Meta Tag"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB","132":"gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","258":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB"},E:{"1":"G GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B C K L AC uB BC CC DC EC vB mB nB wB FC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"513":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I","16":"pC"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:1,C:"theme-color Meta Tag"}; 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 9bac7a0efc238e..37773bac3b40af 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":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D"},E:{"1":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a lB 2B LC mB","2":"F HC IC JC KC"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC"},H:{"1":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"1":"D A"},K:{"1":"B C c lB 2B mB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"meter element"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D"},E:{"1":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a mB 2B MC nB","2":"F IC JC KC LC"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC"},H:{"1":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"1":"D A"},K:{"1":"B C c mB 2B nB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"meter element"}; 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 886be95a36e7c8..c6998bab0b47f3 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"Web MIDI API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"Web MIDI API"}; 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 5401d81560b2bd..05c975a8e8196a 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":"J 4B","129":"D","257":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"CSS min/max-width/height"}; +module.exports={A:{A:{"1":"F A B","8":"J 4B","129":"D","257":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"CSS min/max-width/height"}; 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 f7243f15afc328..f5ac1d5d6c6884 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB","132":"I p J D E F A B C K L G M N O q r s 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB"},H:{"2":"gC"},I:{"1":"oB I H jC kC 3B lC mC","2":"hC iC"},J:{"1":"D A"},K:{"1":"B C c lB 2B mB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"MP3 audio format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB","132":"I q J D E F A B C K L G M N O r s t 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB"},H:{"2":"hC"},I:{"1":"pB I H kC lC 3B mC nC","2":"iC jC"},J:{"1":"D A"},K:{"1":"B C c mB 2B nB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"MP3 audio format"}; 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 eeeaa13b871f33..9271b5af2a7a83 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":"J D E F A B 4B"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","386":"s t"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:6,C:"Dynamic Adaptive Streaming over HTTP (MPEG-DASH)"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","386":"t u"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:6,C:"Dynamic Adaptive Streaming over HTTP (MPEG-DASH)"}; 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 af5643ebf91d73..e696579b94bc5e 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r 6B 7B","4":"0 1 2 3 4 5 s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u v HC IC JC KC lB 2B LC mB"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H lC mC","4":"oB I hC iC kC 3B","132":"jC"},J:{"1":"D A"},K:{"1":"B C c lB 2B mB","2":"A"},L:{"1":"H"},M:{"260":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"MPEG-4/H.264 video format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s 6B 7B","4":"0 1 2 3 4 5 6 t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u v w IC JC KC LC mB 2B MC nB"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H mC nC","4":"pB I iC jC lC 3B","132":"kC"},J:{"1":"D A"},K:{"1":"B C c mB 2B nB","2":"A"},L:{"1":"H"},M:{"260":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"MPEG-4/H.264 video format"}; 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 6718698c0102f0..3e3ecd54449fb0 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 7B","2":"5B oB 6B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a JC KC lB 2B LC mB","2":"F HC IC"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"CSS3 Multiple backgrounds"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 7B","2":"5B pB 6B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a KC LC mB 2B MC nB","2":"F IC JC"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"CSS3 Multiple backgrounds"}; 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 817254789604bb..26540be2e7b7ca 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":"J D E F 4B"},B:{"1":"C K L G M N O","516":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"132":"NB OB PB QB RB SB TB pB UB qB VB WB c","164":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 6B 7B","516":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","1028":"d e f g h i j k l m n o b H sB tB"},D:{"420":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","516":"LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","132":"F DC","164":"D E CC","420":"I p J 9B uB AC BC"},F:{"1":"C lB 2B LC mB","2":"F B HC IC JC KC","420":"0 1 2 3 4 5 6 7 G M N O q r s t u v w x y z","516":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","132":"RC SC","164":"E PC QC","420":"uB MC 3B NC OC"},H:{"1":"gC"},I:{"420":"oB I hC iC jC kC 3B lC mC","516":"H"},J:{"420":"D A"},K:{"1":"C lB 2B mB","2":"A B","516":"c"},L:{"516":"H"},M:{"516":"b"},N:{"1":"A B"},O:{"516":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","420":"I"},Q:{"516":"wB"},R:{"516":"0C"},S:{"164":"1C"}},B:4,C:"CSS3 Multiple column layout"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O","516":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"132":"OB PB QB RB SB TB UB qB VB rB WB XB c","164":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 6B 7B","516":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","1028":"d e f g h i j k l m n o p b H tB"},D:{"420":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","516":"MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","132":"F EC","164":"D E DC","420":"I q J AC uB BC CC"},F:{"1":"C mB 2B MC nB","2":"F B IC JC KC LC","420":"0 1 2 3 4 5 6 7 8 G M N O r s t u v w x y z","516":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","132":"SC TC","164":"E QC RC","420":"uB NC 3B OC PC"},H:{"1":"hC"},I:{"420":"pB I iC jC kC lC 3B mC nC","516":"H"},J:{"420":"D A"},K:{"1":"C mB 2B nB","2":"A B","516":"c"},L:{"516":"H"},M:{"1028":"b"},N:{"1":"A B"},O:{"516":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","420":"I"},Q:{"516":"wB"},R:{"516":"1C"},S:{"164":"2C"}},B:4,C:"CSS3 Multiple column layout"}; 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 b73eb8df5d3d40..cfa2f694be50fa 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":"J D E 4B","260":"F A B"},B:{"132":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","260":"C K L G M N O"},C:{"2":"5B oB I p 6B 7B","260":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"16":"I p J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"16":"9B uB","132":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"C LC mB","2":"F HC IC JC KC","16":"B lB 2B","132":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"16":"uB MC","132":"E 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"16":"hC iC","132":"oB I H jC kC 3B lC mC"},J:{"132":"D A"},K:{"1":"C mB","2":"A","16":"B lB 2B","132":"c"},L:{"132":"H"},M:{"260":"b"},N:{"260":"A B"},O:{"132":"nC"},P:{"132":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"132":"wB"},R:{"132":"0C"},S:{"260":"1C"}},B:5,C:"Mutation events"}; +module.exports={A:{A:{"2":"J D E 4B","260":"F A B"},B:{"132":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","260":"C K L G M N O"},C:{"2":"5B pB I q 6B 7B","260":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"16":"I q J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"16":"AC uB","132":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"C MC nB","2":"F IC JC KC LC","16":"B mB 2B","132":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"16":"uB NC","132":"E 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"16":"iC jC","132":"pB I H kC lC 3B mC nC"},J:{"132":"D A"},K:{"1":"C nB","2":"A","16":"B mB 2B","132":"c"},L:{"132":"H"},M:{"260":"b"},N:{"260":"A B"},O:{"132":"oC"},P:{"132":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"132":"wB"},R:{"132":"1C"},S:{"260":"2C"}},B:5,C:"Mutation events"}; 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 691519fec79919..2de1f018e78e12 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":"J D E 4B","8":"F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N","33":"O q r s t u v w x"},E:{"1":"D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC","33":"OC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB hC iC jC","8":"I kC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","8":"A"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Mutation Observer"}; +module.exports={A:{A:{"1":"B","2":"J D E 4B","8":"F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N","33":"O r s t u v w x y"},E:{"1":"D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC","33":"PC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB iC jC kC","8":"I lC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","8":"A"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Mutation Observer"}; 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 74e8d3bc4025b4..e92cb2177fbc69 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":"4B","8":"J D"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","4":"5B oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a JC KC lB 2B LC mB","2":"F HC IC"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"B C c lB 2B mB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Web Storage - name/value pairs"}; +module.exports={A:{A:{"1":"E F A B","2":"4B","8":"J D"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","4":"5B pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a KC LC mB 2B MC nB","2":"F IC JC"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"B C c mB 2B nB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Web Storage - name/value pairs"}; 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 77217b254aa3a1..d1555aa6c5ac0e 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":"J D E F A B 4B"},B:{"2":"C K L G M N O","194":"P Q R S T U","260":"V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB","194":"gB hB iB jB kB P Q R S T U","260":"V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC","516":"xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB HC IC JC KC lB 2B LC mB","194":"VB WB c XB YB ZB aB bB cB dB","260":"eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC","516":"xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:7,C:"File System Access API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O","194":"P Q R S T U","260":"V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB","194":"hB iB jB kB lB P Q R S T U","260":"V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC","516":"xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB IC JC KC LC mB 2B MC nB","194":"WB XB c YB ZB aB bB cB dB eB","260":"fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC","516":"xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:7,C:"File System Access API"}; 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 2c2d0e50ad756e..46070b7e6ad363 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p","33":"J D E F A B C"},E:{"1":"E F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D 9B uB AC BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC PC QC"},H:{"2":"gC"},I:{"1":"I H kC 3B lC mC","2":"oB hC iC jC"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"Navigation Timing API"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q","33":"J D E F A B C"},E:{"1":"E F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D AC uB BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC QC RC"},H:{"2":"hC"},I:{"1":"I H lC 3B mC nC","2":"pB iC jC kC"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"Navigation Timing API"}; 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 f06060ab321109..a5e699e269d978 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":"J D E F A B 4B"},B:{"2":"C K L G M N O","1028":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB","1028":"qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB HC IC JC KC lB 2B LC mB","1028":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"hC lC mC","132":"oB I iC jC kC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"rC sC vB tC uC vC wC xC nB yC zC","132":"I","516":"oC pC qC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"260":"1C"}},B:7,C:"Network Information API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O","1028":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB","1028":"rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB IC JC KC LC mB 2B MC nB","1028":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"iC mC nC","132":"pB I jC kC lC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"sC tC vB uC vC wC xC yC oB zC 0C","132":"I","516":"pC qC rC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"260":"2C"}},B:7,C:"Network Information API"}; 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 37df9d97615716..f4d0f13f6ac4da 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":"J D E F A B 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I","36":"p J D E F A B C K L G M N O q r s"},E:{"1":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u v HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B","36":"H lC mC"},J:{"1":"A","2":"D"},K:{"2":"A B C lB 2B mB","36":"c"},L:{"513":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"36":"I","258":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"258":"0C"},S:{"1":"1C"}},B:1,C:"Web Notifications"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s t 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I","36":"q J D E F A B C K L G M N O r s t"},E:{"1":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u v w IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B","36":"H mC nC"},J:{"1":"A","2":"D"},K:{"2":"A B C mB 2B nB","36":"c"},L:{"513":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"36":"I","258":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"258":"1C"},S:{"1":"2C"}},B:1,C:"Web Notifications"}; 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 62d7d7aeb35657..6c4bbc660fb13c 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":"J D E F A B 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K"},C:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB 6B 7B"},D:{"1":"PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB HC IC JC KC lB 2B LC mB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D","16":"A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I oC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"Object.entries"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K"},C:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB 6B 7B"},D:{"1":"QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB 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 c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB IC JC KC LC mB 2B MC nB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D","16":"A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"Object.entries"}; 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 2168df2f874024..6d066cf9f45a7c 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G","260":"M N O"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D 9B uB AC BC","132":"E F CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F G M N O HC IC JC","33":"B C KC lB 2B LC mB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC PC","132":"E QC RC SC"},H:{"33":"gC"},I:{"1":"H mC","2":"oB I hC iC jC kC 3B lC"},J:{"2":"D A"},K:{"1":"c","2":"A","33":"B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"CSS3 object-fit/object-position"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G","260":"M N O"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D AC uB BC CC","132":"E F DC EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F G M N O IC JC KC","33":"B C LC mB 2B MC nB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC QC","132":"E RC SC TC"},H:{"33":"hC"},I:{"1":"H nC","2":"pB I iC jC kC lC 3B mC"},J:{"2":"D A"},K:{"1":"c","2":"A","33":"B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"CSS3 object-fit/object-position"}; 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 03ff7d553bb8b7..640045f9bce45b 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB","2":"0 1 2 3 4 5 6 I p J D E F A B C K L G M N O q r s t u v w x y z LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 u v w x y z","2":"8 9 F B C G M N O q r s t AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"I","2":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:7,C:"Object.observe data binding"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB","2":"0 1 2 3 4 5 6 7 I q J D E F A B C K L G M N O r s t u v w x y z MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 v w x y z","2":"9 F B C G M N O r s t u AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"I","2":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:7,C:"Object.observe data binding"}; 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 ba96ee62d3aa33..5effa41bfffd7a 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":"J D E F A B 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K"},C:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","8":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB 6B 7B"},D:{"1":"PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","8":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","8":"I p J D E F A 9B uB AC BC CC DC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","8":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB HC IC JC KC lB 2B LC mB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","8":"E uB MC 3B NC OC PC QC RC SC TC"},H:{"8":"gC"},I:{"1":"H","8":"oB I hC iC jC kC 3B lC mC"},J:{"8":"D A"},K:{"1":"c","8":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"8":"A B"},O:{"1":"nC"},P:{"1":"pC qC rC sC vB tC uC vC wC xC nB yC zC","8":"I oC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"Object.values method"}; +module.exports={A:{A:{"8":"J D E F A B 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K"},C:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","8":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB 6B 7B"},D:{"1":"QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","8":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","8":"I q J D E F A AC uB 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 c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","8":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB IC JC KC LC mB 2B MC nB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","8":"E uB NC 3B OC PC QC RC SC TC UC"},H:{"8":"hC"},I:{"1":"H","8":"pB I iC jC kC lC 3B mC nC"},J:{"8":"D A"},K:{"1":"c","8":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"8":"A B"},O:{"1":"oC"},P:{"1":"qC rC sC tC vB uC vC wC xC yC oB zC 0C","8":"I pC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"Object.values method"}; 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 ba8fffa3ec2c66..26e39ac6f667a0 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":"J D E F A B 4B"},B:{"1":"K L G M N O","2":"C P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D","130":"A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:6,C:"Object RTC (ORTC) API for WebRTC"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"K L G M N O","2":"C P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D","130":"A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:6,C:"Object RTC (ORTC) API for WebRTC"}; 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 4157ea151d4567..b185db1cdb6e88 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 4B","8":"J D E"},B:{"1":"C K L G M N O P Q R S T","2":"U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S 6B 7B","2":"T U V W X Y Z a d e f g h i j k l m n o b H sB tB","4":"oB","8":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T","2":"U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","8":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB KC lB 2B LC mB","2":"F fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC","8":"IC JC"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"oB I hC iC jC kC 3B lC mC","2":"H"},J:{"1":"D A"},K:{"1":"B C lB 2B mB","2":"A c"},L:{"2":"H"},M:{"2":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"2":"0C"},S:{"1":"1C"}},B:7,C:"Offline web applications"}; +module.exports={A:{A:{"1":"A B","2":"F 4B","8":"J D E"},B:{"1":"C K L G M N O P Q R S T","2":"U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S 6B 7B","2":"T U V W X Y Z a d e f g h i j k l m n o p b H tB","4":"pB","8":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T","2":"U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","8":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB LC mB 2B MC nB","2":"F gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC","8":"JC KC"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"pB I iC jC kC lC 3B mC nC","2":"H"},J:{"1":"D A"},K:{"1":"B C mB 2B nB","2":"A c"},L:{"2":"H"},M:{"2":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"2":"1C"},S:{"1":"2C"}},B:7,C:"Offline web applications"}; 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 9dae4dfaa5640a..2d29e5730d4040 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB 6B 7B","194":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b"},D:{"1":"bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","322":"TB pB UB qB VB WB c XB YB ZB aB"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB HC IC JC KC lB 2B LC mB","322":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"194":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"vB tC uC vC wC xC nB yC zC","2":"I oC pC qC rC sC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"194":"1C"}},B:1,C:"OffscreenCanvas"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB 6B 7B","194":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p"},D:{"1":"cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","322":"UB qB VB rB WB XB c YB ZB aB bB"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB IC JC KC LC mB 2B MC nB","322":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"vB uC vC wC xC yC oB zC 0C","2":"I pC qC rC sC tC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"194":"2C"}},B:1,C:"OffscreenCanvas"}; 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 37ecbae667351c..c71206ad356d0e 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":"J D E F A B 4B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","2":"5B oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L 9B uB AC BC CC DC vB lB mB wB","132":"G EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a JC KC lB 2B LC mB","2":"F HC IC"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"oB I H jC kC 3B lC mC","16":"hC iC"},J:{"1":"A","2":"D"},K:{"1":"B C c lB 2B mB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"Ogg Vorbis audio format"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","2":"5B pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L AC uB BC CC DC EC vB mB nB wB","132":"G FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a KC LC mB 2B MC nB","2":"F IC JC"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"pB I H kC lC 3B mC nC","16":"iC jC"},J:{"1":"A","2":"D"},K:{"1":"B C c mB 2B nB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"Ogg Vorbis audio format"}; 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 356ce1dff01326..57b0e3de5d26b0 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":"J D E 4B","8":"F A B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","8":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","2":"5B oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a JC KC lB 2B LC mB","2":"F HC IC"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"1":"b"},N:{"8":"A B"},O:{"1":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"2":"0C"},S:{"1":"1C"}},B:6,C:"Ogg/Theora video format"}; +module.exports={A:{A:{"2":"J D E 4B","8":"F A B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","8":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","2":"5B pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a KC LC mB 2B MC nB","2":"F IC JC"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"1":"b"},N:{"8":"A B"},O:{"1":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"2":"1C"},S:{"1":"2C"}},B:6,C:"Ogg/Theora video format"}; 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 16bcc5dcc95b53..12f188a7c22cd1 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G","16":"M N O q"},E:{"1":"D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"F B HC IC JC KC lB 2B LC","16":"C"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC"},H:{"1":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Reversed attribute of ordered lists"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G","16":"M N O r"},E:{"1":"D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"F B IC JC KC LC mB 2B MC","16":"C"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC"},H:{"1":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Reversed attribute of ordered lists"}; 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 bf31eebc08a3db..c49c0c3ceade24 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":"J D E F A B 4B"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G"},C:{"1":"LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 6B 7B"},D:{"1":"QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC 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 c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB HC IC JC KC lB 2B LC mB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I oC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:1,C:"\"once\" event listener option"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G"},C:{"1":"MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 6B 7B"},D:{"1":"RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB 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 c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB IC JC KC LC mB 2B MC nB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:1,C:"\"once\" event listener option"}; 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 0ab0108e19ebc2..02d81b71f24b4f 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":"J D 4B","260":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","2":"5B oB","516":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K"},E:{"1":"p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC","4":"mB"},G:{"1":"E 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB MC"},H:{"2":"gC"},I:{"1":"oB I H jC kC 3B lC mC","16":"hC iC"},J:{"1":"A","132":"D"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Online/offline status"}; +module.exports={A:{A:{"1":"F A B","2":"J D 4B","260":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","2":"5B pB","516":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K"},E:{"1":"q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC","4":"nB"},G:{"1":"E 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB NC"},H:{"2":"hC"},I:{"1":"pB I H kC lC 3B mC nC","16":"iC jC"},J:{"1":"A","132":"D"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Online/offline status"}; 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 c4fe1444ec20f1..0c3db51598d47e 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":"J D E F A B 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L 6B 7B"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"2":"I p J D E F A 9B uB AC BC CC DC vB","132":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC","132":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"Opus"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L 6B 7B"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"2":"I q J D E F A AC uB BC CC DC EC vB","132":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC","132":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"Opus"}; 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 f44f8a772fa07e..7605783866d9f1 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","194":"TB pB UB qB VB WB c XB YB"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:4,C:"Orientation Sensor"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","194":"UB qB VB rB WB XB c YB ZB"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:4,C:"Orientation Sensor"}; 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 63752c1a5e685b..67985430b3414f 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":"J D 4B","260":"E","388":"F A B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","388":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a LC","129":"mB","260":"F B HC IC JC KC lB 2B"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"C c mB","260":"A B lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"388":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"CSS outline properties"}; +module.exports={A:{A:{"2":"J D 4B","260":"E","388":"F A B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","388":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a MC","129":"nB","260":"F B IC JC KC LC mB 2B"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"C c nB","260":"A B mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"388":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"CSS outline properties"}; 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 699bffce90f8bf..d52c9544d54698 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":"J D E F A B 4B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L"},C:{"1":"JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB 6B 7B"},D:{"1":"SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC DC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB HC IC JC KC lB 2B LC mB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"qC rC sC vB tC uC vC wC xC nB yC zC","2":"I oC pC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"String.prototype.padStart(), String.prototype.padEnd()"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 6B 7B"},D:{"1":"TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC EC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB IC JC KC LC mB 2B MC nB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"String.prototype.padStart(), String.prototype.padEnd()"}; 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 e1023cab4f2c95..5d6b563b004fbd 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":"J D E F A 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB MC 3B"},H:{"2":"gC"},I:{"1":"oB I H jC kC 3B lC mC","16":"hC iC"},J:{"1":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"PageTransitionEvent"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB NC 3B"},H:{"2":"hC"},I:{"1":"pB I H kC lC 3B mC nC","16":"iC jC"},J:{"1":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"PageTransitionEvent"}; 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 12c66362e1a337..0f9afb9446f7ce 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F 6B 7B","33":"A B C K L G M N"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K","33":"0 1 2 3 L G M N O q r s t u v w x y z"},E:{"1":"D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J 9B uB AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"F B C HC IC JC KC lB 2B LC","33":"G M N O q"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B","33":"lC mC"},J:{"1":"A","2":"D"},K:{"1":"c mB","2":"A B C lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","33":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"Page Visibility"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F 6B 7B","33":"A B C K L G M N"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K","33":"0 1 2 3 4 L G M N O r s t u v w x y z"},E:{"1":"D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J AC uB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"F B C IC JC KC LC mB 2B MC","33":"G M N O r"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B","33":"mC nC"},J:{"1":"A","2":"D"},K:{"1":"c nB","2":"A B C mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","33":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"Page Visibility"}; 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 7dd75e08ab04e6..bb6e3c1f573d98 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":"J D E F A B 4B"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G"},C:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 6B 7B"},D:{"1":"MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC DC"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:1,C:"Passive event listeners"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G"},C:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 6B 7B"},D:{"1":"NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC EC"},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 c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:1,C:"Passive event listeners"}; 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 d83fb5861dd39e..d1b4f8bdf3494a 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":"J D E F A B 4B"},B:{"2":"C K L G M N O","16":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H 6B 7B","16":"sB tB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","16":"sB tB 8B"},E:{"1":"C K mB","2":"I p J D E F A B 9B uB AC BC CC DC vB lB","16":"L G wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB HC IC JC KC lB 2B LC mB","16":"OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"16":"gC"},I:{"2":"oB I hC iC jC kC 3B lC mC","16":"H"},J:{"2":"D","16":"A"},K:{"2":"A B C lB 2B mB","16":"c"},L:{"16":"H"},M:{"16":"b"},N:{"2":"A","16":"B"},O:{"16":"nC"},P:{"2":"I oC pC","16":"qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"16":"wB"},R:{"16":"0C"},S:{"2":"1C"}},B:1,C:"Password Rules"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O","16":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b 6B 7B","16":"H tB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","16":"tB 8B 9B"},E:{"1":"C K nB","2":"I q J D E F A B AC uB BC CC DC EC vB mB","16":"L G wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB IC JC KC LC mB 2B MC nB","16":"PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"16":"hC"},I:{"2":"pB I iC jC kC lC 3B mC nC","16":"H"},J:{"2":"D","16":"A"},K:{"2":"A B C mB 2B nB","16":"c"},L:{"16":"H"},M:{"16":"b"},N:{"2":"A","16":"B"},O:{"16":"oC"},P:{"2":"I pC qC","16":"rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"16":"wB"},R:{"16":"1C"},S:{"2":"2C"}},B:1,C:"Password Rules"}; 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 37420e548eff5d..f04d48792a708a 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K","132":"L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","132":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB"},D:{"1":"aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 I p J D E F A B C K L G M N O q r s t u v w x y z","132":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB"},E:{"1":"A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D 9B uB AC BC","132":"E F CC"},F:{"1":"QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t HC IC JC KC lB 2B LC mB","132":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC PC","16":"E","132":"QC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"vB tC uC vC wC xC nB yC zC","132":"I oC pC qC rC sC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Path2D"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K","132":"L G M N O"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","132":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB"},D:{"1":"bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 I q J D E F A B C K L G M N O r s t u v w x y z","132":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB"},E:{"1":"A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D AC uB BC CC","132":"E F DC"},F:{"1":"RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u IC JC KC LC mB 2B MC nB","132":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC QC","16":"E","132":"RC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"vB uC vC wC xC yC oB zC 0C","132":"I pC qC rC sC tC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Path2D"}; 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 51b25b37409e0d..c06d858eed2732 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K","322":"L","8196":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB 6B 7B","4162":"QB RB SB TB pB UB qB VB WB c XB","16452":"YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"1":"kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","194":"OB PB QB RB SB TB","1090":"pB UB","8196":"qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB"},E:{"1":"K L G mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC DC","514":"A B vB","8196":"C lB"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB HC IC JC KC lB 2B LC mB","194":"BB CB DB EB FB GB HB IB","8196":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB"},G:{"1":"YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC","514":"TC UC VC","8196":"WC XC"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"2049":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"uC vC wC xC nB yC zC","2":"I","8196":"oC pC qC rC sC vB tC"},Q:{"8196":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:2,C:"Payment Request API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K","322":"L","8196":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB 6B 7B","4162":"RB SB TB UB qB VB rB WB XB c YB","16452":"ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"1":"lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","194":"PB QB RB SB TB UB","1090":"qB VB","8196":"rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB"},E:{"1":"K L G nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC EC","514":"A B vB","8196":"C mB"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB IC JC KC LC mB 2B MC nB","194":"CB DB EB FB GB HB IB JB","8196":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB"},G:{"1":"ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC","514":"UC VC WC","8196":"XC YC"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"2049":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"vC wC xC yC oB zC 0C","2":"I","8196":"pC qC rC sC tC vB uC"},Q:{"8196":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:2,C:"Payment Request API"}; 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 d7f57e4de8696d..6f8f10fe78f2fa 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":"J D E F A 4B","132":"B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","16":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"F B HC IC JC KC lB 2B LC"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"16":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"16":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:6,C:"Built-in PDF viewer"}; +module.exports={A:{A:{"2":"J D E F A 4B","132":"B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","16":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"F B IC JC KC LC mB 2B MC"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"16":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"16":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:6,C:"Built-in PDF viewer"}; 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 f403d055b88311..62ff2b668b8202 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB 6B 7B"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB"},E:{"1":"nB 1B GC","2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"1":"nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"Permissions API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB 6B 7B"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB"},E:{"1":"oB 1B HC","2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"Permissions API"}; 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 4521c0d726952b..08b88b5a3107ca 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":"J D E F A B 4B"},B:{"2":"C K L G M N O","258":"P Q R S T U","322":"V W","388":"X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB 6B 7B","258":"gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB","258":"UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U","322":"V W","388":"X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B 9B uB AC BC CC DC vB","258":"C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB HC IC JC KC lB 2B LC mB","258":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB","322":"eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC","258":"WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B lC mC","258":"H"},J:{"2":"D A"},K:{"2":"A B C lB 2B mB","258":"c"},L:{"388":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC","258":"rC sC vB tC uC vC wC xC nB yC zC"},Q:{"258":"wB"},R:{"388":"0C"},S:{"2":"1C"}},B:5,C:"Permissions Policy"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O","258":"P Q R S T U","322":"V W","388":"X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB 6B 7B","258":"hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB","258":"VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U","322":"V W","388":"X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B AC uB BC CC DC EC vB","258":"C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB IC JC KC LC mB 2B MC nB","258":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB","322":"fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC","258":"XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B mC nC","258":"H"},J:{"2":"D A"},K:{"2":"A B C mB 2B nB","258":"c"},L:{"388":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC","258":"sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"258":"wB"},R:{"388":"1C"},S:{"2":"2C"}},B:5,C:"Permissions Policy"}; 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 8b968804b76109..f091beebe4c5a8 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB 6B 7B","132":"eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","1090":"ZB","1412":"dB","1668":"aB bB cB"},D:{"1":"cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB","2114":"bB"},E:{"1":"L G wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC DC","4100":"A B C K vB lB mB"},F:{"1":"fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","8196":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB"},G:{"1":"dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC","4100":"RC SC TC UC VC WC XC YC ZC aC bC cC"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"16388":"H"},M:{"16388":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:5,C:"Picture-in-Picture"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB 6B 7B","132":"fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","1090":"aB","1412":"eB","1668":"bB cB dB"},D:{"1":"dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB","2114":"cB"},E:{"1":"L G wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC EC","4100":"A B C K vB mB nB"},F:{"1":"gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","8196":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB"},G:{"1":"eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC","4100":"SC TC UC VC WC XC YC ZC aC bC cC dC"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"16388":"H"},M:{"16388":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:5,C:"Picture-in-Picture"}; 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 95a1e757cdc434..48dd737bbca6e7 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":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","578":"5 6 7 8"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 I p J D E F A B C K L G M N O q r s t u v w x y z","194":"8"},E:{"1":"A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u HC IC JC KC lB 2B LC mB","322":"v"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Picture element"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","578":"6 7 8 9"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 I q J D E F A B C K L G M N O r s t u v w x y z","194":"9"},E:{"1":"A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u v IC JC KC LC mB 2B MC nB","322":"w"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Picture element"}; 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 f96d3f99f730fa..946adb1dc881cc 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":"J D E F A B 4B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M"},C:{"2":"5B","194":"0 1 2 3 4 5 6 7 8 9 oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L"},E:{"1":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"194":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"194":"1C"}},B:1,C:"Ping attribute"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M"},C:{"2":"5B","194":"0 1 2 3 4 5 6 7 8 9 pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L"},E:{"1":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"194":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"194":"2C"}},B:1,C:"Ping attribute"}; 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 d8b576825213fa..0d48ff69cca75c 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":"4B","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"PNG alpha transparency"}; +module.exports={A:{A:{"1":"D E F A B","2":"4B","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"PNG alpha transparency"}; 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 5df26a89c2d52e..a8ffc2c534a7eb 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":"J D E F A 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 7B","2":"5B oB 6B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:7,C:"CSS pointer-events (for HTML)"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 7B","2":"5B pB 6B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:7,C:"CSS pointer-events (for HTML)"}; 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 afb115e8648a97..3ffa3dcdc31191 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":"J D E F 4B","164":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p 6B 7B","8":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O q r s t u v w x y z AB BB","328":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},D:{"1":"QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r s","8":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","584":"NB OB PB"},E:{"1":"K L G wB EC FC xB yB zB 0B nB 1B GC","2":"I p J 9B uB AC","8":"D E F A B C BC CC DC vB lB","1096":"mB"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB","8":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z","584":"AB BB CB"},G:{"1":"aC bC cC dC eC fC xB yB zB 0B nB 1B","8":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC","6148":"ZC"},H:{"2":"gC"},I:{"1":"H","8":"oB I hC iC jC kC 3B lC mC"},J:{"8":"D A"},K:{"1":"c","2":"A","8":"B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","36":"A"},O:{"1":"nC"},P:{"1":"pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"oC","8":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"328":"1C"}},B:2,C:"Pointer events"}; +module.exports={A:{A:{"1":"B","2":"J D E F 4B","164":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q 6B 7B","8":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O r s t u v w x y z AB BB CB","328":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},D:{"1":"RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r s t","8":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","584":"OB PB QB"},E:{"1":"K L G wB FC GC xB yB zB 0B oB 1B HC","2":"I q J AC uB BC","8":"D E F A B C CC DC EC vB mB","1096":"nB"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB","8":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB","584":"BB CB DB"},G:{"1":"bC cC dC eC fC gC xB yB zB 0B oB 1B","8":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC","6148":"aC"},H:{"2":"hC"},I:{"1":"H","8":"pB I iC jC kC lC 3B mC nC"},J:{"8":"D A"},K:{"1":"c","2":"A","8":"B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","36":"A"},O:{"1":"oC"},P:{"1":"qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"pC","8":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"328":"2C"}},B:2,C:"Pointer events"}; 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 c2073697f9d4a1..de5b564bfd5416 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":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K 6B 7B","33":"0 1 2 3 4 5 6 7 8 9 L G M N O q r s t u v w x y z AB BB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G","33":"0 1 2 3 4 5 6 7 t u v w x y z","66":"M N O q r s"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB","33":"G M N O q r s t u"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"Pointer Lock API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K 6B 7B","33":"0 1 2 3 4 5 6 7 8 9 L G M N O r s t u v w x y z AB BB CB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G","33":"0 1 2 3 4 5 6 7 8 u v w x y z","66":"M N O r s t"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB","33":"G M N O r s t u v"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"Pointer Lock API"}; 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 5dd871c43a2ae4..7a13c40a50aaba 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T","322":"Z a d e f g h i j k l m n o b H","450":"U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB","194":"hB iB jB kB P Q R S T","322":"V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","450":"U"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB HC IC JC KC lB 2B LC mB","194":"VB WB c XB YB ZB aB bB cB dB eB","322":"fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"450":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:7,C:"Portals"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T","322":"Z a d e f g h i j k l m n o p b H","450":"U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB","194":"iB jB kB lB P Q R S T","322":"V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","450":"U"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB IC JC KC LC mB 2B MC nB","194":"WB XB c YB ZB aB bB cB dB eB fB","322":"gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"450":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:7,C:"Portals"}; 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 adf52f79c4962b..33f3f26800a9b0 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB 6B 7B"},D:{"1":"iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB"},E:{"1":"K L G mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B C 9B uB AC BC CC DC vB lB"},F:{"1":"VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB HC IC JC KC lB 2B LC mB"},G:{"1":"ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"uC vC wC xC nB yC zC","2":"I oC pC qC rC sC vB tC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"prefers-color-scheme media query"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB 6B 7B"},D:{"1":"jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB"},E:{"1":"K L G nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B C AC uB BC CC DC EC vB mB"},F:{"1":"WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB IC JC KC LC mB 2B MC nB"},G:{"1":"aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"vC wC xC yC oB zC 0C","2":"I pC qC rC sC tC vB uC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"prefers-color-scheme media query"}; 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 6793a4e922f033..761aba0406c9ea 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB 6B 7B"},D:{"1":"gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC"},F:{"1":"c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB HC IC JC KC lB 2B LC mB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"tC uC vC wC xC nB yC zC","2":"I oC pC qC rC sC vB"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"prefers-reduced-motion media query"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB 6B 7B"},D:{"1":"hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC"},F:{"1":"c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB IC JC KC LC mB 2B MC nB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"uC vC wC xC yC oB zC 0C","2":"I pC qC rC sC tC vB"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"prefers-reduced-motion media query"}; 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 11e74244bcb147..8951c5698fd447 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D"},E:{"1":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a lB 2B LC mB","2":"F HC IC JC KC"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC","132":"PC"},H:{"1":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"1":"D A"},K:{"1":"B C c lB 2B mB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"progress element"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D"},E:{"1":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a mB 2B MC nB","2":"F IC JC KC LC"},G:{"1":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC","132":"QC"},H:{"1":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"1":"D A"},K:{"1":"B C c mB 2B nB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"progress element"}; 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 0d30e1b57a8eb6..3cefc9e40a441a 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":"J D E F A B 4B"},B:{"1":"O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N"},C:{"1":"TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB 6B 7B"},D:{"1":"WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB"},E:{"1":"C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B 9B uB AC BC CC DC vB"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB HC IC JC KC lB 2B LC mB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"rC sC vB tC uC vC wC xC nB yC zC","2":"I oC pC qC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:6,C:"Promise.prototype.finally"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N"},C:{"1":"UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB 6B 7B"},D:{"1":"XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB"},E:{"1":"C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B AC uB BC CC DC EC vB"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB IC JC KC LC mB 2B MC nB"},G:{"1":"XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC rC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:6,C:"Promise.prototype.finally"}; 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 c3d4f2ab378a80..cb48395ef14c0e 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":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b 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 NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","4":"y z","8":"5B oB I p J D E F A B C K L G M N O q r s t u v w x 6B 7B"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","4":"3","8":"0 1 2 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","8":"I p J D 9B uB AC BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","4":"q","8":"F B C G M N O HC IC JC KC lB 2B LC mB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","8":"uB MC 3B NC OC PC"},H:{"8":"gC"},I:{"1":"H mC","8":"oB I hC iC jC kC 3B lC"},J:{"8":"D A"},K:{"1":"c","8":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"8":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"Promises"}; +module.exports={A:{A:{"8":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","4":"0 z","8":"5B pB I q J D E F A B C K L G M N O r s t u v w x y 6B 7B"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","4":"4","8":"0 1 2 3 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","8":"I q J D AC uB BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","4":"r","8":"F B C G M N O IC JC KC LC mB 2B MC nB"},G:{"1":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","8":"uB NC 3B OC PC QC"},H:{"8":"hC"},I:{"1":"H nC","8":"pB I iC jC kC lC 3B mC"},J:{"8":"D A"},K:{"1":"c","8":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"8":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"Promises"}; 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 2aa0aecfdc48af..71b5e05e98bb34 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"1":"1C"}},B:4,C:"Proximity API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"1":"2C"}},B:4,C:"Proximity API"}; 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 d9b68546375617..89cd20603b8de3 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":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N 6B 7B"},D:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"9 I p J D E F A B C K L G M N O AB BB CB DB EB FB GB HB IB JB","66":"0 1 2 3 4 5 6 7 8 q r s t u v w x y z"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC DC"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 F B C w x y z HC IC JC KC lB 2B LC mB","66":"G M N O q r s t u v"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"Proxy object"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N 6B 7B"},D:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O AB BB CB DB EB FB GB HB IB JB KB","66":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC EC"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 F B C x y z IC JC KC LC mB 2B MC nB","66":"G M N O r s t u v w"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"Proxy object"}; 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 c6d03635734b37..e07780d6d055c7 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB","2":"0 1 2 3 4 5 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB","2":"0 1 2 3 4 5 6 7 8 I p J D E F A B C K L G M N O q r s t u v w x y z eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB","2":"F B C G M N O q YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","4":"u","16":"r s t v"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"I oC pC qC rC sC vB","2":"tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"1":"1C"}},B:6,C:"HTTP Public Key Pinning"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB","2":"0 1 2 3 4 5 6 5B pB I q J D E F A B C K L G M N O r s t u v w x y z fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB","2":"F B C G M N O r ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","4":"v","16":"s t u w"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"I pC qC rC sC tC vB","2":"uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"1":"2C"}},B:6,C:"HTTP Public Key Pinning"}; 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 8a515b993f9b5e..df97f4bfda0ed0 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":"J D E F A B 4B"},B:{"1":"N O","2":"C K L G M","257":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB 6B 7B","257":"FB HB IB JB KB LB MB OB PB QB RB SB TB pB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","1281":"GB NB UB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB","257":"LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","388":"FB GB HB IB JB KB"},E:{"2":"I p J D E F 9B uB AC BC CC","514":"A B C K L G DC vB lB mB wB EC FC xB yB zB 0B","4100":"nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","16":"8 9 AB BB CB","257":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"2":"0C"},S:{"257":"1C"}},B:5,C:"Push API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"N O","2":"C K L G M","257":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB 6B 7B","257":"GB IB JB KB LB MB NB PB QB RB SB TB UB qB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","1281":"HB OB VB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB","257":"MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","388":"GB HB IB JB KB LB"},E:{"2":"I q J D E F AC uB BC CC DC","514":"A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB","4612":"1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","16":"9 AB BB CB DB","257":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"2":"1C"},S:{"257":"2C"}},B:5,C:"Push API"}; 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 e68a4fbffadeac..0e128d64eb27a3 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":"4B","8":"J D","132":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","8":"5B oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a IC JC KC lB 2B LC mB","8":"F HC"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"querySelector/querySelectorAll"}; +module.exports={A:{A:{"1":"F A B","2":"4B","8":"J D","132":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","8":"5B pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a JC KC LC mB 2B MC nB","8":"F IC"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"querySelector/querySelectorAll"}; 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 64ab1c947e436d..172695a1f12459 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":"J D E F A B","16":"4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","16":"5B oB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L G M N O q r s t u v w"},E:{"1":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"I p 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","16":"F HC","132":"B C IC JC KC lB 2B LC mB"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB MC 3B NC OC"},H:{"1":"gC"},I:{"1":"oB I H jC kC 3B lC mC","16":"hC iC"},J:{"1":"D A"},K:{"1":"c","132":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"257":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"readonly attribute of input and textarea elements"}; +module.exports={A:{A:{"1":"J D E F A B","16":"4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","16":"5B pB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L G M N O r s t u v w x"},E:{"1":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"I q AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","16":"F IC","132":"B C JC KC LC mB 2B MC nB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB NC 3B OC PC"},H:{"1":"hC"},I:{"1":"pB I H kC lC 3B mC nC","16":"iC jC"},J:{"1":"D A"},K:{"1":"c","132":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"257":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"readonly attribute of input and textarea elements"}; 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 8344423b45b8f3..349543542cfef1 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":"J D E F A 4B","132":"B"},B:{"1":"P Q R S","132":"C K L G M N O","513":"T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V","2":"0 1 2 3 4 5 6 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","513":"W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"1":"qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T","2":"I p J D E F A B C K L G M N O q r","260":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB","513":"U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"C lB mB","2":"I p J D 9B uB AC BC","132":"E F A B CC DC vB","1025":"K L G wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB","2":"F B C HC IC JC KC lB 2B LC mB","513":"fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"1":"XC YC ZC aC","2":"uB MC 3B NC OC PC","132":"E QC RC SC TC UC VC WC","1025":"bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"513":"H"},M:{"513":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"513":"0C"},S:{"1":"1C"}},B:4,C:"Referrer Policy"}; +module.exports={A:{A:{"2":"J D E F A 4B","132":"B"},B:{"1":"P Q R S","132":"C K L G M N O","513":"T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V","2":"0 1 2 3 4 5 6 7 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","513":"W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"1":"rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T","2":"I q J D E F A B C K L G M N O r s","260":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB","513":"U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"C mB nB","2":"I q J D AC uB BC CC","132":"E F A B DC EC vB","1025":"K L G wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB","2":"F B C IC JC KC LC mB 2B MC nB","513":"gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"1":"YC ZC aC bC","2":"uB NC 3B OC PC QC","132":"E RC SC TC UC VC WC XC","1025":"cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"513":"H"},M:{"513":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"513":"1C"},S:{"1":"2C"}},B:4,C:"Referrer Policy"}; 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 79d978ae8c5a7c..6f301ea419937a 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":"J D E F A B 4B"},B:{"2":"C K L G M N O","129":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","2":"5B"},D:{"2":"I p J D E F A B C","129":"0 1 2 3 4 5 6 7 8 9 K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"F B HC IC JC KC lB 2B","129":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D","129":"A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:1,C:"Custom protocol handling"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O","129":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","2":"5B"},D:{"2":"I q J D E F A B C","129":"0 1 2 3 4 5 6 7 8 9 K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"F B IC JC KC LC mB 2B","129":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D","129":"A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:1,C:"Custom protocol handling"}; 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 c9684ce2b02779..3911a38106523f 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 6B 7B"},D:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:1,C:"rel=noopener"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 6B 7B"},D:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:1,C:"rel=noopener"}; 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 757c3360a09aa1..657082294fa955 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":"J D E F A 4B","132":"B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","16":"C"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L G"},E:{"1":"p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB"},H:{"2":"gC"},I:{"1":"oB I H jC kC 3B lC mC","16":"hC iC"},J:{"1":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Link type \"noreferrer\""}; +module.exports={A:{A:{"2":"J D E F A 4B","132":"B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","16":"C"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L G"},E:{"1":"q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB"},H:{"2":"hC"},I:{"1":"pB I H kC lC 3B mC nC","16":"iC jC"},J:{"1":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Link type \"noreferrer\""}; 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 c0edc9edb2ca33..f3575102ca5664 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":"J D E F A B 4B"},B:{"1":"O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M","132":"N"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","132":"LB MB NB OB PB QB RB SB TB pB UB qB VB WB c"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E 9B uB AC BC CC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","132":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"sC vB tC uC vC wC xC nB yC zC","2":"I","132":"oC pC qC rC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"relList (DOMTokenList)"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M","132":"N"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","132":"MB NB OB PB QB RB SB TB UB qB VB rB WB XB c"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E AC uB BC CC DC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","132":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"tC vB uC vC wC xC yC oB zC 0C","2":"I","132":"pC qC rC sC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"relList (DOMTokenList)"}; 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 27abf31bb4a877..d18ce728d5fe73 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":"J D E 4B","132":"F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 7B","2":"5B oB 6B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a LC mB","2":"F B HC IC JC KC lB 2B"},G:{"1":"E MC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB","260":"NC"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"C c mB","2":"A B lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"rem (root em) units"}; +module.exports={A:{A:{"1":"B","2":"J D E 4B","132":"F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 7B","2":"5B pB 6B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a MC nB","2":"F B IC JC KC LC mB 2B"},G:{"1":"E NC 3B PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB","260":"OC"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"C c nB","2":"A B mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"rem (root em) units"}; 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 09116732e68080..719899b6e5c4ee 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B","33":"B C K L G M N O q r s t","164":"I p J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F","33":"t u","164":"O q r s","420":"A B C K L G M N"},E:{"1":"D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC","33":"OC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"requestAnimationFrame"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B","33":"B C K L G M N O r s t u","164":"I q J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F","33":"u v","164":"O r s t","420":"A B C K L G M N"},E:{"1":"D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC","33":"PC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"requestAnimationFrame"}; 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 8638bfc7482bfb..ba275891ad49b7 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 6B 7B","194":"OB PB"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"2":"I p J D E F A B C K 9B uB AC BC CC DC vB lB mB","322":"L G wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC","322":"cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"requestIdleCallback"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB 6B 7B","194":"PB QB"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB"},E:{"2":"I q J D E F A B C K AC uB BC CC DC EC vB mB nB","322":"L G wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC","322":"dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"requestIdleCallback"}; 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 49d1123c846a8b..d3a74770fecab7 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB 6B 7B"},D:{"1":"c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","194":"PB QB RB SB TB pB UB qB VB WB"},E:{"1":"L G wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B C 9B uB AC BC CC DC vB lB mB","66":"K"},F:{"1":"NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB HC IC JC KC lB 2B LC mB","194":"CB DB EB FB GB HB IB JB KB LB MB"},G:{"1":"cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"sC vB tC uC vC wC xC nB yC zC","2":"I oC pC qC rC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"Resize Observer"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB 6B 7B"},D:{"1":"c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","194":"QB RB SB TB UB qB VB rB WB XB"},E:{"1":"L G wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B C AC uB BC CC DC EC vB mB nB","66":"K"},F:{"1":"OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB IC JC KC LC mB 2B MC nB","194":"DB EB FB GB HB IB JB KB LB MB NB"},G:{"1":"dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC rC sC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"Resize Observer"}; 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 b1065569fedbbd..f90ca66bec52fd 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","194":"2 3 4 5"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r s t u v"},E:{"1":"C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC vB","260":"B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"Resource Timing"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","194":"3 4 5 6"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r s t u v w"},E:{"1":"C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC vB","260":"B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"Resource Timing"}; 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 1025e564e9c53b..f29722cac30a48 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":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L 6B 7B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB","194":"FB GB HB"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC DC"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","194":"2 3 4"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"Rest parameters"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L 6B 7B"},D:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB","194":"GB HB IB"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC EC"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","194":"3 4 5"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"Rest parameters"}; 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 e0377f0a864d93..bc3f8c5670a52b 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L","516":"G M N O"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s 6B 7B","33":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB"},D:{"1":"RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r s t","33":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC vB"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N HC IC JC KC lB 2B LC mB","33":"0 1 2 3 4 5 6 7 8 9 O q r s t u v w x y z AB BB CB DB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D","130":"A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"33":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"WebRTC Peer-to-peer connections"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L","516":"G M N O"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s t 6B 7B","33":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB"},D:{"1":"SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r s t u","33":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC vB"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N IC JC KC LC mB 2B MC nB","33":"0 1 2 3 4 5 6 7 8 9 O r s t u v w x y z AB BB CB DB EB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D","130":"A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"33":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"WebRTC Peer-to-peer connections"}; 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 90605f31583826..d2b0a9b1c675e7 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":"J D E F A B 4B"},B:{"4":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","8":"0 1 2 3 4 5 6 7 8 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"4":"0 1 2 3 4 5 6 7 8 9 p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","8":"I"},E:{"4":"p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","8":"I 9B uB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","8":"F B C HC IC JC KC lB 2B LC mB"},G:{"4":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","8":"uB MC 3B"},H:{"8":"gC"},I:{"4":"oB I H kC 3B lC mC","8":"hC iC jC"},J:{"4":"A","8":"D"},K:{"4":"c","8":"A B C lB 2B mB"},L:{"4":"H"},M:{"1":"b"},N:{"4":"A B"},O:{"4":"nC"},P:{"4":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"4":"wB"},R:{"4":"0C"},S:{"1":"1C"}},B:1,C:"Ruby annotation"}; +module.exports={A:{A:{"4":"J D E F A B 4B"},B:{"4":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","8":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"4":"0 1 2 3 4 5 6 7 8 9 q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","8":"I"},E:{"4":"q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","8":"I AC uB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","8":"F B C IC JC KC LC mB 2B MC nB"},G:{"4":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","8":"uB NC 3B"},H:{"8":"hC"},I:{"4":"pB I H lC 3B mC nC","8":"iC jC kC"},J:{"4":"A","8":"D"},K:{"4":"c","8":"A B C mB 2B nB"},L:{"4":"H"},M:{"1":"b"},N:{"4":"A B"},O:{"4":"oC"},P:{"4":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"4":"wB"},R:{"4":"1C"},S:{"1":"2C"}},B:1,C:"Ruby annotation"}; 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 24ca2c82939026..c1d4dff10a0755 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":"J D 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 I p J D E F A B C K L G M N O q r s t u v w x y z","2":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"p J AC","2":"D E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"BC","129":"I 9B uB"},F:{"1":"F B C G M N O HC IC JC KC lB 2B LC mB","2":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"1":"MC 3B NC OC PC","2":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","129":"uB"},H:{"1":"gC"},I:{"1":"oB I hC iC jC kC 3B lC","2":"H mC"},J:{"1":"D A"},K:{"1":"A B C lB 2B mB","2":"c"},L:{"2":"H"},M:{"2":"b"},N:{"1":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:4,C:"display: run-in"}; +module.exports={A:{A:{"1":"E F A B","2":"J D 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 I q J D E F A B C K L G M N O r s t u v w x y z","2":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"q J BC","2":"D E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"CC","129":"I AC uB"},F:{"1":"F B C G M N O IC JC KC LC mB 2B MC nB","2":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"1":"NC 3B OC PC QC","2":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","129":"uB"},H:{"1":"hC"},I:{"1":"pB I iC jC kC lC 3B mC","2":"H nC"},J:{"1":"D A"},K:{"1":"A B C mB 2B nB","2":"c"},L:{"2":"H"},M:{"2":"b"},N:{"1":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:4,C:"display: run-in"}; 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 4d3a36e15ffad3..0b591341588bd3 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":"J D E F A 4B","388":"B"},B:{"1":"O P Q R S T U","2":"C K L G","129":"M N","513":"V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB 6B 7B"},D:{"1":"MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","513":"Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"G EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B 9B uB AC BC CC DC vB lB","2052":"L","3076":"C K mB wB"},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 c XB YB ZB aB bB cB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","513":"dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"1":"ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC","2052":"XC YC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"513":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"16":"wB"},R:{"513":"0C"},S:{"2":"1C"}},B:6,C:"'SameSite' cookie attribute"}; +module.exports={A:{A:{"2":"J D E F A 4B","388":"B"},B:{"1":"O P Q R S T U","2":"C K L G","129":"M N","513":"V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB 6B 7B"},D:{"1":"NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","513":"Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"G FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B AC uB BC CC DC EC vB mB","2052":"L","3076":"C K nB wB"},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 c YB ZB aB bB cB dB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB IC JC KC LC mB 2B MC nB","513":"eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"1":"aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC","2052":"YC ZC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"513":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"16":"wB"},R:{"513":"1C"},S:{"2":"2C"}},B:6,C:"'SameSite' cookie attribute"}; 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 cb27a1d601ba87..785fdb14ff6520 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":"J D E F A 4B","164":"B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","36":"C K L G M N O"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N 6B 7B","36":"0 1 2 3 4 5 6 7 8 9 O q r s t u v w x y z AB BB CB DB EB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u v HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A","36":"B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","16":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"Screen Orientation"}; +module.exports={A:{A:{"2":"J D E F A 4B","164":"B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","36":"C K L G M N O"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N 6B 7B","36":"0 1 2 3 4 5 6 7 8 9 O r s t u v w x y z AB BB CB DB EB FB"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u v w IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A","36":"B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","16":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"Screen Orientation"}; 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 6754bf4fd5c9bb..7472488f9e41cb 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 7B","2":"5B oB 6B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D"},E:{"1":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB","132":"p"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B"},H:{"2":"gC"},I:{"1":"oB I H kC 3B lC mC","2":"hC iC jC"},J:{"1":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"async attribute for external scripts"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 7B","2":"5B pB 6B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D"},E:{"1":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB","132":"q"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B"},H:{"2":"hC"},I:{"1":"pB I H lC 3B mC nC","2":"iC jC kC"},J:{"1":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"async attribute for external scripts"}; 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 c949adbdd7d937..889d4cb0dbc492 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB","257":"0 1 I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D"},E:{"1":"p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B"},H:{"2":"gC"},I:{"1":"oB I H kC 3B lC mC","2":"hC iC jC"},J:{"1":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"defer attribute for external scripts"}; +module.exports={A:{A:{"1":"A B","132":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB","257":"0 1 2 I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D"},E:{"1":"q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B"},H:{"2":"hC"},I:{"1":"pB I H lC 3B mC nC","2":"iC jC kC"},J:{"1":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"defer attribute for external scripts"}; 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 0eff69e9c52242..e1bfc994d969a9 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":"J D 4B","132":"E F A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","132":"C K L G M N O"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","132":"0 1 2 3 4 5 6 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","132":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB"},E:{"1":"nB 1B GC","2":"I p 9B uB","132":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F HC IC JC KC","16":"B lB 2B","132":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB LC mB"},G:{"1":"nB 1B","16":"uB MC 3B","132":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B"},H:{"2":"gC"},I:{"1":"H","16":"hC iC","132":"oB I jC kC 3B lC mC"},J:{"132":"D A"},K:{"1":"c","132":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"nC"},P:{"132":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"scrollIntoView"}; +module.exports={A:{A:{"2":"J D 4B","132":"E F A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","132":"C K L G M N O"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","132":"0 1 2 3 4 5 6 7 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","132":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB"},E:{"1":"oB 1B HC","2":"I q AC uB","132":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F IC JC KC LC","16":"B mB 2B","132":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB MC nB"},G:{"1":"oB 1B","16":"uB NC 3B","132":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B"},H:{"2":"hC"},I:{"1":"H","16":"iC jC","132":"pB I kC lC 3B mC nC"},J:{"132":"D A"},K:{"1":"c","132":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"oC"},P:{"132":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"scrollIntoView"}; 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 bfb7007ccaaabf..d645e87586f131 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L"},E:{"1":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"I p 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB MC 3B"},H:{"2":"gC"},I:{"1":"oB I H jC kC 3B lC mC","16":"hC iC"},J:{"1":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:7,C:"Element.scrollIntoViewIfNeeded()"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L"},E:{"1":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"I q AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB NC 3B"},H:{"2":"hC"},I:{"1":"pB I H kC lC 3B mC nC","16":"iC jC"},J:{"1":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:7,C:"Element.scrollIntoViewIfNeeded()"}; 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 ce87c8568b18c4..76aeecc6687871 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","2":"pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB","2":"F B C fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:6,C:"SDCH Accept-Encoding/Content-Encoding"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","2":"qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB","2":"F B C gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:6,C:"SDCH Accept-Encoding/Content-Encoding"}; 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 122d14bd05a553..ff441a47f07a2f 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":"4B","260":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","132":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB 6B 7B","2180":"EB FB GB HB IB JB KB LB MB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L"},E:{"1":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"I p 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","132":"F B C HC IC JC KC lB 2B LC mB"},G:{"16":"3B","132":"uB MC","516":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H lC mC","16":"oB I hC iC jC kC","1025":"3B"},J:{"1":"A","16":"D"},K:{"1":"c","16":"A B C lB 2B","132":"mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","16":"A"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2180":"1C"}},B:5,C:"Selection API"}; +module.exports={A:{A:{"1":"F A B","16":"4B","260":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","132":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB 6B 7B","2180":"FB GB HB IB JB KB LB MB NB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L"},E:{"1":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"I q AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","132":"F B C IC JC KC LC mB 2B MC nB"},G:{"16":"3B","132":"uB NC","516":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H mC nC","16":"pB I iC jC kC lC","1025":"3B"},J:{"1":"A","16":"D"},K:{"1":"c","16":"A B C mB 2B","132":"nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","16":"A"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2180":"2C"}},B:5,C:"Selection API"}; 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 e266df80b9702e..a194b302d2e615 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB 6B 7B"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB","196":"UB qB VB WB","324":"c"},E:{"2":"I p J D E F A B C 9B uB AC BC CC DC vB lB","516":"K L G mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"Server Timing"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB 6B 7B"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB","196":"VB rB WB XB","324":"c"},E:{"2":"I q J D E F A B C AC uB BC CC DC EC vB mB","516":"K L G nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"Server Timing"}; 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 d0d4051e899212..ca9313496f715d 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":"J D E F A B 4B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L","322":"G M"},C:{"1":"FB HB IB JB KB LB MB OB PB QB RB SB TB pB qB VB WB c XB YB ZB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","194":"4 5 6 7 8 9 AB BB CB DB EB","513":"GB NB UB aB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB","4":"BB CB DB EB FB"},E:{"1":"C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B 9B uB AC BC CC DC vB"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u v w x HC IC JC KC lB 2B LC mB","4":"0 1 2 y z"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B lC mC","4":"H"},J:{"2":"D A"},K:{"2":"A B C lB 2B mB","4":"c"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:4,C:"Service Workers"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L","322":"G M"},C:{"1":"GB IB JB KB LB MB NB PB QB RB SB TB UB qB rB WB XB c YB ZB aB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","194":"5 6 7 8 9 AB BB CB DB EB FB","513":"HB OB VB bB"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB","4":"CB DB EB FB GB"},E:{"1":"C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B AC uB BC CC DC EC vB"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u v w x y IC JC KC LC mB 2B MC nB","4":"0 1 2 3 z"},G:{"1":"XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B mC nC","4":"H"},J:{"2":"D A"},K:{"2":"A B C mB 2B nB","4":"c"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:4,C:"Service Workers"}; 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 1dea33bc0088cd..d5eff1d64a577b 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":"J D E F 4B"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"1":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:7,C:"Efficient Script Yielding: setImmediate()"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"1":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:7,C:"Efficient Script Yielding: setImmediate()"}; 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 c9a58ef430e042..3788ac8df57457 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":"J D E F A B 4B"},B:{"1":"P","2":"C K L G M N O Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"5B oB I p J D E F A B C K L G M N O q r s t u v w x y z qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","66":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P","2":"I p J D E F A B C K L G M N O q r s t u v Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","33":"0 1 2 3 4 5 w x y z"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB","2":"F B C ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","33":"G M N O q r s"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B","33":"lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC","2":"vC wC xC nB yC zC","33":"I"},Q:{"1":"wB"},R:{"2":"0C"},S:{"1":"1C"}},B:7,C:"Shadow DOM (deprecated V0 spec)"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P","2":"C K L G M N O Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 5B pB I q J D E F A B C K L G M N O r s t u v w x y z rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","66":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P","2":"I q J D E F A B C K L G M N O r s t u v w Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","33":"0 1 2 3 4 5 6 x y z"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB","2":"F B C aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","33":"G M N O r s t"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B","33":"mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC","2":"wC xC yC oB zC 0C","33":"I"},Q:{"1":"wB"},R:{"2":"1C"},S:{"1":"2C"}},B:7,C:"Shadow DOM (deprecated V0 spec)"}; 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 e59a864bfc31aa..93eb8b8c6dafa6 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB 6B 7B","322":"TB","578":"pB UB qB VB"},D:{"1":"OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"A B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC DC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB HC IC JC KC lB 2B LC mB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC","132":"TC UC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I","4":"oC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"Shadow DOM (V1)"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB 6B 7B","322":"UB","578":"qB VB rB WB"},D:{"1":"PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"A B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC EC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB IC JC KC LC mB 2B MC nB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC","132":"UC VC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I","4":"pC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"Shadow DOM (V1)"}; 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 c244b846277945..063c7b6a321f60 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z","2":"C K L G","194":"M N O","513":"a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB 6B 7B","194":"SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB","450":"gB hB iB jB kB","513":"P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"1":"aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB","194":"UB qB VB WB c XB YB ZB","513":"a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A 9B uB AC BC CC DC","194":"B C K L G vB lB mB wB EC FC","513":"xB yB zB 0B nB 1B GC"},F:{"1":"c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB HC IC JC KC lB 2B LC mB","194":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC","194":"UC VC WC XC YC ZC aC bC cC dC eC fC","513":"xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"513":"H"},M:{"513":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"513":"0C"},S:{"2":"1C"}},B:6,C:"Shared Array Buffer"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z","2":"C K L G","194":"M N O","513":"a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB 6B 7B","194":"TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB","450":"hB iB jB kB lB","513":"P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"1":"bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB","194":"VB rB WB XB c YB ZB aB","513":"a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A AC uB BC CC DC EC","194":"B C K L G vB mB nB wB FC GC","513":"xB yB zB 0B oB 1B HC"},F:{"1":"c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB IC JC KC LC mB 2B MC nB","194":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC","194":"VC WC XC YC ZC aC bC cC dC eC fC gC","513":"xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"513":"H"},M:{"513":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC","513":"yC oB zC 0C"},Q:{"2":"wB"},R:{"513":"1C"},S:{"2":"2C"}},B:6,C:"Shared Array Buffer"}; 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 9362b15ab59c73..ee35025d2bcec6 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},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 NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"p J AC nB 1B GC","2":"I D E F A B C K L G 9B uB BC CC DC vB lB mB wB EC FC xB yB zB 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a KC lB 2B LC mB","2":"F HC IC JC"},G:{"1":"NC OC nB 1B","2":"E uB MC 3B PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"B C lB 2B mB","2":"c","16":"A"},L:{"2":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"I","2":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"1":"1C"}},B:1,C:"Shared Web Workers"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"q J BC oB 1B HC","2":"I D E F A B C K L G AC uB CC DC EC vB mB nB wB FC GC xB yB zB 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a LC mB 2B MC nB","2":"F IC JC KC"},G:{"1":"OC PC oB 1B","2":"E uB NC 3B QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"B C mB 2B nB","2":"c","16":"A"},L:{"2":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"I","2":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"1":"2C"}},B:1,C:"Shared Web Workers"}; 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 f884e84e66fa71..774b231b2655c0 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":"J 4B","132":"D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB"},H:{"1":"gC"},I:{"1":"oB I H kC 3B lC mC","2":"hC iC jC"},J:{"1":"A","2":"D"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"Server Name Indication"}; +module.exports={A:{A:{"1":"F A B","2":"J 4B","132":"D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB"},H:{"1":"hC"},I:{"1":"pB I H lC 3B mC nC","2":"iC jC kC"},J:{"1":"A","2":"D"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"Server Name Indication"}; 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 906f6a8c2ac02f..7b746428564a06 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":"J D E F A 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","2":"5B oB I p J D E F A B C MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","2":"MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"E F A B C DC vB lB","2":"I p J D 9B uB AC BC CC","129":"K L G mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB DB FB mB","2":"F B C BB CB EB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC"},G:{"1":"E QC RC SC TC UC VC WC XC","2":"uB MC 3B NC OC PC","257":"YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"oB I kC 3B lC mC","2":"H hC iC jC"},J:{"2":"D A"},K:{"1":"mB","2":"A B C c lB 2B"},L:{"2":"H"},M:{"2":"b"},N:{"1":"B","2":"A"},O:{"2":"nC"},P:{"1":"I","2":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"1":"1C"}},B:7,C:"SPDY protocol"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","2":"5B pB I q J D E F A B C NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","2":"NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"E F A B C EC vB mB","2":"I q J D AC uB BC CC DC","129":"K L G nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB EB GB nB","2":"F B C CB DB FB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC"},G:{"1":"E RC SC TC UC VC WC XC YC","2":"uB NC 3B OC PC QC","257":"ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"pB I lC 3B mC nC","2":"H iC jC kC"},J:{"2":"D A"},K:{"1":"nB","2":"A B C c mB 2B"},L:{"2":"H"},M:{"2":"b"},N:{"1":"B","2":"A"},O:{"2":"oC"},P:{"1":"I","2":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"1":"2C"}},B:7,C:"SPDY protocol"}; 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 62df5809b6b4c7..c0ba3fb8c90aa8 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":"J D E F A B 4B"},B:{"2":"C K L G M N O","1026":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"5B oB I p J D E F A B C K L G M N O q r s 6B 7B","322":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"2":"I p J D E F A B C K L G M N O q r s t u v","164":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L 9B uB AC BC CC DC vB lB mB wB","2084":"G EC FC xB yB zB 0B nB 1B GC"},F:{"2":"F B C G M N O q r s t u v w x HC IC JC KC lB 2B LC mB","1026":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC","2084":"eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"164":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"164":"nC"},P:{"164":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"164":"wB"},R:{"164":"0C"},S:{"322":"1C"}},B:7,C:"Speech Recognition API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O","1026":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"5B pB I q J D E F A B C K L G M N O r s t 6B 7B","322":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"2":"I q J D E F A B C K L G M N O r s t u v w","164":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L AC uB BC CC DC EC vB mB nB wB","2084":"G FC GC xB yB zB 0B oB 1B HC"},F:{"2":"F B C G M N O r s t u v w x y IC JC KC LC mB 2B MC nB","1026":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC","2084":"fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"164":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"164":"oC"},P:{"164":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"164":"wB"},R:{"164":"1C"},S:{"322":"2C"}},B:7,C:"Speech Recognition API"}; 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 01e7921e9fa43e..ecb9277c458ddc 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":"J D E F A B 4B"},B:{"1":"L G M N O","2":"C K","257":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","194":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","2":"0 1 2 3 I p J D E F A B C K L G M N O q r s t u v w x y z","257":"QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"D E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J 9B uB AC BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z 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 M N O q r s t u v w x HC IC JC KC lB 2B LC mB","257":"c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"2":"0C"},S:{"1":"1C"}},B:7,C:"Speech Synthesis API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"L G M N O","2":"C K","257":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","194":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","2":"0 1 2 3 4 I q J D E F A B C K L G M N O r s t u v w x y z","257":"RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"D E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J AC uB BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O r s t u v w x y IC JC KC LC mB 2B MC nB","257":"c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"2":"1C"},S:{"1":"2C"}},B:7,C:"Speech Synthesis API"}; 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 b8fc3ccbe5a520..df01ce709f4d4b 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E"},E:{"1":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a JC KC lB 2B LC mB","2":"F HC IC"},G:{"4":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"4":"gC"},I:{"4":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"A","4":"D"},K:{"4":"A B C c lB 2B mB"},L:{"4":"H"},M:{"4":"b"},N:{"4":"A B"},O:{"4":"nC"},P:{"4":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"4":"0C"},S:{"2":"1C"}},B:1,C:"Spellcheck attribute"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E"},E:{"1":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a KC LC mB 2B MC nB","2":"F IC JC"},G:{"4":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"4":"hC"},I:{"4":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"A","4":"D"},K:{"4":"A B C c mB 2B nB"},L:{"4":"H"},M:{"4":"b"},N:{"4":"A B"},O:{"4":"oC"},P:{"4":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"4":"1C"},S:{"2":"2C"}},B:1,C:"Spellcheck attribute"}; 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 a177e529148b3e..559299ce0b02f7 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b","2":"C K L G M N O","129":"H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b","129":"H sB tB 8B"},E:{"1":"I p J D E F A B C 9B uB AC BC CC DC vB lB mB","2":"K L G wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z JC KC lB 2B LC mB","2":"F HC IC","129":"a"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC","2":"ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"oB I hC iC jC kC 3B lC mC","129":"H"},J:{"1":"D A"},K:{"1":"B C c lB 2B mB","2":"A"},L:{"129":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:7,C:"Web SQL Database"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p","2":"C K L G M N O","129":"b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p","129":"b H tB 8B 9B"},E:{"1":"I q J D E F A B C AC uB BC CC DC EC vB mB nB","2":"K L G wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z KC LC mB 2B MC nB","2":"F IC JC","129":"a"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC","2":"aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"pB I iC jC kC lC 3B mC nC","129":"H"},J:{"1":"D A"},K:{"1":"B C c mB 2B nB","2":"A"},L:{"129":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:7,C:"Web SQL Database"}; 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 ab46ab69d69b2e..3a2702328f2669 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":"J D E F A B 4B"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","260":"C","514":"K L G"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","194":"3 4 5 6 7 8"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 I p J D E F A B C K L G M N O q r s t u v w x y z","260":"5 6 7 8"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D 9B uB AC BC","260":"E CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r HC IC JC KC lB 2B LC mB","260":"s t u v"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC PC","260":"E QC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Srcset and sizes attributes"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","260":"C","514":"K L G"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","194":"4 5 6 7 8 9"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 I q J D E F A B C K L G M N O r s t u v w x y z","260":"6 7 8 9"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D AC uB BC CC","260":"E DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s IC JC KC LC mB 2B MC nB","260":"t u v w"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC QC","260":"E RC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Srcset and sizes attributes"}; 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 9f34c2065838cf..a50deae088e202 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":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M 6B 7B","129":"7 8 9 AB BB CB","420":"0 1 2 3 4 5 6 N O q r s t u v w x y z"},D:{"1":"OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r","420":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC vB"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B G M N HC IC JC KC lB 2B LC","420":"0 1 2 3 4 5 6 7 8 9 C O q r s t u v w x y z AB mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC","513":"cC dC eC fC xB yB zB 0B nB 1B","1537":"VC WC XC YC ZC aC bC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D","420":"A"},K:{"1":"c","2":"A B lB 2B","420":"C mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"pC qC rC sC vB tC uC vC wC xC nB yC zC","420":"I oC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:4,C:"getUserMedia/Stream API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M 6B 7B","129":"8 9 AB BB CB DB","420":"0 1 2 3 4 5 6 7 N O r s t u v w x y z"},D:{"1":"PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r s","420":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC vB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B G M N IC JC KC LC mB 2B MC","420":"0 1 2 3 4 5 6 7 8 9 C O r s t u v w x y z AB BB nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC","513":"dC eC fC gC xB yB zB 0B oB 1B","1537":"WC XC YC ZC aC bC cC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D","420":"A"},K:{"1":"c","2":"A B mB 2B","420":"C nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"qC rC sC tC vB uC vC wC xC yC oB zC 0C","420":"I pC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:4,C:"getUserMedia/Stream API"}; 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 bef830228fc1e3..8cfa3cd2525484 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":"J D E F A 4B","130":"B"},B:{"1":"Y Z a d e f g h i j k l m n o b H","16":"C K","260":"L G","1028":"P Q R S T U V W X","5124":"M N O"},C:{"1":"n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB 6B 7B","5124":"l m","7172":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k","7746":"SB TB pB UB qB VB WB c"},D:{"1":"Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","260":"NB OB PB QB RB SB TB","1028":"pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X"},E:{"2":"I p J D E F 9B uB AC BC CC DC","1028":"G EC FC xB yB zB 0B nB 1B GC","3076":"A B C K L vB lB mB wB"},F:{"1":"iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","260":"AB BB CB DB EB FB GB","1028":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC","16":"TC","1028":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1028":"nC"},P:{"1":"xC nB yC zC","2":"I oC pC","1028":"qC rC sC vB tC uC vC wC"},Q:{"1028":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:1,C:"Streams"}; +module.exports={A:{A:{"2":"J D E F A 4B","130":"B"},B:{"1":"Y Z a d e f g h i j k l m n o p b H","16":"C K","260":"L G","1028":"P Q R S T U V W X","5124":"M N O"},C:{"1":"n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB 6B 7B","5124":"l m","7172":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k","7746":"TB UB qB VB rB WB XB c"},D:{"1":"Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","260":"OB PB QB RB SB TB UB","1028":"qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X"},E:{"2":"I q J D E F AC uB BC CC DC EC","1028":"G FC GC xB yB zB 0B oB 1B HC","3076":"A B C K L vB mB nB wB"},F:{"1":"jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB IC JC KC LC mB 2B MC nB","260":"BB CB DB EB FB GB HB","1028":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC","16":"UC","1028":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1028":"oC"},P:{"1":"yC oB zC 0C","2":"I pC qC","1028":"rC sC tC vB uC vC wC xC"},Q:{"1028":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:1,C:"Streams"}; 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 108f76080192ed..d966f4134e5ef8 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":"J D E F A 4B","129":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"D E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J 9B uB AC BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"F B HC IC JC KC lB 2B LC"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"1":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"Strict Transport Security"}; +module.exports={A:{A:{"2":"J D E F A 4B","129":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"D E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J AC uB BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"F B IC JC KC LC mB 2B MC"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"1":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"Strict Transport Security"}; 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 90c20dad917579..f9d8d749850d66 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","2":"5B oB I p J D E F A B C K L G M N O q r qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","322":"QB RB SB TB pB UB"},D:{"2":"8 9 I p J D E F A B C K L G M N O q AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","194":"0 1 2 3 4 5 6 7 r s t u v w x y z"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"1":"1C"}},B:7,C:"Scoped CSS"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","2":"5B pB I q J D E F A B C K L G M N O r s rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","322":"RB SB TB UB qB VB"},D:{"2":"9 I q J D E F A B C K L G M N O r AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","194":"0 1 2 3 4 5 6 7 8 s t u v w x y z"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"1":"2C"}},B:7,C:"Scoped CSS"}; 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 ac95613ef89b4b..591c0b6dedd8c0 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":"J D E F A B 4B"},B:{"1":"b H","2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:7,C:"Subresource Loading with Web Bundles"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"p b H","2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:7,C:"Subresource Loading with Web Bundles"}; 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 e9a553437b84a2..f62ed21a371004 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":"J D E F A B 4B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB 6B 7B"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC vB"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC","194":"VC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"Subresource Integrity"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB 6B 7B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC vB"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC","194":"WC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"Subresource Integrity"}; 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 9e64e5aef596b2..21ca5458249404 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":"J D E 4B"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","516":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B","260":"I p J D E F A B C K L G M N O q r s t u"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","4":"I"},E:{"1":"p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"9B","132":"I uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","2":"F"},G:{"1":"E 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","132":"uB MC"},H:{"260":"gC"},I:{"1":"oB I H kC 3B lC mC","2":"hC iC jC"},J:{"1":"D A"},K:{"1":"c","260":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"SVG in CSS backgrounds"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","516":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B","260":"I q J D E F A B C K L G M N O r s t u v"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","4":"I"},E:{"1":"q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"AC","132":"I uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","2":"F"},G:{"1":"E 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","132":"uB NC"},H:{"260":"hC"},I:{"1":"pB I H lC 3B mC nC","2":"iC jC kC"},J:{"1":"D A"},K:{"1":"c","260":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"SVG in CSS backgrounds"}; 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 981666dff104b7..257b06ead28ade 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","2":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I","4":"p J D"},E:{"1":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC"},H:{"1":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"1":"A","2":"D"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"SVG filters"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","2":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I","4":"q J D"},E:{"1":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC"},H:{"1":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"1":"A","2":"D"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"SVG filters"}; 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 b9221b8e003c0a..edbcef356fdd6b 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 4B","8":"J D E"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 I p J D E F A B C K L G M N O q r s t u v w x y z","2":"MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","130":"9 AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"I p J D E F A B C K L G uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"9B"},F:{"1":"F B C G M N O q r s t u v HC IC JC KC lB 2B LC mB","2":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","130":"0 1 2 3 4 5 6 7 w x y z"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"258":"gC"},I:{"1":"oB I kC 3B lC mC","2":"H hC iC jC"},J:{"1":"D A"},K:{"1":"A B C lB 2B mB","2":"c"},L:{"130":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"I","130":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"130":"0C"},S:{"2":"1C"}},B:2,C:"SVG fonts"}; +module.exports={A:{A:{"2":"F A B 4B","8":"J D E"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z","2":"NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","130":"AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"I q J D E F A B C K L G uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"AC"},F:{"1":"F B C G M N O r s t u v w IC JC KC LC mB 2B MC nB","2":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","130":"0 1 2 3 4 5 6 7 8 x y z"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"258":"hC"},I:{"1":"pB I lC 3B mC nC","2":"H iC jC kC"},J:{"1":"D A"},K:{"1":"A B C mB 2B nB","2":"c"},L:{"130":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"I","130":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"130":"1C"},S:{"2":"2C"}},B:2,C:"SVG fonts"}; 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 a2c608afef82e1..0a3c56d4982aec 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":"J D E 4B","260":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L 6B 7B"},D:{"1":"LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 I p J D E F A B C K L G M N O q r s t u v w x y z","132":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D F A B 9B uB AC BC DC vB","132":"E CC"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"G M N O q r s t","4":"B C IC JC KC lB 2B LC","16":"F HC","132":"0 1 2 3 4 5 6 7 u v w x y z"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC PC RC SC TC UC VC","132":"E QC"},H:{"1":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D","132":"A"},K:{"1":"c mB","4":"A B C lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","132":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"SVG fragment identifiers"}; +module.exports={A:{A:{"2":"J D E 4B","260":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L 6B 7B"},D:{"1":"MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 I q J D E F A B C K L G M N O r s t u v w x y z","132":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D F A B AC uB BC CC EC vB","132":"E DC"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"G M N O r s t u","4":"B C JC KC LC mB 2B MC","16":"F IC","132":"0 1 2 3 4 5 6 7 8 v w x y z"},G:{"1":"XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC QC SC TC UC VC WC","132":"E RC"},H:{"1":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D","132":"A"},K:{"1":"c nB","4":"A B C mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","132":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"SVG fragment identifiers"}; 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 5a1a73e62c6233..c785f2acc9b64e 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":"J D E 4B","388":"F A B"},B:{"4":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","260":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","2":"5B","4":"oB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"9B uB","4":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"4":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"4":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B","4":"H lC mC"},J:{"1":"A","2":"D"},K:{"4":"A B C c lB 2B mB"},L:{"4":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"4":"nC"},P:{"4":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"4":"wB"},R:{"4":"0C"},S:{"1":"1C"}},B:2,C:"SVG effects for HTML"}; +module.exports={A:{A:{"2":"J D E 4B","388":"F A B"},B:{"4":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","260":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","2":"5B","4":"pB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"AC uB","4":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"4":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"4":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B","4":"H mC nC"},J:{"1":"A","2":"D"},K:{"4":"A B C c mB 2B nB"},L:{"4":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"4":"oC"},P:{"4":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"4":"wB"},R:{"4":"1C"},S:{"1":"2C"}},B:2,C:"SVG effects for HTML"}; 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 29f57b92ebbcb2..7dd6f7c921d266 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":"4B","8":"J D E","129":"F A B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","8":"5B oB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","8":"I p J"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","8":"I p 9B uB","129":"J D E AC BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a LC mB","2":"B KC lB 2B","8":"F HC IC JC"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","8":"uB MC 3B","129":"E NC OC PC QC"},H:{"1":"gC"},I:{"1":"H lC mC","2":"hC iC jC","129":"oB I kC 3B"},J:{"1":"A","129":"D"},K:{"1":"C c mB","8":"A B lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"129":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Inline SVG in HTML5"}; +module.exports={A:{A:{"2":"4B","8":"J D E","129":"F A B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","8":"5B pB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","8":"I q J"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","8":"I q AC uB","129":"J D E BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a MC nB","2":"B LC mB 2B","8":"F IC JC KC"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","8":"uB NC 3B","129":"E OC PC QC RC"},H:{"1":"hC"},I:{"1":"H mC nC","2":"iC jC kC","129":"pB I lC 3B"},J:{"1":"A","129":"D"},K:{"1":"C c nB","8":"A B mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"129":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Inline SVG in HTML5"}; 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 169eea7d541723..4a9825e3dd9530 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","132":"I p J D E F A B C K L G M N O q r s t u v w x y"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"9B","4":"uB","132":"I p J D E AC BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","132":"E uB MC 3B NC OC PC QC"},H:{"1":"gC"},I:{"1":"H lC mC","2":"hC iC jC","132":"oB I kC 3B"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"SVG in HTML img element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B"},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 NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","132":"I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"AC","4":"uB","132":"I q J D E BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","132":"E uB NC 3B OC PC QC RC"},H:{"1":"hC"},I:{"1":"H mC nC","2":"iC jC kC","132":"pB I lC 3B"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"SVG in HTML img element"}; 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 efaeb7ce1e452b..070f6d7566b936 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":"4B","8":"J D E F A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","8":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","8":"5B oB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","4":"I"},E:{"1":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","8":"9B uB","132":"I p AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","132":"uB MC 3B NC"},H:{"2":"gC"},I:{"1":"oB I H kC 3B lC mC","2":"hC iC jC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"8":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"SVG SMIL animation"}; +module.exports={A:{A:{"2":"4B","8":"J D E F A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","8":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","8":"5B pB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","4":"I"},E:{"1":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","8":"AC uB","132":"I q BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","132":"uB NC 3B OC"},H:{"2":"hC"},I:{"1":"pB I H lC 3B mC nC","2":"iC jC kC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"8":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"SVG SMIL animation"}; 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 dadf0201d5d756..1b2300f74004ca 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":"4B","8":"J D E","772":"F A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","513":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","4":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","4":"9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"H lC mC","2":"hC iC jC","132":"oB I kC 3B"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"257":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"SVG (basic support)"}; +module.exports={A:{A:{"2":"4B","8":"J D E","772":"F A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","513":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","4":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","4":"AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"H mC nC","2":"iC jC kC","132":"pB I lC 3B"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"257":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"SVG (basic support)"}; 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 ba0628b95a6ba3..7af377e15f52eb 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB","132":"dB eB"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"tC uC vC wC xC nB yC zC","2":"I oC pC qC rC sC vB"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:6,C:"Signed HTTP Exchanges (SXG)"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB","132":"eB fB"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"uC vC wC xC yC oB zC 0C","2":"I pC qC rC sC tC vB"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:6,C:"Signed HTTP Exchanges (SXG)"}; 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 0ca8681c76a191..1569f300d342f3 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":"J 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"16":"5B oB 6B 7B","129":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L"},E:{"16":"I p 9B uB","257":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","16":"F"},G:{"769":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"16":"gC"},I:{"16":"oB I H hC iC jC kC 3B lC mC"},J:{"16":"D A"},K:{"16":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"16":"A B"},O:{"1":"nC"},P:{"16":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"129":"1C"}},B:1,C:"tabindex global attribute"}; +module.exports={A:{A:{"1":"D E F A B","16":"J 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"16":"5B pB 6B 7B","129":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L"},E:{"16":"I q AC uB","257":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","16":"F"},G:{"769":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"16":"hC"},I:{"16":"pB I H iC jC kC lC 3B mC nC"},J:{"16":"D A"},K:{"16":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"16":"A B"},O:{"1":"oC"},P:{"16":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"129":"2C"}},B:1,C:"tabindex global attribute"}; 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 ceb4e7d26feee2..4d3a0d7fe72e7e 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":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","16":"C"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB"},E:{"1":"A B K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC","129":"C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"1":"RC SC TC UC VC WC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC","129":"XC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"ES6 Template Literals (Template Strings)"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","16":"C"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB"},E:{"1":"A B K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC","129":"C"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"SC TC UC VC WC XC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC","129":"YC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"ES6 Template Literals (Template Strings)"}; 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 8256b400ac8df0..f0b6954655d1ea 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":"J D E F A B 4B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C","388":"K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s 6B 7B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r s t u v w","132":"0 1 2 3 4 5 x y z"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D 9B uB AC","388":"E CC","514":"BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB","132":"G M N O q r s"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC PC","388":"E QC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"HTML templates"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C","388":"K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s t 6B 7B"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r s t u v w x","132":"0 1 2 3 4 5 6 y z"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D AC uB BC","388":"E DC","514":"CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB","132":"G M N O r s t"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC QC","388":"E RC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"HTML templates"}; 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 7e938360bc3f2c..7dc03d54f37969 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:6,C:"Temporal"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:6,C:"Temporal"}; 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 1b421e1b17a9de..8a0743cd911033 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":"J D E A B 4B","16":"F"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","16":"I p"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"B C"},E:{"2":"I J 9B uB AC","16":"p D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC 2B LC mB","16":"lB"},G:{"2":"uB MC 3B NC OC","16":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC kC 3B lC mC","16":"jC"},J:{"2":"A","16":"D"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:7,C:"Test feature - updated"}; +module.exports={A:{A:{"2":"J D E A B 4B","16":"F"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","16":"I q"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"B C"},E:{"2":"I J AC uB BC","16":"q D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC 2B MC nB","16":"mB"},G:{"2":"uB NC 3B OC PC","16":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC lC 3B mC nC","16":"kC"},J:{"2":"A","16":"D"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:7,C:"Test feature - updated"}; 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 a50f6410460ea3..9658a870250d64 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":"J D E F A B 4B"},B:{"2":"C K L G M N O","2052":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"5B oB I p 6B 7B","1028":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","1060":"0 1 2 3 4 5 6 J D E F A B C K L G M N O q r s t u v w x y z"},D:{"2":"I p J D E F A B C K L G M N O q r s t u v w","226":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","2052":"SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D 9B uB AC BC","772":"K L G mB wB EC FC xB yB zB 0B nB 1B GC","804":"E F A B C DC vB lB","1316":"CC"},F:{"2":"0 1 2 3 4 5 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","226":"6 7 8 9 AB BB CB DB EB","2052":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"uB MC 3B NC OC PC","292":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"2052":"H"},M:{"1028":"b"},N:{"2":"A B"},O:{"2052":"nC"},P:{"2":"I oC pC","2052":"qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2052":"wB"},R:{"2052":"0C"},S:{"1028":"1C"}},B:4,C:"text-decoration styling"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O","2052":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"5B pB I q 6B 7B","1028":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","1060":"0 1 2 3 4 5 6 7 J D E F A B C K L G M N O r s t u v w x y z"},D:{"2":"I q J D E F A B C K L G M N O r s t u v w x","226":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","2052":"TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D AC uB BC CC","772":"K L G nB wB FC GC xB yB zB 0B oB 1B HC","804":"E F A B C EC vB mB","1316":"DC"},F:{"2":"0 1 2 3 4 5 6 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","226":"7 8 9 AB BB CB DB EB FB","2052":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"uB NC 3B OC PC QC","292":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"2052":"H"},M:{"1028":"b"},N:{"2":"A B"},O:{"2052":"oC"},P:{"2":"I pC qC","2052":"rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2052":"wB"},R:{"2052":"1C"},S:{"1028":"2C"}},B:4,C:"text-decoration styling"}; 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 75ba29306c70e4..63475c140e23d2 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":"J D E F A B 4B"},B:{"1":"k l m n o b H","2":"C K L G M N O","164":"P Q R S T U V W X Y Z a d e f g h i j"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB 6B 7B","322":"GB"},D:{"1":"k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r s t u v","164":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j"},E:{"1":"E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J 9B uB AC","164":"D BC"},F:{"1":"V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB","164":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B","164":"lC mC"},J:{"2":"D","164":"A"},K:{"2":"A B C lB 2B mB","164":"c"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"164":"nC"},P:{"1":"zC","164":"I oC pC qC rC sC vB tC uC vC wC xC nB yC"},Q:{"164":"wB"},R:{"164":"0C"},S:{"1":"1C"}},B:4,C:"text-emphasis styling"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"k l m n o p b H","2":"C K L G M N O","164":"P Q R S T U V W X Y Z a d e f g h i j"},C:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB 6B 7B","322":"HB"},D:{"1":"k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r s t u v w","164":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j"},E:{"1":"E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J AC uB BC","164":"D CC"},F:{"1":"V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB","164":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B","164":"mC nC"},J:{"2":"D","164":"A"},K:{"2":"A B C mB 2B nB","164":"c"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"164":"oC"},P:{"1":"0C","164":"I pC qC rC sC tC vB uC vC wC xC yC oB zC"},Q:{"164":"wB"},R:{"164":"1C"},S:{"1":"2C"}},B:4,C:"text-emphasis styling"}; 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 231588a2c4e5cf..c5714e5cddff49 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":"J D E F A B","2":"4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","8":"5B oB I p J 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a lB 2B LC mB","33":"F HC IC JC KC"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"c mB","33":"A B C lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"CSS3 Text-overflow"}; +module.exports={A:{A:{"1":"J D E F A B","2":"4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","8":"5B pB I q J 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a mB 2B MC nB","33":"F IC JC KC LC"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"c nB","33":"A B C mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"CSS3 Text-overflow"}; 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 74f2470bb1cc97..8beb19ee81b3e3 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","258":"x"},E:{"2":"I p J D E F A B C K L G 9B uB BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","258":"AC"},F:{"1":"EB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB FB HC IC JC KC lB 2B LC mB"},G:{"2":"uB MC 3B","33":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"33":"b"},N:{"161":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:7,C:"CSS text-size-adjust"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","258":"y"},E:{"2":"I q J D E F A B C K L G AC uB CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","258":"BC"},F:{"1":"FB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB GB IC JC KC LC mB 2B MC nB"},G:{"2":"uB NC 3B","33":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"33":"b"},N:{"161":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:7,C:"CSS text-size-adjust"}; 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 b28f630a590a25..c8ff6fa94f19bd 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":"J D E F A B 4B"},B:{"2":"C K L","33":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","161":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB 6B 7B","161":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","450":"JB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"33":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"F B C HC IC JC KC lB 2B LC mB","33":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"33":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","36":"uB"},H:{"2":"gC"},I:{"2":"oB","33":"I H hC iC jC kC 3B lC mC"},J:{"33":"D A"},K:{"2":"A B C lB 2B mB","33":"c"},L:{"33":"H"},M:{"161":"b"},N:{"2":"A B"},O:{"33":"nC"},P:{"33":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"33":"wB"},R:{"33":"0C"},S:{"161":"1C"}},B:7,C:"CSS text-stroke and text-fill"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L","33":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","161":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 6B 7B","161":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","450":"KB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"33":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"F B C IC JC KC LC mB 2B MC nB","33":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"33":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","36":"uB"},H:{"2":"hC"},I:{"2":"pB","33":"I H iC jC kC lC 3B mC nC"},J:{"33":"D A"},K:{"2":"A B C mB 2B nB","33":"c"},L:{"33":"H"},M:{"161":"b"},N:{"2":"A B"},O:{"33":"oC"},P:{"33":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"33":"wB"},R:{"33":"1C"},S:{"161":"2C"}},B:7,C:"CSS text-stroke and text-fill"}; 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 d3e52ff55a45e2..74d81139fc6f57 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","16":"F"},G:{"1":"E MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB"},H:{"1":"gC"},I:{"1":"oB I H jC kC 3B lC mC","16":"hC iC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Node.textContent"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","16":"F"},G:{"1":"E NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB"},H:{"1":"hC"},I:{"1":"pB I H kC lC 3B mC nC","16":"iC jC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Node.textContent"}; 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 78cec1f2aee518..11da9c0f5053c9 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O 6B 7B","132":"q"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u v HC IC JC KC lB 2B LC mB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"TextEncoder & TextDecoder"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O 6B 7B","132":"r"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u v w IC JC KC LC mB 2B MC nB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"TextEncoder & TextDecoder"}; 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 3920bba69d524c..ebf23eacca3302 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":"J D 4B","66":"E F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB","2":"5B oB I p J D E F A B C K L G M N O q r s t 6B 7B","66":"u","129":"aB bB cB dB eB fB gB hB iB jB","388":"kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T","2":"I p J D E F A B C K L G M N O q r s","1540":"U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"D E F A B C K CC DC vB lB mB","2":"I p J 9B uB AC BC","513":"L G wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB mB","2":"F B C HC IC JC KC lB 2B LC","1540":"fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B"},H:{"1":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"1":"A","2":"D"},K:{"1":"c mB","2":"A B C lB 2B"},L:{"1":"H"},M:{"129":"b"},N:{"1":"B","66":"A"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"TLS 1.1"}; +module.exports={A:{A:{"1":"B","2":"J D 4B","66":"E F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB","2":"5B pB I q J D E F A B C K L G M N O r s t u 6B 7B","66":"v","129":"bB cB dB eB fB gB hB iB jB kB","388":"lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T","2":"I q J D E F A B C K L G M N O r s t","1540":"U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"D E F A B C K DC EC vB mB nB","2":"I q J AC uB BC CC","513":"L G wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB nB","2":"F B C IC JC KC LC mB 2B MC","1540":"gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B"},H:{"1":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"1":"A","2":"D"},K:{"1":"c nB","2":"A B C mB 2B"},L:{"1":"H"},M:{"129":"b"},N:{"1":"B","66":"A"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"TLS 1.1"}; 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 ea7e113111de27..59c8c7264d3e90 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":"J D 4B","66":"E F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t u 6B 7B","66":"v w x"},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 NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"D E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J 9B uB AC BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F G HC","66":"B C IC JC KC lB 2B LC mB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B"},H:{"1":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"1":"A","2":"D"},K:{"1":"c mB","2":"A B C lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","66":"A"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"TLS 1.2"}; +module.exports={A:{A:{"1":"B","2":"J D 4B","66":"E F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s t u v 6B 7B","66":"w x y"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"D E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J AC uB BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F G IC","66":"B C JC KC LC mB 2B MC nB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B"},H:{"1":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"1":"A","2":"D"},K:{"1":"c nB","2":"A B C mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","66":"A"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"TLS 1.2"}; 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 8677dadc22d4e5..c163bf9e69a5d9 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 6B 7B","132":"UB qB VB","450":"MB NB OB PB QB RB SB TB pB"},D:{"1":"cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","706":"PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB"},E:{"1":"L G EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B C 9B uB AC BC CC DC vB lB","1028":"K mB wB"},F:{"1":"SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB HC IC JC KC lB 2B LC mB","706":"PB QB RB"},G:{"1":"YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"vB tC uC vC wC xC nB yC zC","2":"I oC pC qC rC sC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:6,C:"TLS 1.3"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 6B 7B","132":"VB rB WB","450":"NB OB PB QB RB SB TB UB qB"},D:{"1":"dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","706":"QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB"},E:{"1":"L G FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B C AC uB BC CC DC EC vB mB","1028":"K nB wB"},F:{"1":"TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB IC JC KC LC mB 2B MC nB","706":"QB RB SB"},G:{"1":"ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"vB uC vC wC xC yC oB zC 0C","2":"I pC qC rC sC tC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:6,C:"TLS 1.3"}; 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 5d2b7e46a32da2..8d9ac5e8738e30 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":"J D E F 4B","8":"A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","578":"C K L G M N O"},C:{"1":"O q r s t u v NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B","4":"I p J D E F A B C K L G M N","194":"0 1 2 3 4 5 6 7 8 9 w x y z 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 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r s"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"B C c lB 2B mB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"8":"A","260":"B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:2,C:"Touch events"}; +module.exports={A:{A:{"2":"J D E F 4B","8":"A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","578":"C K L G M N O"},C:{"1":"O r s t u v w OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B","4":"I q J D E F A B C K L G M N","194":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r s t"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"B C c mB 2B nB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"8":"A","260":"B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:2,C:"Touch events"}; 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 5cdef598d5d6da..27322fbb7df3ef 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":"4B","8":"J D E","129":"A B","161":"F"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB","33":"I p J D E F A B C K L G 6B 7B"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","33":"0 1 2 3 4 5 6 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","33":"I p J D E 9B uB AC BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"F HC IC","33":"B C G M N O q r s t JC KC lB 2B LC"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","33":"E uB MC 3B NC OC PC QC"},H:{"2":"gC"},I:{"1":"H","33":"oB I hC iC jC kC 3B lC mC"},J:{"33":"D A"},K:{"1":"B C c lB 2B mB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"CSS3 2D Transforms"}; +module.exports={A:{A:{"2":"4B","8":"J D E","129":"A B","161":"F"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB","33":"I q J D E F A B C K L G 6B 7B"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","33":"0 1 2 3 4 5 6 7 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","33":"I q J D E AC uB BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"F IC JC","33":"B C G M N O r s t u KC LC mB 2B MC"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","33":"E uB NC 3B OC PC QC RC"},H:{"2":"hC"},I:{"1":"H","33":"pB I iC jC kC lC 3B mC nC"},J:{"33":"D A"},K:{"1":"B C c mB 2B nB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"CSS3 2D Transforms"}; 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 f8eeb34234b4ce..3342e75390dc1f 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":"J D E F 4B","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F 6B 7B","33":"A B C K L G"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B","33":"0 1 2 3 4 5 6 C K L G M N O q r s t u v w x y z"},E:{"1":"yB zB 0B nB 1B GC","2":"9B uB","33":"I p J D E AC BC CC","257":"F A B C K L G DC vB lB mB wB EC FC xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB","33":"G M N O q r s t"},G:{"1":"yB zB 0B nB 1B","33":"E uB MC 3B NC OC PC QC","257":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB"},H:{"2":"gC"},I:{"1":"H","2":"hC iC jC","33":"oB I kC 3B lC mC"},J:{"33":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:5,C:"CSS3 3D Transforms"}; +module.exports={A:{A:{"2":"J D E F 4B","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F 6B 7B","33":"A B C K L G"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B","33":"0 1 2 3 4 5 6 7 C K L G M N O r s t u v w x y z"},E:{"1":"yB zB 0B oB 1B HC","2":"AC uB","33":"I q J D E BC CC DC","257":"F A B C K L G EC vB mB nB wB FC GC xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB","33":"G M N O r s t u"},G:{"1":"yB zB 0B oB 1B","33":"E uB NC 3B OC PC QC RC","257":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB"},H:{"2":"hC"},I:{"1":"H","2":"iC jC kC","33":"pB I lC 3B mC nC"},J:{"33":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:5,C:"CSS3 3D Transforms"}; 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 4dee25913b3831..2f7e6737384cd8 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":"J D E F A B 4B"},B:{"1":"S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"vC wC xC nB yC zC","2":"I oC pC qC rC sC vB tC uC"},Q:{"2":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:7,C:"Trusted Types for DOM manipulation"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"wC xC yC oB zC 0C","2":"I pC qC rC sC tC vB uC vC"},Q:{"2":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:7,C:"Trusted Types for DOM manipulation"}; 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 7737f403601274..21c0c0c6bfc525 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":"J D E 4B","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","2":"5B oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a IC JC KC lB 2B LC mB","2":"F HC"},G:{"1":"E 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC"},H:{"2":"gC"},I:{"1":"oB I H iC jC kC 3B lC mC","2":"hC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"TTF/OTF - TrueType and OpenType font support"}; +module.exports={A:{A:{"2":"J D E 4B","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","2":"5B pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a JC KC LC mB 2B MC nB","2":"F IC"},G:{"1":"E 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC"},H:{"2":"hC"},I:{"1":"pB I H jC kC lC 3B mC nC","2":"iC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"TTF/OTF - TrueType and OpenType font support"}; 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 feaefb4b8c3b11..5773d02ae0a2d2 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":"J D E F 4B","132":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J"},E:{"1":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB","260":"AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a LC mB","2":"F B HC IC JC KC lB 2B"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC","260":"3B"},H:{"1":"gC"},I:{"1":"I H kC 3B lC mC","2":"oB hC iC jC"},J:{"1":"A","2":"D"},K:{"1":"C c mB","2":"A B lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"Typed Arrays"}; +module.exports={A:{A:{"1":"B","2":"J D E F 4B","132":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J"},E:{"1":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB","260":"BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a MC nB","2":"F B IC JC KC LC mB 2B"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC","260":"3B"},H:{"1":"hC"},I:{"1":"I H lC 3B mC nC","2":"pB iC jC kC"},J:{"1":"A","2":"D"},K:{"1":"C c nB","2":"A B mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"Typed Arrays"}; 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 239b5b486081cf..64e12b14908503 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":"J D E F A B 4B"},B:{"2":"C K L G M N O","513":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB 6B 7B","322":"IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB"},D:{"2":"0 1 2 3 4 5 6 7 8 I p J D E F A B C K L G M N O q r s t u v w x y z sB tB 8B","130":"9 AB BB","513":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i","578":"j k l m n o b H"},E:{"1":"K L G wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B C 9B uB AC BC CC DC vB lB mB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB CB HC IC JC KC lB 2B LC mB","513":"BB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"1":"bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"322":"1C"}},B:7,C:"FIDO U2F API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O H","513":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b"},C:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB 6B 7B","322":"JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z H tB 8B 9B","130":"AB BB CB","513":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i","578":"j k l m n o p b"},E:{"1":"K L G wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B C AC uB BC CC DC EC vB mB nB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB DB IC JC KC LC mB 2B MC nB","513":"CB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"1":"cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"322":"2C"}},B:7,C:"FIDO U2F API"}; 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 8dd35e7a2885fd..ff48eb049d9d64 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB 6B 7B"},D:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},E:{"1":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC vB"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC","16":"VC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:1,C:"unhandledrejection/rejectionhandled events"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB 6B 7B"},D:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC vB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC","16":"WC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:1,C:"unhandledrejection/rejectionhandled events"}; 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 1f59f7945bc9a7..141915823ed1de 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":"J D E F A B 4B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB 6B 7B"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"Upgrade Insecure Requests"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB 6B 7B"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"Upgrade Insecure Requests"}; 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 2a61d50db63a76..1e807774904e9c 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":"J D E F A B 4B"},B:{"1":"S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O","66":"P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB","66":"gB hB iB jB kB P Q"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB HC IC JC KC lB 2B LC mB","66":"YB ZB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"vC wC xC nB yC zC","2":"I oC pC qC rC sC vB tC uC"},Q:{"2":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:7,C:"URL Scroll-To-Text Fragment"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O","66":"P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB","66":"hB iB jB kB lB P Q"},E:{"1":"1B HC","2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB IC JC KC LC mB 2B MC nB","66":"ZB aB"},G:{"1":"1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"wC xC yC oB zC 0C","2":"I pC qC rC sC tC vB uC vC"},Q:{"2":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:7,C:"URL Scroll-To-Text Fragment"}; 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 a11c6e50248d9e..894a9e3843e066 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":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t u v w 6B 7B"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r s t","130":"0 1 2 u v w x y z"},E:{"1":"E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J 9B uB AC BC","130":"D"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB","130":"G M N O"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC","130":"PC"},H:{"2":"gC"},I:{"1":"H mC","2":"oB I hC iC jC kC 3B","130":"lC"},J:{"2":"D","130":"A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"URL API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s t u v w x 6B 7B"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r s t u","130":"0 1 2 3 v w x y z"},E:{"1":"E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J AC uB BC CC","130":"D"},F:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB","130":"G M N O"},G:{"1":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC","130":"QC"},H:{"2":"hC"},I:{"1":"H nC","2":"pB I iC jC kC lC 3B","130":"mC"},J:{"2":"D","130":"A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"URL API"}; 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 ec2d111def2a88..668d9aed694683 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":"J D E F A B 4B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","132":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB"},D:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},E:{"1":"B C K L G vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"URLSearchParams"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","132":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB"},D:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"B C K L G vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"URLSearchParams"}; 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 b6929460291957..b342890efa2d32 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C"},E:{"1":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB","132":"p AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a LC mB","2":"F B HC IC JC KC lB 2B"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B"},H:{"1":"gC"},I:{"1":"oB I H kC 3B lC mC","2":"hC iC jC"},J:{"1":"D A"},K:{"1":"C c 2B mB","2":"A B lB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"ECMAScript 5 Strict Mode"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C"},E:{"1":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB","132":"q BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a MC nB","2":"F B IC JC KC LC mB 2B"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B"},H:{"1":"hC"},I:{"1":"pB I H lC 3B mC nC","2":"iC jC kC"},J:{"1":"D A"},K:{"1":"C c 2B nB","2":"A B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"ECMAScript 5 Strict Mode"}; 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 c6e5938c725ee0..0e31642343d178 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":"J D E F 4B","33":"A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","33":"C K L G M N O"},C:{"1":"bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","33":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB 6B 7B"},D:{"1":"PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","33":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"GC","33":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB","33":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB"},G:{"33":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","33":"oB I hC iC jC kC 3B lC mC"},J:{"33":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"33":"A B"},O:{"1":"nC"},P:{"1":"pC qC rC sC vB tC uC vC wC xC nB yC zC","33":"I oC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"33":"1C"}},B:5,C:"CSS user-select: none"}; +module.exports={A:{A:{"2":"J D E F 4B","33":"A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","33":"C K L G M N O"},C:{"1":"cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","33":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB 6B 7B"},D:{"1":"QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","33":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"HC","33":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB","33":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB"},G:{"33":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","33":"pB I iC jC kC lC 3B mC nC"},J:{"33":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"33":"A B"},O:{"1":"oC"},P:{"1":"qC rC sC tC vB uC vC wC xC yC oB zC 0C","33":"I pC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"33":"2C"}},B:5,C:"CSS user-select: none"}; 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 7236e18ff171f1..37b979a0b32838 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q r s t u v"},E:{"1":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"User Timing API"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r s t u v w"},E:{"1":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"User Timing API"}; 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 d17490c53a7b78..920f0035f893bf 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":"J D E F A B 4B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 6B 7B","4609":"VB WB c XB YB ZB aB bB cB","4674":"qB","5698":"UB","7490":"OB PB QB RB SB","7746":"TB pB","8705":"dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","4097":"YB","4290":"pB UB qB","6148":"VB WB c XB"},E:{"1":"G FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC vB","4609":"B C lB mB","8193":"K L wB EC"},F:{"1":"PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB HC IC JC KC lB 2B LC mB","4097":"OB","6148":"KB LB MB NB"},G:{"1":"ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC","4097":"VC WC XC YC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"4097":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"2":"I oC pC qC","4097":"rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"Variable fonts"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB 6B 7B","4609":"WB XB c YB ZB aB bB cB dB","4674":"rB","5698":"VB","7490":"PB QB RB SB TB","7746":"UB qB","8705":"eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","4097":"ZB","4290":"qB VB rB","6148":"WB XB c YB"},E:{"1":"G GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC vB","4609":"B C mB nB","8193":"K L wB FC"},F:{"1":"QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB IC JC KC LC mB 2B MC nB","4097":"PB","6148":"LB MB NB OB"},G:{"1":"aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC","4097":"WC XC YC ZC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"4097":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"2":"I pC qC rC","4097":"sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"Variable fonts"}; 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 8ef730fa36a9ff..eec86e53626ba8 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L"},E:{"1":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a LC mB","2":"F B HC IC JC KC lB 2B"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB MC 3B"},H:{"1":"gC"},I:{"1":"H lC mC","16":"oB I hC iC jC kC 3B"},J:{"16":"D A"},K:{"1":"C c mB","2":"A B lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"SVG vector-effect: non-scaling-stroke"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L"},E:{"1":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a MC nB","2":"F B IC JC KC LC mB 2B"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB NC 3B"},H:{"1":"hC"},I:{"1":"H mC nC","16":"pB I iC jC kC lC 3B"},J:{"16":"D A"},K:{"1":"C c nB","2":"A B mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"SVG vector-effect: non-scaling-stroke"}; 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 5bd49571b20639..ea9cdeddd6389e 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A 6B 7B","33":"B C K L G"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"Vibration API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A 6B 7B","33":"B C K L G"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"Vibration API"}; 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 d9fc904050e7db..80e9b830021d0c 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB","260":"I p J D E F A B C K L G M N O q 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A AC BC CC DC vB","2":"9B uB","513":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a JC KC lB 2B LC mB","2":"F HC IC"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC","513":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"oB I H jC kC 3B lC mC","132":"hC iC"},J:{"1":"D A"},K:{"1":"B C c lB 2B mB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Video element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB","260":"I q J D E F A B C K L G M N O r 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A BC CC DC EC vB","2":"AC uB","513":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a KC LC mB 2B MC nB","2":"F IC JC"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC","513":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"pB I H kC lC 3B mC nC","132":"iC jC"},J:{"1":"D A"},K:{"1":"B C c mB 2B nB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Video element"}; 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 a233b3e4b7750f..52094e0d5d61ce 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":"J D E F A B 4B"},B:{"1":"C K L G M N O","322":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","194":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB","322":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J 9B uB AC"},F:{"2":"0 1 2 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","322":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"322":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"322":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"322":"wB"},R:{"322":"0C"},S:{"194":"1C"}},B:1,C:"Video Tracks"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"C K L G M N O","322":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","194":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB","322":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J AC uB BC"},F:{"2":"0 1 2 3 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","322":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"322":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"322":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"322":"wB"},R:{"322":"1C"},S:{"194":"2C"}},B:1,C:"Video Tracks"}; 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 ebc361b03b861f..d9fc5365a5eed9 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b","194":"H"},C:{"1":"m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k","194":"l m n o b H sB tB 8B"},E:{"1":"yB zB 0B nB 1B GC","2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z HC IC JC KC lB 2B LC mB","194":"a"},G:{"1":"yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:5,C:"Large, Small, and Dynamic viewport units"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p","194":"b H"},C:{"1":"m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l 6B 7B"},D:{"1":"8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k","194":"l m n o p b H tB"},E:{"1":"yB zB 0B oB 1B HC","2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z IC JC KC LC mB 2B MC nB","194":"a"},G:{"1":"yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:5,C:"Large, Small, and Dynamic viewport units"}; 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 1d2708abe08b59..bc211ebccdd47f 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":"J D E 4B","132":"F","260":"A B"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","260":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N O q","260":"r s t u v w"},E:{"1":"D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC","260":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC","516":"PC","772":"OC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"260":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"Viewport units: vw, vh, vmin, vmax"}; +module.exports={A:{A:{"2":"J D E 4B","132":"F","260":"A B"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","260":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N O r","260":"s t u v w x"},E:{"1":"D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC","260":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC","516":"QC","772":"PC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"260":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"Viewport units: vw, vh, vmin, vmax"}; 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 d0d032230edf5a..505695fa6400da 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":"J D 4B","4":"E F A B"},B:{"4":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"4":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"9B uB","4":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"F","4":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"4":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"4":"gC"},I:{"2":"oB I hC iC jC kC 3B","4":"H lC mC"},J:{"2":"D A"},K:{"4":"A B C c lB 2B mB"},L:{"4":"H"},M:{"4":"b"},N:{"4":"A B"},O:{"4":"nC"},P:{"4":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"4":"wB"},R:{"4":"0C"},S:{"4":"1C"}},B:2,C:"WAI-ARIA Accessibility features"}; +module.exports={A:{A:{"2":"J D 4B","4":"E F A B"},B:{"4":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"4":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"AC uB","4":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"F","4":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"4":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"4":"hC"},I:{"2":"pB I iC jC kC lC 3B","4":"H mC nC"},J:{"2":"D A"},K:{"4":"A B C c mB 2B nB"},L:{"4":"H"},M:{"4":"b"},N:{"4":"A B"},O:{"4":"oC"},P:{"4":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"4":"wB"},R:{"4":"1C"},S:{"4":"2C"}},B:2,C:"WAI-ARIA Accessibility features"}; 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 a58d19d52dddcd..2ef051c2837e56 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":"J D E F A B 4B"},B:{"1":"Z a d e f g h i j k l m n o b H","2":"C K L G M N O","194":"P Q R S T U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB","194":"dB eB fB gB hB iB jB kB P Q R S T"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB HC IC JC KC lB 2B LC mB","194":"TB UB VB WB c XB YB ZB aB bB cB dB eB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"wC xC nB yC zC","2":"I oC pC qC rC sC vB tC uC vC"},Q:{"2":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:4,C:"Screen Wake Lock API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"Z a d e f g h i j k l m n o p b H","2":"C K L G M N O","194":"P Q R S T U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB","194":"eB fB gB hB iB jB kB lB P Q R S T"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB IC JC KC LC mB 2B MC nB","194":"UB VB WB XB c YB ZB aB bB cB dB eB fB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"xC yC oB zC 0C","2":"I pC qC rC sC tC vB uC vC wC"},Q:{"2":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:4,C:"Screen Wake Lock API"}; 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 8c8483357f1c63..c991cecfc07e0a 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":"J D E F A B 4B"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L","578":"G"},C:{"1":"OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB 6B 7B","194":"IB JB KB LB MB","1025":"NB"},D:{"1":"SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","322":"MB NB OB PB QB RB"},E:{"1":"B C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC vB"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","322":"9 AB BB CB DB EB"},G:{"1":"VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"qC rC sC vB tC uC vC wC xC nB yC zC","2":"I oC pC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"194":"1C"}},B:6,C:"WebAssembly"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L","578":"G"},C:{"1":"PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB 6B 7B","194":"JB KB LB MB NB","1025":"OB"},D:{"1":"TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","322":"NB OB PB QB RB SB"},E:{"1":"B C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC vB"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","322":"AB BB CB DB EB FB"},G:{"1":"WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"194":"2C"}},B:6,C:"WebAssembly"}; 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 3193f470e26bce..b2293389c22690 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":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","2":"5B oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a JC KC lB 2B LC mB","2":"F HC IC"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"oB I H jC kC 3B lC mC","16":"hC iC"},J:{"1":"D A"},K:{"1":"B C c lB 2B mB","16":"A"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"Wav audio format"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","2":"5B pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a KC LC mB 2B MC nB","2":"F IC JC"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"pB I H kC lC 3B mC nC","16":"iC jC"},J:{"1":"D A"},K:{"1":"B C c mB 2B nB","16":"A"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"Wav audio format"}; 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 991a0e6843ef64..9d8709332460a9 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":"J D 4B","2":"E F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","16":"F"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB MC 3B"},H:{"1":"gC"},I:{"1":"oB I H jC kC 3B lC mC","16":"hC iC"},J:{"1":"D A"},K:{"1":"B C c lB 2B mB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"wbr (word break opportunity) element"}; +module.exports={A:{A:{"1":"J D 4B","2":"E F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","16":"F"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB NC 3B"},H:{"1":"hC"},I:{"1":"pB I H kC lC 3B mC nC","16":"iC jC"},J:{"1":"D A"},K:{"1":"B C c mB 2B nB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"wbr (word break opportunity) element"}; 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 60817e5963a301..b74c8337b46996 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":"J D E F A B 4B"},B:{"1":"T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O","260":"P Q R S"},C:{"1":"R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","260":"pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB","516":"IB JB KB LB MB NB OB PB QB RB SB TB","580":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB","2049":"hB iB jB kB P Q"},D:{"1":"T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 I p J D E F A B C K L G M N O q r s t u v w x y z","132":"7 8 9","260":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S"},E:{"1":"G FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC vB","1090":"B C K lB mB","2049":"L wB EC"},F:{"1":"dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t HC IC JC KC lB 2B LC mB","132":"u v w","260":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC","1090":"VC WC XC YC ZC aC bC","2049":"cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"260":"nC"},P:{"260":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"260":"wB"},R:{"1":"0C"},S:{"516":"1C"}},B:5,C:"Web Animations API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O","260":"P Q R S"},C:{"1":"R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","260":"qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB","516":"JB KB LB MB NB OB PB QB RB SB TB UB","580":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB","2049":"iB jB kB lB P Q"},D:{"1":"T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 I q J D E F A B C K L G M N O r s t u v w x y z","132":"8 9 AB","260":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S"},E:{"1":"G GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC vB","1090":"B C K mB nB","2049":"L wB FC"},F:{"1":"eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u IC JC KC LC mB 2B MC nB","132":"v w x","260":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC","1090":"WC XC YC ZC aC bC cC","2049":"dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"260":"oC"},P:{"260":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"260":"wB"},R:{"1":"1C"},S:{"516":"2C"}},B:5,C:"Web Animations API"}; 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 a1505db417b8d3..b840b19ca06d5e 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M","130":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","578":"iB jB kB P Q R rB S T U"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC","260":"WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"Add to home screen (A2HS)"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M","130":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","578":"jB kB lB P Q R sB S T U"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC","260":"XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"Add to home screen (A2HS)"}; 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 96dde1f61c9cf8..55e9ab4e1a9b96 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":"J D E F A B 4B"},B:{"2":"C K L G M N O","1025":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB","194":"GB HB IB JB KB LB MB NB","706":"OB PB QB","1025":"RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 F B C G M N O q r s t u v w x y z HC IC JC KC lB 2B LC mB","450":"7 8 9 AB","706":"BB CB DB","1025":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B lC mC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C lB 2B mB","1025":"c"},L:{"1025":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1025":"nC"},P:{"1":"pC qC rC sC vB tC uC vC wC xC nB yC zC","2":"I oC"},Q:{"2":"wB"},R:{"1025":"0C"},S:{"2":"1C"}},B:7,C:"Web Bluetooth"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O","1025":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB","194":"HB IB JB KB LB MB NB OB","706":"PB QB RB","1025":"SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 F B C G M N O r s t u v w x y z IC JC KC LC mB 2B MC nB","450":"8 9 AB BB","706":"CB DB EB","1025":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B mC nC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C mB 2B nB","1025":"c"},L:{"1025":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1025":"oC"},P:{"1":"qC rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC"},Q:{"2":"wB"},R:{"1025":"1C"},S:{"2":"2C"}},B:7,C:"Web Bluetooth"}; 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 4afd3c215c3d4e..15df50fa623aea 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":"J D E F A B 4B"},B:{"1":"Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O","66":"P Q R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB","66":"kB P Q R S T U V W X"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c HC IC JC KC lB 2B LC mB","66":"XB YB ZB aB bB cB dB eB fB gB hB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:7,C:"Web Serial API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O","66":"P Q R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB","66":"lB P Q R S T U V W X"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c IC JC KC LC mB 2B MC nB","66":"YB ZB aB bB cB dB eB fB gB hB iB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:7,C:"Web Serial API"}; 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 520ddf7228f682..b06b6864b3c152 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":"J D E F A B 4B"},B:{"1":"g h i j k l m n o b H","2":"C K L G M N O P Q","516":"R S T U V W X Y Z a d e f"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X","130":"O q r s t u v","1028":"Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"L G EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B C 9B uB AC BC CC DC vB lB","2049":"K mB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC","2049":"YC ZC aC bC cC"},H:{"2":"gC"},I:{"2":"oB I hC iC jC kC 3B lC","258":"H mC"},J:{"2":"D A"},K:{"2":"A B C lB 2B mB","258":"c"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"rC sC vB tC uC vC wC xC nB yC zC","2":"I","258":"oC pC qC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:4,C:"Web Share API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"g h i j k l m n o p b H","2":"C K L G M N O P Q","516":"R S T U V W X Y Z a d e f"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X","130":"O r s t u v w","1028":"Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"L G FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B C AC uB BC CC DC EC vB mB","2049":"K nB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC","2049":"ZC aC bC cC dC"},H:{"2":"hC"},I:{"2":"pB I iC jC kC lC 3B mC","258":"H nC"},J:{"2":"D A"},K:{"2":"A B C mB 2B nB","258":"c"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"sC tC vB uC vC wC xC yC oB zC 0C","2":"I","258":"pC qC rC"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:4,C:"Web Share API"}; 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 805b1770d1eb79..7256e36e67c1bb 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":"J D E F A B 4B"},B:{"1":"O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C","226":"K L G M N"},C:{"1":"UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB 6B 7B"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB"},E:{"1":"K L G wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F A B C 9B uB AC BC CC DC vB lB","322":"mB"},F:{"1":"PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB HC IC JC KC lB 2B LC mB"},G:{"1":"eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC","578":"aC","2052":"dC","3076":"bC cC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"yC zC","2":"I oC pC qC rC sC vB tC uC vC wC xC nB"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:2,C:"Web Authentication API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C","226":"K L G M N"},C:{"1":"VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB 6B 7B"},D:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB"},E:{"1":"K L G wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F A B C AC uB BC CC DC EC vB mB","322":"nB"},F:{"1":"QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB IC JC KC LC mB 2B MC nB"},G:{"1":"fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC","578":"bC","2052":"eC","3076":"cC dC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"zC 0C","2":"I pC qC rC sC tC vB uC vC wC xC yC oB"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:2,C:"Web Authentication API"}; 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 35aa6da867fbdb..70be8e5a981bca 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":"J D E F A B 4B"},B:{"1":"f g h i j k l m n o b H","2":"C K L G M N O P Q R S T U V W X Y Z a d e"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"yC zC","2":"I oC pC qC rC sC vB tC uC vC wC xC nB"},Q:{"2":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"WebCodecs API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"f g h i j k l m n o p b H","2":"C K L G M N O P Q R S T U V W X Y Z a d e"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"zC 0C","2":"I pC qC rC sC tC vB uC vC wC xC yC oB"},Q:{"2":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"WebCodecs API"}; 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 58482af2b5430d..8ed1f215ccfb06 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":"4B","8":"J D E F A","129":"B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","129":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B","129":"I p J D E F A B C K L G M N O q r s t u"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D","129":"0 1 2 3 E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"E F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB","129":"J D AC BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B HC IC JC KC lB 2B LC","129":"C G M N O mB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC PC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"1":"A","2":"D"},K:{"1":"C c mB","2":"A B lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"8":"A","129":"B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"129":"1C"}},B:6,C:"WebGL - 3D Canvas graphics"}; +module.exports={A:{A:{"2":"4B","8":"J D E F A","129":"B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","129":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B","129":"I q J D E F A B C K L G M N O r s t u v"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D","129":"0 1 2 3 4 E F A B C K L G M N O r s t u v w x y z"},E:{"1":"E F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB","129":"J D BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B IC JC KC LC mB 2B MC","129":"C G M N O nB"},G:{"1":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC QC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"1":"A","2":"D"},K:{"1":"C c nB","2":"A B mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"8":"A","129":"B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"129":"2C"}},B:6,C:"WebGL - 3D Canvas graphics"}; 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 fbd898c7e075d0..7ee8108e99ba52 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t u v 6B 7B","194":"DB EB FB","450":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB","2242":"GB HB IB JB KB LB"},D:{"1":"RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB","578":"EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"G FC xB yB zB 0B nB 1B GC","2":"I p J D E F A 9B uB AC BC CC DC","1090":"B C K L vB lB mB wB EC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB HC IC JC KC lB 2B LC mB"},G:{"1":"fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC","1090":"XC YC ZC aC bC cC dC eC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"qC rC sC vB tC uC vC wC xC nB yC zC","2":"I oC pC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"2242":"1C"}},B:6,C:"WebGL 2.0"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L G M N O r s t u v w 6B 7B","194":"EB FB GB","450":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB","2242":"HB IB JB KB LB MB"},D:{"1":"SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB","578":"FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"G GC xB yB zB 0B oB 1B HC","2":"I q J D E F A AC uB BC CC DC EC","1090":"B C K L vB mB nB wB FC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB IC JC KC LC mB 2B MC nB"},G:{"1":"gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC","1090":"YC ZC aC bC cC dC eC fC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"rC sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC"},Q:{"1":"wB"},R:{"1":"1C"},S:{"2242":"2C"}},B:6,C:"WebGL 2.0"}; 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 d812adbfe77a54..3b4c4dfaff7feb 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P","578":"Q R S T U V W X Y Z a d e","1602":"f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB 6B 7B","194":"WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P","578":"Q R S T U V W X Y Z a d e","1602":"f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B 9B uB AC BC CC DC vB","322":"C K L G lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB HC IC JC KC lB 2B LC mB","578":"fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"194":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:5,C:"WebGPU"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P","578":"Q R S T U V W X Y Z a d e","1602":"f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB 6B 7B","194":"XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P","578":"Q R S T U V W X Y Z a d e","1602":"f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B AC uB BC CC DC EC vB","322":"C K L G mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB IC JC KC LC mB 2B MC nB","578":"gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"194":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:5,C:"WebGPU"}; 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 abfc0d0ef44001..e12c5cf40a6255 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":"J D E F A B 4B"},B:{"1":"Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O","66":"P Q R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB","66":"kB P Q R S T U V W X"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB HC IC JC KC lB 2B LC mB","66":"YB ZB aB bB cB dB eB fB gB hB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:7,C:"WebHID API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O","66":"P Q R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB","66":"lB P Q R S T U V W X"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB IC JC KC LC mB 2B MC nB","66":"ZB aB bB cB dB eB fB gB hB iB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:7,C:"WebHID API"}; 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 04979238b5548a..d625843af68958 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":"J D E F A B 4B"},B:{"2":"C K L G M N O","132":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"16":"I p J D E F A B C K L G","132":"0 1 2 3 4 5 6 7 8 9 M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"F B C HC IC JC KC lB 2B LC mB","132":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:7,C:"CSS -webkit-user-drag property"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O","132":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"16":"I q J D E F A B C K L G","132":"0 1 2 3 4 5 6 7 8 9 M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"F B C IC JC KC LC mB 2B MC nB","132":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:7,C:"CSS -webkit-user-drag property"}; 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 b446e32063b98c..b57b070638de2f 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":"J D E 4B","520":"F A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","8":"C K","388":"L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B","132":"I p J D E F A B C K L G M N O q r s t u v w x y"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p","132":"J D E F A B C K L G M N O q r s t u v"},E:{"1":"nB 1B GC","2":"9B","8":"I p uB AC","520":"J D E F A B C BC CC DC vB lB","1028":"K mB wB","7172":"L","8196":"G EC FC xB yB zB 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F HC IC JC","132":"B C G KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC","1028":"YC ZC aC bC cC","3076":"dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"hC iC","132":"oB I jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"8":"A B"},O:{"1":"nC"},P:{"1":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC","132":"I"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:6,C:"WebM video format"}; +module.exports={A:{A:{"2":"J D E 4B","520":"F A B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","8":"C K","388":"L G M N O"},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 NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B","132":"I q J D E F A B C K L G M N O r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q","132":"J D E F A B C K L G M N O r s t u v w"},E:{"1":"oB 1B HC","2":"AC","8":"I q uB BC","520":"J D E F A B C CC DC EC vB mB","1028":"K nB wB","7172":"L","8196":"G FC GC xB yB zB 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F IC JC KC","132":"B C G LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC","1028":"ZC aC bC cC dC","3076":"eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"iC jC","132":"pB I kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"8":"A B"},O:{"1":"oC"},P:{"1":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C","132":"I"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:6,C:"WebM video format"}; 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 0bee9b5fba7d93..647f7a2f7da9e2 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":"J D E F A B 4B"},B:{"2":"C K L G M N O P Y Z a d e f g h i j k l m n o b H","450":"Q R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Y Z a d e f g h i j k l m n o b H sB tB 8B","450":"Q R S T U V W X"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB HC IC JC KC lB 2B LC mB","450":"ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"257":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:7,C:"Web NFC"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O P Y Z a d e f g h i j k l m n o p b H","450":"Q R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Y Z a d e f g h i j k l m n o p b H tB 8B 9B","450":"Q R S T U V W X"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB IC JC KC LC mB 2B MC nB","450":"aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"257":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:7,C:"Web NFC"}; 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 2e3f89376231ab..129892edca6452 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":"J D E F A B 4B"},B:{"1":"O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B","8":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p","8":"J D E","132":"F A B C K L G M N O q r s t","260":"0 1 2 u v w x y z"},E:{"1":"nB 1B GC","2":"I p J D E F A B C K 9B uB AC BC CC DC vB lB mB wB","516":"L G EC FC xB yB zB 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F HC IC JC","8":"B KC","132":"lB 2B LC","260":"C G M N O mB"},G:{"1":"dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC"},H:{"1":"gC"},I:{"1":"H 3B lC mC","2":"oB hC iC jC","132":"I kC"},J:{"2":"D A"},K:{"1":"C c lB 2B mB","2":"A","132":"B"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"8":"1C"}},B:6,C:"WebP image format"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B","8":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q","8":"J D E","132":"F A B C K L G M N O r s t u","260":"0 1 2 3 v w x y z"},E:{"1":"oB 1B HC","2":"I q J D E F A B C K AC uB BC CC DC EC vB mB nB wB","516":"L G FC GC xB yB zB 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F IC JC KC","8":"B LC","132":"mB 2B MC","260":"C G M N O nB"},G:{"1":"eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC"},H:{"1":"hC"},I:{"1":"H 3B mC nC","2":"pB iC jC kC","132":"I lC"},J:{"2":"D A"},K:{"1":"C c mB 2B nB","2":"A","132":"B"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"8":"2C"}},B:6,C:"WebP image format"}; 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 09eaac56f11948..44eba9b09bb120 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB 6B 7B","132":"I p","292":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","132":"I p J D E F A B C K L","260":"G"},E:{"1":"D E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB","132":"p AC","260":"J BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"F HC IC JC KC","132":"B C lB 2B LC"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC","132":"3B NC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"1":"A","129":"D"},K:{"1":"c mB","2":"A","132":"B C lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Web Sockets"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB 6B 7B","132":"I q","292":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","132":"I q J D E F A B C K L","260":"G"},E:{"1":"D E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB","132":"q BC","260":"J CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"F IC JC KC LC","132":"B C mB 2B MC"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC","132":"3B OC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"1":"A","129":"D"},K:{"1":"c nB","2":"A","132":"B C mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Web Sockets"}; 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 72944feda7c8b0..9382ec12dae123 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":"J D E F A B 4B"},B:{"1":"j k l m n o b H","2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z g h","66":"a d e f"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB HC IC JC KC lB 2B LC mB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"1":"zC","2":"I oC pC qC rC sC vB tC uC vC wC xC nB yC"},Q:{"2":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:5,C:"WebTransport"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"j k l m n o p b H","2":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z g h","66":"a d e f"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB IC JC KC LC mB 2B MC nB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"1":"0C","2":"I pC qC rC sC tC vB uC vC wC xC yC oB zC"},Q:{"2":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:5,C:"WebTransport"}; 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 78d5b002c8527a..07491869247fbf 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","66":"PB QB RB SB TB pB UB"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB HC IC JC KC lB 2B LC mB","66":"CB DB EB FB GB HB IB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"rC sC vB tC uC vC wC xC nB yC zC","2":"I oC pC qC"},Q:{"2":"wB"},R:{"1":"0C"},S:{"2":"1C"}},B:7,C:"WebUSB"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","66":"QB RB SB TB UB qB VB"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB IC JC KC LC mB 2B MC nB","66":"DB EB FB GB HB IB JB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"1":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"sC tC vB uC vC wC xC yC oB zC 0C","2":"I pC qC rC"},Q:{"2":"wB"},R:{"1":"1C"},S:{"2":"2C"}},B:7,C:"WebUSB"}; 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 f3e44f0b1038cc..1d185e80d2da33 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":"J D E F A B 4B"},B:{"2":"C K L Q R S T U V W X Y Z a d e f g h i j k l m n o b H","66":"P","257":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB 6B 7B","129":"QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","194":"PB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","66":"SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P"},E:{"2":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","66":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C c lB 2B mB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"513":"I","516":"oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:7,C:"WebVR API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","66":"P","257":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB 6B 7B","129":"RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","194":"QB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","66":"TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P"},E:{"2":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","66":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C c mB 2B nB"},L:{"2":"H"},M:{"2":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"513":"I","516":"pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:7,C:"WebVR API"}; 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 271b663b021184..1eede1ce057826 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"5B oB I p J D E F A B C K L G M N O q r s t u 6B 7B","66":"0 1 v w x y z","129":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","257":"QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I p J D E F A B C K L G M N"},E:{"1":"J D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B NC OC"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB I hC iC jC kC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"129":"1C"}},B:4,C:"WebVTT - Web Video Text Tracks"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"5B pB I q J D E F A B C K L G M N O r s t u v 6B 7B","66":"0 1 2 w x y z","129":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","257":"RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I q J D E F A B C K L G M N"},E:{"1":"J D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B OC PC"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB I iC jC kC lC 3B"},J:{"1":"A","2":"D"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"B","2":"A"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"129":"2C"}},B:4,C:"WebVTT - Web Video Text Tracks"}; 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 8d6e620d789c78..d1b578af810b3f 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":"4B","8":"J D E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","8":"5B oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","8":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a KC lB 2B LC mB","2":"F HC","8":"IC JC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B"},H:{"2":"gC"},I:{"1":"H hC lC mC","2":"oB I iC jC kC 3B"},J:{"1":"D A"},K:{"1":"B C c lB 2B mB","8":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Web Workers"}; +module.exports={A:{A:{"1":"A B","2":"4B","8":"J D E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","8":"5B pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","8":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a LC mB 2B MC nB","2":"F IC","8":"JC KC"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B"},H:{"2":"hC"},I:{"1":"H iC mC nC","2":"pB I jC kC lC 3B"},J:{"1":"D A"},K:{"1":"B C c mB 2B nB","8":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Web Workers"}; 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 24257e4f5a3a51..e7a0bd87833a3b 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":"J D E F A B 4B"},B:{"2":"C K L G M N O","132":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB 6B 7B","322":"jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c","66":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB","132":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"2":"I p J D E F A B C 9B uB AC BC CC DC vB lB mB","578":"K L G wB EC FC xB yB zB 0B nB 1B GC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB HC IC JC KC lB 2B LC mB","66":"NB OB PB QB RB SB TB UB VB WB c XB","132":"YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a"},G:{"2":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"2":"gC"},I:{"2":"oB I H hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"2":"A B C lB 2B mB","132":"c"},L:{"132":"H"},M:{"322":"b"},N:{"2":"A B"},O:{"2":"nC"},P:{"2":"I oC pC qC rC sC vB tC","132":"uC vC wC xC nB yC zC"},Q:{"2":"wB"},R:{"2":"0C"},S:{"2":"1C"}},B:4,C:"WebXR Device API"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"2":"C K L G M N O","132":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB 6B 7B","322":"kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c","66":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB","132":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"2":"I q J D E F A B C AC uB BC CC DC EC vB mB nB","578":"K L G wB FC GC xB yB zB 0B oB 1B HC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB IC JC KC LC mB 2B MC nB","66":"OB PB QB RB SB TB UB VB WB XB c YB","132":"ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a"},G:{"2":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"2":"hC"},I:{"2":"pB I H iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"2":"A B C mB 2B nB","132":"c"},L:{"132":"H"},M:{"322":"b"},N:{"2":"A B"},O:{"2":"oC"},P:{"2":"I pC qC rC sC tC vB uC","132":"vC wC xC yC oB zC 0C"},Q:{"2":"wB"},R:{"2":"1C"},S:{"2":"2C"}},B:4,C:"WebXR Device API"}; 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 3306b0739a4a6f..8971df6c97dc0f 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":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K L G M N O"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B","194":"0 1 2 3 4 5 6"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t u HC IC JC KC lB 2B LC mB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"CSS will-change property"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K L G M N O"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 5B pB I q J D E F A B C K L G M N O r s t u v w x y z 6B 7B","194":"1 2 3 4 5 6 7"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u v IC JC KC LC mB 2B MC nB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"CSS will-change property"}; 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 f3c2250a0d68c5..2bb148bd05f5f0 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 7B","2":"5B oB 6B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"I"},E:{"1":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p 9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a lB 2B LC mB","2":"F B HC IC JC KC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B"},H:{"2":"gC"},I:{"1":"H lC mC","2":"oB hC iC jC kC 3B","130":"I"},J:{"1":"D A"},K:{"1":"B C c lB 2B mB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"WOFF - Web Open Font Format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 7B","2":"5B pB 6B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"I"},E:{"1":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a mB 2B MC nB","2":"F B IC JC KC LC"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B"},H:{"2":"hC"},I:{"1":"H mC nC","2":"pB iC jC kC lC 3B","130":"I"},J:{"1":"D A"},K:{"1":"B C c mB 2B nB","2":"A"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"WOFF - Web Open Font Format"}; 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 b33525f4e20c71..a879f8d2f774b1 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":"J D E F A B 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","2":"C K"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z 6B 7B"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","2":"0 1 2 3 4 5 6 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"C K L G mB wB EC FC xB yB zB 0B nB 1B GC","2":"I p J D E F 9B uB AC BC CC DC","132":"A B vB lB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C G M N O q r s t HC IC JC KC lB 2B LC mB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"E uB MC 3B NC OC PC QC RC SC"},H:{"2":"gC"},I:{"1":"H","2":"oB I hC iC jC kC 3B lC mC"},J:{"2":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:2,C:"WOFF 2.0 - Web Open Font Format"}; +module.exports={A:{A:{"2":"J D E F A B 4B"},B:{"1":"L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","2":"C K"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB 6B 7B"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","2":"0 1 2 3 4 5 6 7 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"C K L G nB wB FC GC xB yB zB 0B oB 1B HC","2":"I q J D E F AC uB BC CC DC EC","132":"A B vB mB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C G M N O r s t u IC JC KC LC mB 2B MC nB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"E uB NC 3B OC PC QC RC SC TC"},H:{"2":"hC"},I:{"1":"H","2":"pB I iC jC kC lC 3B mC nC"},J:{"2":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"2":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:2,C:"WOFF 2.0 - Web Open Font Format"}; 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 1337e72b88e699..696019753c1c69 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":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB I p J D E F A B C K L 6B 7B"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","4":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB"},E:{"1":"F A B C K L G DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","4":"I p J D E 9B uB AC BC CC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","2":"F B C HC IC JC KC lB 2B LC mB","4":"0 1 G M N O q r s t u v w x y z"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","4":"E uB MC 3B NC OC PC QC"},H:{"2":"gC"},I:{"1":"H","4":"oB I hC iC jC kC 3B lC mC"},J:{"4":"D A"},K:{"1":"c","2":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"CSS3 word-break"}; +module.exports={A:{A:{"1":"J D E F A B 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB I q J D E F A B C K L 6B 7B"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","4":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"F A B C K L G EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","4":"I q J D E AC uB BC CC DC"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","2":"F B C IC JC KC LC mB 2B MC nB","4":"0 1 2 G M N O r s t u v w x y z"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","4":"E uB NC 3B OC PC QC RC"},H:{"2":"hC"},I:{"1":"H","4":"pB I iC jC kC lC 3B mC nC"},J:{"4":"D A"},K:{"1":"c","2":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"CSS3 word-break"}; 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 e312687fb1b880..80b8fdd35111f1 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":"J D E F A B 4B"},B:{"1":"O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H","4":"C K L G M N"},C:{"1":"KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB","4":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","4":"I p J D E F A B C K L G M N O q r s t"},E:{"1":"D E F A B C K L G BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","4":"I p J 9B uB AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"F HC IC","4":"B C JC KC lB 2B LC"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","4":"uB MC 3B NC OC"},H:{"4":"gC"},I:{"1":"H lC mC","4":"oB I hC iC jC kC 3B"},J:{"1":"A","4":"D"},K:{"1":"c","4":"A B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"4":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"4":"1C"}},B:4,C:"CSS3 Overflow-wrap"}; +module.exports={A:{A:{"4":"J D E F A B 4B"},B:{"1":"O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H","4":"C K L G M N"},C:{"1":"LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB","4":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","4":"I q J D E F A B C K L G M N O r s t u"},E:{"1":"D E F A B C K L G CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","4":"I q J AC uB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"F IC JC","4":"B C KC LC mB 2B MC"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","4":"uB NC 3B OC PC"},H:{"4":"hC"},I:{"1":"H mC nC","4":"pB I iC jC kC lC 3B"},J:{"1":"A","4":"D"},K:{"1":"c","4":"A B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"4":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"4":"2C"}},B:4,C:"CSS3 Overflow-wrap"}; 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 ca4b9fbca60eef..6036586a5d34c6 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":"J D 4B","132":"E F","260":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B","2":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"9B uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB","2":"F"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"4":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"Cross-document messaging"}; +module.exports={A:{A:{"2":"J D 4B","132":"E F","260":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B","2":"5B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB","2":"F"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"4":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"Cross-document messaging"}; 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 a5b8eb6d07afc9..6963943db86056 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":"J D 4B"},B:{"1":"C K L G M N O","4":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB","4":"I p J D E F A B C K L G M N cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","16":"5B oB 6B 7B"},D:{"4":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J D E F A B C K L G M N O q r s t u v w"},E:{"4":"J D E F A B C K L G AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","16":"I p 9B uB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a LC mB","16":"F B HC IC JC KC lB 2B"},G:{"4":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","16":"uB MC 3B NC OC"},H:{"2":"gC"},I:{"4":"I H kC 3B lC mC","16":"oB hC iC jC"},J:{"4":"D A"},K:{"4":"c mB","16":"A B C lB 2B"},L:{"4":"H"},M:{"4":"b"},N:{"1":"A B"},O:{"4":"nC"},P:{"4":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"4":"wB"},R:{"4":"0C"},S:{"1":"1C"}},B:6,C:"X-Frame-Options HTTP header"}; +module.exports={A:{A:{"1":"E F A B","2":"J D 4B"},B:{"1":"C K L G M N O","4":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB","4":"I q J D E F A B C K L G M N dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","16":"5B pB 6B 7B"},D:{"4":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J D E F A B C K L G M N O r s t u v w x"},E:{"4":"J D E F A B C K L G BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","16":"I q AC uB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a MC nB","16":"F B IC JC KC LC mB 2B"},G:{"4":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","16":"uB NC 3B OC PC"},H:{"2":"hC"},I:{"4":"I H lC 3B mC nC","16":"pB iC jC kC"},J:{"4":"D A"},K:{"4":"c nB","16":"A B C mB 2B"},L:{"4":"H"},M:{"4":"b"},N:{"1":"A B"},O:{"4":"oC"},P:{"4":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"4":"wB"},R:{"4":"1C"},S:{"1":"2C"}},B:6,C:"X-Frame-Options HTTP header"}; 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 4810f97bb5e005..0f0e1a745a9ea5 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":"J D E F 4B","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","2":"5B oB","260":"A B","388":"J D E F","900":"I p 6B 7B"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","16":"I p J","132":"0 1","388":"D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","2":"I 9B uB","132":"D BC","388":"p J AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a mB","2":"F B HC IC JC KC lB 2B LC","132":"G M N"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","2":"uB MC 3B","132":"PC","388":"NC OC"},H:{"2":"gC"},I:{"1":"H mC","2":"hC iC jC","388":"lC","900":"oB I kC 3B"},J:{"132":"A","388":"D"},K:{"1":"C c mB","2":"A B lB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"XMLHttpRequest advanced features"}; +module.exports={A:{A:{"2":"J D E F 4B","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","2":"5B pB","260":"A B","388":"J D E F","900":"I q 6B 7B"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","16":"I q J","132":"1 2","388":"0 D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","2":"I AC uB","132":"D CC","388":"q J BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a nB","2":"F B IC JC KC LC mB 2B MC","132":"G M N"},G:{"1":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","2":"uB NC 3B","132":"QC","388":"OC PC"},H:{"2":"hC"},I:{"1":"H nC","2":"iC jC kC","388":"mC","900":"pB I lC 3B"},J:{"132":"A","388":"D"},K:{"1":"C c nB","2":"A B mB 2B"},L:{"1":"H"},M:{"1":"b"},N:{"132":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"XMLHttpRequest advanced features"}; 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 0b52a0d7456c3c..9d6b471fb9eb38 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":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"1":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"1":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"1":"gC"},I:{"1":"oB I H hC iC jC kC 3B lC mC"},J:{"1":"D A"},K:{"1":"A B C c lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:1,C:"XHTML served as application/xhtml+xml"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"1":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"1":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"1":"hC"},I:{"1":"pB I H iC jC kC lC 3B mC nC"},J:{"1":"D A"},K:{"1":"A B C c mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:1,C:"XHTML served as application/xhtml+xml"}; 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 7320e4a798f2af..e4e4fab9aac787 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 4B","4":"J D E"},B:{"2":"C K L G M N O","8":"P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"8":"0 1 2 3 4 5 6 7 8 9 5B oB I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 6B 7B"},D:{"8":"0 1 2 3 4 5 6 7 8 9 I p J D E F A B C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B"},E:{"8":"I p J D E F A B C K L G 9B uB AC BC CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC"},F:{"8":"0 1 2 3 4 5 6 7 8 9 F B C G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a HC IC JC KC lB 2B LC mB"},G:{"8":"E uB MC 3B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B"},H:{"8":"gC"},I:{"8":"oB I H hC iC jC kC 3B lC mC"},J:{"8":"D A"},K:{"8":"A B C c lB 2B mB"},L:{"8":"H"},M:{"8":"b"},N:{"2":"A B"},O:{"8":"nC"},P:{"8":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"8":"wB"},R:{"8":"0C"},S:{"8":"1C"}},B:7,C:"XHTML+SMIL animation"}; +module.exports={A:{A:{"2":"F A B 4B","4":"J D E"},B:{"2":"C K L G M N O","8":"P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"8":"0 1 2 3 4 5 6 7 8 9 5B pB I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB 6B 7B"},D:{"8":"0 1 2 3 4 5 6 7 8 9 I q J D E F A B C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B"},E:{"8":"I q J D E F A B C K L G AC uB BC CC DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC"},F:{"8":"0 1 2 3 4 5 6 7 8 9 F B C G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a IC JC KC LC mB 2B MC nB"},G:{"8":"E uB NC 3B OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B"},H:{"8":"hC"},I:{"8":"pB I H iC jC kC lC 3B mC nC"},J:{"8":"D A"},K:{"8":"A B C c mB 2B nB"},L:{"8":"H"},M:{"8":"b"},N:{"2":"A B"},O:{"8":"oC"},P:{"8":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"8":"wB"},R:{"8":"1C"},S:{"8":"2C"}},B:7,C:"XHTML+SMIL animation"}; 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 750144ffe2b04e..2112ece221cb6d 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":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a d e f g h i j k l m n o b H sB tB","132":"B","260":"5B oB I p J D 6B 7B","516":"E F A"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB pB UB qB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R S T U V W X Y Z a d e f g h i j k l m n o b H sB tB 8B","132":"0 1 I p J D E F A B C K L G M N O q r s t u v w x y z"},E:{"1":"E F A B C K L G CC DC vB lB mB wB EC FC xB yB zB 0B nB 1B GC","132":"I p J D 9B uB AC BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 O q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB c XB YB ZB aB bB cB dB eB fB gB hB iB jB kB P Q R rB S T U V W X Y Z a","16":"F HC","132":"B C G M N IC JC KC lB 2B LC mB"},G:{"1":"E QC RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC xB yB zB 0B nB 1B","132":"uB MC 3B NC OC PC"},H:{"132":"gC"},I:{"1":"H lC mC","132":"oB I hC iC jC kC 3B"},J:{"132":"D A"},K:{"1":"c","16":"A","132":"B C lB 2B mB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"nC"},P:{"1":"I oC pC qC rC sC vB tC uC vC wC xC nB yC zC"},Q:{"1":"wB"},R:{"1":"0C"},S:{"1":"1C"}},B:4,C:"DOM Parsing and Serialization"}; +module.exports={A:{A:{"1":"A B","260":"J D E F 4B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a d e f g h i j k l m n o p b H tB","132":"B","260":"5B pB I q J D 6B 7B","516":"E F A"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB qB VB rB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R S T U V W X Y Z a d e f g h i j k l m n o p b H tB 8B 9B","132":"0 1 2 I q J D E F A B C K L G M N O r s t u v w x y z"},E:{"1":"E F A B C K L G DC EC vB mB nB wB FC GC xB yB zB 0B oB 1B HC","132":"I q J D AC uB BC CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 O r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB c YB ZB aB bB cB dB eB fB gB hB iB jB kB lB P Q R sB S T U V W X Y Z a","16":"F IC","132":"B C G M N JC KC LC mB 2B MC nB"},G:{"1":"E RC SC TC UC VC WC XC YC ZC aC bC cC dC eC fC gC xB yB zB 0B oB 1B","132":"uB NC 3B OC PC QC"},H:{"132":"hC"},I:{"1":"H mC nC","132":"pB I iC jC kC lC 3B"},J:{"132":"D A"},K:{"1":"c","16":"A","132":"B C mB 2B nB"},L:{"1":"H"},M:{"1":"b"},N:{"1":"A B"},O:{"1":"oC"},P:{"1":"I pC qC rC sC tC vB uC vC wC xC yC oB zC 0C"},Q:{"1":"wB"},R:{"1":"1C"},S:{"1":"2C"}},B:4,C:"DOM Parsing and Serialization"}; 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 10ba90c8894dc9..c13f07616cf164 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,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00442,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00442,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01326,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00442,"87":0,"88":0,"89":0,"90":0,"91":0.00884,"92":0,"93":0.00442,"94":0,"95":0.03095,"96":0,"97":0.00442,"98":0,"99":0,"100":0,"101":0,"102":0.03537,"103":0.95494,"104":0.14589,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00442,"39":0,"40":0,"41":0,"42":0,"43":0.00442,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.09726,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00442,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.02211,"74":0,"75":0,"76":0,"77":0.00884,"78":0.00442,"79":0.02653,"80":0,"81":0.00442,"83":0.00442,"84":0.00442,"85":0,"86":0.00442,"87":0.00884,"88":0,"89":0.01326,"90":0.00442,"91":0,"92":0.03537,"93":0,"94":0.00442,"95":0.00884,"96":0.03095,"97":0.04421,"98":0.00442,"99":0.04863,"100":0.03979,"101":0.03537,"102":0.06632,"103":2.27239,"104":7.06918,"105":0.02211,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00442,"65":0,"66":0,"67":0,"68":0.00442,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00884,"87":0,"88":0.00442,"89":0.30947,"90":0.06189,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00442,"88":0,"89":0,"90":0,"91":0,"92":0.00442,"93":0,"94":0,"95":0.00442,"96":0,"97":0.00884,"98":0,"99":0,"100":0.00442,"101":0.00442,"102":0.01768,"103":0.23873,"104":1.04336,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00442,"14":0.07074,"15":0.03095,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.03979,"12.1":0.01326,"13.1":0.09726,"14.1":0.38021,"15.1":0.14589,"15.2-15.3":0.15474,"15.4":0.45536,"15.5":1.54293,"15.6":2.75428,"16.0":0.084},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.0189,"9.0-9.2":0,"9.3":0.08975,"10.0-10.2":0,"10.3":0.14644,"11.0-11.2":0.00945,"11.3-11.4":0.00472,"12.0-12.1":0,"12.2-12.5":0.37791,"13.0-13.1":0,"13.2":0.01417,"13.3":0.01417,"13.4-13.7":0.17951,"14.0-14.4":0.26454,"14.5-14.8":0.94951,"15.0-15.1":0.76055,"15.2-15.3":1.67227,"15.4":2.06907,"15.5":15.98572,"15.6":24.2195,"16.0":0.44405},P:{"4":0.02062,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0.01031,"9.2":0,"10.1":0,"11.1-11.2":0.01031,"12.0":0,"13.0":0.01031,"14.0":0.01031,"15.0":0,"16.0":0.02062,"17.0":0.2784,"18.0":0.79396},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.12632},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01768,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":30.86925},S:{"2.5":0},R:{_:"0"},M:{"0":0.63043},Q:{"10.4":0},O:{"0":0},H:{"0":0.07395}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00919,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00459,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02297,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00459,"91":0.00459,"92":0,"93":0.00459,"94":0,"95":0.00919,"96":0,"97":0.03675,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.03216,"104":0.75342,"105":0.26645,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00919,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00459,"48":0,"49":0.10566,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00459,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00459,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00919,"78":0,"79":0.03675,"80":0,"81":0,"83":0,"84":0.00459,"85":0.09188,"86":0.00459,"87":0.04594,"88":0.01378,"89":0.01378,"90":0.00459,"91":0.00459,"92":0.00459,"93":0.00919,"94":0.00459,"95":0.00459,"96":0.05053,"97":0.04594,"98":0,"99":0.04135,"100":0.03216,"101":0.00919,"102":0.03675,"103":0.19295,"104":1.94786,"105":8.44377,"106":0.23429,"107":0.00919,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.05053,"90":0.33536,"91":0.01378,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00459,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00459,"103":0.00919,"104":0.28023,"105":1.16228},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00459,"14":0.04135,"15":0.01378,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00459,"11.1":0.00919,"12.1":0.00919,"13.1":0.0781,"14.1":0.20673,"15.1":0.10107,"15.2-15.3":0.16538,"15.4":0.45021,"15.5":0.80854,"15.6":3.04123,"16.0":0.66154,"16.1":0.10566},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.01991,"9.0-9.2":0,"9.3":0.06969,"10.0-10.2":0.01493,"10.3":0.07467,"11.0-11.2":0.00498,"11.3-11.4":0.02987,"12.0-12.1":0.00996,"12.2-12.5":0.2738,"13.0-13.1":0.00996,"13.2":0.00996,"13.3":0.04978,"13.4-13.7":0.21406,"14.0-14.4":0.17922,"14.5-14.8":0.86123,"15.0-15.1":0.60734,"15.2-15.3":1.3242,"15.4":1.02053,"15.5":5.01305,"15.6":29.72981,"16.0":9.25447,"16.1":0.1145},P:{"4":0.05228,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0.02091,"13.0":0.01046,"14.0":0,"15.0":0,"16.0":0.01046,"17.0":0.04183,"18.0":1.29665},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00396,"4.4":0,"4.4.3-4.4.4":0.09495},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05513,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.00541},H:{"0":0.12795},L:{"0":27.71041},S:{"2.5":0},R:{_:"0"},M:{"0":0.35139},Q:{"13.1":0}}; 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 aa5a493208ba47..ad636ffd3f9cf9 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00346,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00346,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.04156,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00346,"79":0.00346,"80":0.00693,"81":0.00346,"82":0,"83":0.00346,"84":0.00346,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00693,"92":0,"93":0.00346,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00346,"100":0.00346,"101":0.00346,"102":0.01039,"103":0.28397,"104":0.04502,"105":0.00346,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.16276,"36":0,"37":0,"38":0.00346,"39":0,"40":0,"41":0,"42":0,"43":0.01385,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00693,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00346,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00346,"66":0.00346,"67":0,"68":0.00346,"69":0.00346,"70":0,"71":0.00346,"72":0,"73":0.00346,"74":0.00346,"75":0.01039,"76":0.02078,"77":0.00346,"78":0.00346,"79":0.02424,"80":0.00346,"81":0.01039,"83":0.01385,"84":0.02078,"85":0.0277,"86":0.02424,"87":0.03117,"88":0.00346,"89":0.00693,"90":0.00693,"91":0.01385,"92":0.02424,"93":0.03117,"94":0.01039,"95":0.00693,"96":0.01732,"97":0.01385,"98":0.01039,"99":0.01732,"100":0.02424,"101":0.0277,"102":0.0935,"103":2.02932,"104":5.67586,"105":0.02424,"106":0.00346,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00346,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00346,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00346,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01039,"64":0.01385,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00346,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00346,"85":0.00346,"86":0.00346,"87":0.00346,"88":0.00346,"89":0.22856,"90":0.02078,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00346,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00346,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00346,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00346,"101":0.01385,"102":0.00693,"103":0.24241,"104":0.73762,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00693,"14":0.03809,"15":0.01385,_:"0","3.1":0,"3.2":0,"5.1":0.00346,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00346,"11.1":0.00346,"12.1":0.01039,"13.1":0.04156,"14.1":0.12467,"15.1":0.02424,"15.2-15.3":0.02078,"15.4":0.08311,"15.5":0.23895,"15.6":0.33245,"16.0":0.00693},G:{"8":0.0022,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0088,"6.0-6.1":0.0022,"7.0-7.1":0.0198,"8.1-8.4":0,"9.0-9.2":0.0066,"9.3":0.20017,"10.0-10.2":0.0044,"10.3":0.17158,"11.0-11.2":0.0242,"11.3-11.4":0.0198,"12.0-12.1":0.0242,"12.2-12.5":0.61151,"13.0-13.1":0.0242,"13.2":0.011,"13.3":0.04399,"13.4-13.7":0.16058,"14.0-14.4":0.47953,"14.5-14.8":1.21643,"15.0-15.1":0.41354,"15.2-15.3":0.60051,"15.4":0.99206,"15.5":4.84371,"15.6":11.86291,"16.0":0.24417},P:{"4":0.13295,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05114,"8.2":0,"9.2":0.01023,"10.1":0,"11.1-11.2":0.02045,"12.0":0.01023,"13.0":0.03068,"14.0":0.04091,"15.0":0.02045,"16.0":0.08182,"17.0":0.84886,"18.0":1.28863},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01885,"4.4":0,"4.4.3-4.4.4":0.13193},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04848,"5.5":0},J:{"7":0,"10":0.01307},N:{"10":0,"11":0},L:{"0":58.27187},S:{"2.5":0},R:{_:"0"},M:{"0":0.10459},Q:{"10.4":0},O:{"0":2.70632},H:{"0":0.53224}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00388,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.03491,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00388,"79":0,"80":0.00388,"81":0.00388,"82":0,"83":0.00388,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00388,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00388,"102":0.00388,"103":0.03879,"104":0.27153,"105":0.08146,"106":0.00388,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.17456,"36":0,"37":0,"38":0.00388,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00776,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00388,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00388,"66":0,"67":0,"68":0,"69":0.00388,"70":0,"71":0,"72":0,"73":0.00388,"74":0.00388,"75":0.01164,"76":0.0194,"77":0.00388,"78":0.00388,"79":0.02327,"80":0.00776,"81":0.01164,"83":0.01552,"84":0.0194,"85":0.02715,"86":0.03103,"87":0.0194,"88":0.00388,"89":0.00776,"90":0.00776,"91":0.0194,"92":0.02715,"93":0.03491,"94":0.01164,"95":0.00776,"96":0.01164,"97":0.01164,"98":0.01164,"99":0.01552,"100":0.06594,"101":0.02327,"102":0.06594,"103":0.24826,"104":2.13733,"105":7.57181,"106":0.13189,"107":0.00388,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00776,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00388,"37":0.00388,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00388,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.01552,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00776,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.03103,"90":0.26377,"91":0.01164,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00388,"16":0,"17":0,"18":0.00388,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00388,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00388,"102":0.00388,"103":0.01552,"104":0.19395,"105":1.0163},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01552,"14":0.04655,"15":0.01552,_:"0","3.1":0,"3.2":0,"5.1":0.00388,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01552,"12.1":0.01164,"13.1":0.05043,"14.1":0.15904,"15.1":0.02715,"15.2-15.3":0.03103,"15.4":0.0737,"15.5":0.16292,"15.6":0.65167,"16.0":0.07758,"16.1":0.00776},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00435,"6.0-6.1":0,"7.0-7.1":0.01957,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.18918,"10.0-10.2":0.00435,"10.3":0.13916,"11.0-11.2":0.02174,"11.3-11.4":0.01305,"12.0-12.1":0.02392,"12.2-12.5":0.56753,"13.0-13.1":0.01087,"13.2":0.00652,"13.3":0.03262,"13.4-13.7":0.12394,"14.0-14.4":0.38922,"14.5-14.8":0.96545,"15.0-15.1":0.31964,"15.2-15.3":0.374,"15.4":0.58057,"15.5":1.58299,"15.6":12.16162,"16.0":3.64,"16.1":0.05654},P:{"4":0.13353,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04109,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02054,"12.0":0.01027,"13.0":0.03082,"14.0":0.02054,"15.0":0.02054,"16.0":0.06163,"17.0":0.13353,"18.0":1.92081},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01022,"4.4":0,"4.4.3-4.4.4":0.07918},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04267,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00612},O:{"0":2.72997},H:{"0":0.55632},L:{"0":55.76531},S:{"2.5":0},R:{_:"0"},M:{"0":0.14078},Q:{"13.1":0}}; 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 40dd46ab8dbab1..912718346bc33b 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.00655,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00218,"30":0,"31":0,"32":0,"33":0.00218,"34":0,"35":0,"36":0,"37":0,"38":0.00218,"39":0,"40":0,"41":0.00218,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00218,"48":0.00437,"49":0,"50":0.00873,"51":0,"52":0.00218,"53":0,"54":0,"55":0,"56":0.00218,"57":0,"58":0,"59":0.00218,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00218,"69":0,"70":0,"71":0,"72":0.00218,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00218,"85":0,"86":0,"87":0,"88":0.00218,"89":0,"90":0,"91":0.00655,"92":0,"93":0,"94":0.00437,"95":0,"96":0,"97":0.00218,"98":0.00437,"99":0.00655,"100":0.00218,"101":0.00437,"102":0.0131,"103":0.17682,"104":0.03711,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.00218,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00218,"35":0,"36":0,"37":0.00218,"38":0,"39":0.00218,"40":0.00218,"41":0.00218,"42":0,"43":0.00218,"44":0,"45":0.00218,"46":0,"47":0.00218,"48":0,"49":0.00218,"50":0,"51":0,"52":0.00218,"53":0,"54":0,"55":0.00218,"56":0,"57":0.00218,"58":0.00218,"59":0.00218,"60":0,"61":0.00218,"62":0.00655,"63":0.00437,"64":0.00218,"65":0.00437,"66":0,"67":0.00218,"68":0.00437,"69":0.00218,"70":0.00218,"71":0.00218,"72":0.00218,"73":0.00218,"74":0.00218,"75":0.00218,"76":0.00218,"77":0.00218,"78":0.00437,"79":0.00437,"80":0.00655,"81":0.01528,"83":0.00655,"84":0.00873,"85":0.00218,"86":0.01528,"87":0.01092,"88":0.00437,"89":0.00437,"90":0.00218,"91":0.00437,"92":0.00655,"93":0.00218,"94":0.00437,"95":0.00437,"96":0.00873,"97":0.00655,"98":0.00873,"99":0.0131,"100":0.01092,"101":0.0131,"102":0.07422,"103":0.59378,"104":1.60669,"105":0.00655,"106":0.00437,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00218,"60":0.00218,"62":0,"63":0.04803,"64":0.0262,"65":0,"66":0,"67":0.00218,"68":0,"69":0.00873,"70":0.00218,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00437,"80":0,"81":0.00218,"82":0,"83":0,"84":0,"85":0.00218,"86":0.00218,"87":0,"88":0.00218,"89":0.08514,"90":0.01746,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00437},B:{"12":0.00437,"13":0.00218,"14":0.00437,"15":0.00437,"16":0.01092,"17":0.00655,"18":0.03275,"79":0,"80":0,"81":0.00218,"83":0,"84":0.00655,"85":0,"86":0,"87":0,"88":0,"89":0.00655,"90":0.00873,"91":0,"92":0.01092,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00218,"99":0,"100":0.00218,"101":0.0131,"102":0.00437,"103":0.13535,"104":0.18992,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00437,"14":0.00873,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00218,"14.1":0.00437,"15.1":0.03056,"15.2-15.3":0.01528,"15.4":0.04803,"15.5":0.12661,"15.6":0.31872,"16.0":0.0131},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.00964,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01928,"10.0-10.2":0.00579,"10.3":0.05592,"11.0-11.2":0.04435,"11.3-11.4":0.05592,"12.0-12.1":0.04242,"12.2-12.5":0.94298,"13.0-13.1":0.02893,"13.2":0.04242,"13.3":0.16584,"13.4-13.7":0.1562,"14.0-14.4":0.94877,"14.5-14.8":0.60166,"15.0-15.1":0.62865,"15.2-15.3":1.20331,"15.4":1.34987,"15.5":4.7959,"15.6":7.87939,"16.0":0.2989},P:{"4":1.08464,"5.0-5.4":0.25342,"6.2-6.4":0.12164,"7.2-7.4":0.7704,"8.2":0.03041,"9.2":0.35479,"10.1":0.02027,"11.1-11.2":0.1926,"12.0":0.05068,"13.0":0.13178,"14.0":0.22301,"15.0":0.12164,"16.0":0.45616,"17.0":1.28737,"18.0":0.53725},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00357,"4.2-4.3":0.03752,"4.4":0,"4.4.3-4.4.4":0.16439},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00655,"10":0,"11":0.11788,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":65.86147},S:{"2.5":0},R:{_:"0"},M:{"0":0.10944},Q:{"10.4":0},O:{"0":1.50868},H:{"0":1.1915}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.00204,"21":0,"22":0,"23":0,"24":0,"25":0.00204,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00612,"39":0,"40":0,"41":0,"42":0,"43":0.00204,"44":0,"45":0,"46":0,"47":0,"48":0.00204,"49":0,"50":0.00204,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00204,"57":0.00204,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00612,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00204,"85":0,"86":0,"87":0,"88":0.00408,"89":0,"90":0,"91":0.00204,"92":0,"93":0,"94":0.00204,"95":0.00204,"96":0,"97":0,"98":0.00204,"99":0.00408,"100":0,"101":0.00408,"102":0.00612,"103":0.0102,"104":0.153,"105":0.04692,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00204,"29":0,"30":0,"31":0.00204,"32":0,"33":0,"34":0.00612,"35":0,"36":0.00204,"37":0.00204,"38":0.00204,"39":0.00204,"40":0.00204,"41":0,"42":0.00204,"43":0.00204,"44":0.00204,"45":0.00204,"46":0,"47":0,"48":0.00204,"49":0.00408,"50":0,"51":0,"52":0.00204,"53":0,"54":0.00204,"55":0.00204,"56":0.00204,"57":0.00204,"58":0,"59":0.00204,"60":0.00204,"61":0,"62":0.00408,"63":0.00408,"64":0.00204,"65":0.00204,"66":0.00204,"67":0.00204,"68":0.00204,"69":0.00204,"70":0.0102,"71":0.00408,"72":0.00204,"73":0.00204,"74":0.0102,"75":0.00204,"76":0.00204,"77":0.00204,"78":0.00408,"79":0.00612,"80":0.00612,"81":0.0204,"83":0.00408,"84":0.00204,"85":0.00204,"86":0.0102,"87":0.00816,"88":0.00408,"89":0.00816,"90":0.00204,"91":0.00408,"92":0.00612,"93":0.00204,"94":0.00204,"95":0.00612,"96":0.0102,"97":0.00408,"98":0.00816,"99":0.0102,"100":0.00612,"101":0.00612,"102":0.03876,"103":0.06732,"104":0.49572,"105":1.45452,"106":0.02244,"107":0.00408,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00408,"60":0.00204,"62":0,"63":0.01224,"64":0.03672,"65":0.00408,"66":0,"67":0,"68":0,"69":0.00408,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00816,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00408,"86":0.00204,"87":0,"88":0,"89":0.00204,"90":0.05304,"91":0.0102,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00408,"13":0.00204,"14":0.00408,"15":0.00408,"16":0.01224,"17":0.00408,"18":0.03264,"79":0,"80":0,"81":0.00204,"83":0,"84":0.00408,"85":0,"86":0.00204,"87":0,"88":0,"89":0.00408,"90":0.00612,"91":0,"92":0.01632,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00204,"99":0,"100":0.00204,"101":0.00204,"102":0.00204,"103":0.01428,"104":0.05304,"105":0.15912},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00204,"14":0.00204,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00204,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00204,"13.1":0,"14.1":0.00408,"15.1":0.02448,"15.2-15.3":0.01632,"15.4":0.02652,"15.5":0.06732,"15.6":0.28152,"16.0":0.08364,"16.1":0.0102},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.02842,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00947,"10.0-10.2":0,"10.3":0.0739,"11.0-11.2":0.04737,"11.3-11.4":0.04548,"12.0-12.1":0.04927,"12.2-12.5":0.97782,"13.0-13.1":0.03032,"13.2":0.03221,"13.3":0.09664,"13.4-13.7":0.13833,"14.0-14.4":0.6822,"14.5-14.8":0.50596,"15.0-15.1":0.55144,"15.2-15.3":1.07067,"15.4":1.04793,"15.5":2.10724,"15.6":8.35694,"16.0":2.63215,"16.1":0.04358},P:{"4":0.92938,"5.0-5.4":0.20204,"6.2-6.4":0.14143,"7.2-7.4":0.5253,"8.2":0.08082,"9.2":0.29296,"10.1":0.0202,"11.1-11.2":0.21214,"12.0":0.05051,"13.0":0.16163,"14.0":0.18183,"15.0":0.18183,"16.0":0.42428,"17.0":0.60611,"18.0":1.28294},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00341,"4.2-4.3":0.0432,"4.4":0,"4.4.3-4.4.4":0.2001},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00816,"10":0,"11":0.09384,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":1.20196},H:{"0":0.94954},L:{"0":68.30188},S:{"2.5":0},R:{_:"0"},M:{"0":0.1194},Q:{"13.1":0}}; 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 e862ad5809bbd3..24e14104bd7041 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00375,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00375,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00375,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00375,"97":0.00375,"98":0,"99":0,"100":0,"101":0.00375,"102":0.03001,"103":0.26632,"104":0.05627,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.0075,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00375,"66":0,"67":0.00375,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.0075,"76":0.01876,"77":0.01876,"78":0,"79":0.04876,"80":0,"81":0.01125,"83":0,"84":0,"85":0.0075,"86":0.015,"87":0.00375,"88":0.00375,"89":0.00375,"90":0,"91":0.00375,"92":0.0075,"93":0.05627,"94":0.00375,"95":0.00375,"96":0.0075,"97":0.00375,"98":0.01125,"99":0.0075,"100":0.01125,"101":0.0075,"102":0.06377,"103":2.43815,"104":5.03759,"105":0.015,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00375,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.0075,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00375,"89":0.69769,"90":0.07877,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00375,"14":0,"15":0,"16":0,"17":0,"18":0.0075,"79":0,"80":0,"81":0,"83":0,"84":0.00375,"85":0.00375,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00375,"92":0,"93":0.09378,"94":0,"95":0,"96":0.0075,"97":0,"98":0.00375,"99":0,"100":0,"101":0.01125,"102":0.00375,"103":0.51764,"104":1.5079,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00375,"14":0.04501,"15":0.00375,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.03376,"10.1":0.03751,"11.1":0.00375,"12.1":0.00375,"13.1":0.05251,"14.1":0.10503,"15.1":0.015,"15.2-15.3":0.0075,"15.4":0.04876,"15.5":0.14629,"15.6":0.30758,"16.0":0.015},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00595,"6.0-6.1":0,"7.0-7.1":0.00397,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.25201,"10.0-10.2":0.00198,"10.3":0.07342,"11.0-11.2":0.01587,"11.3-11.4":0.0258,"12.0-12.1":0.01587,"12.2-12.5":0.47227,"13.0-13.1":0.00397,"13.2":0.00397,"13.3":0.0377,"13.4-13.7":0.14684,"14.0-14.4":0.4306,"14.5-14.8":0.86715,"15.0-15.1":0.32741,"15.2-15.3":0.37305,"15.4":0.54569,"15.5":5.05409,"15.6":10.89992,"16.0":0.28177},P:{"4":0.17043,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.31956,"8.2":0,"9.2":0.01065,"10.1":0,"11.1-11.2":0.07456,"12.0":0.01065,"13.0":0.05326,"14.0":0.05326,"15.0":0.06391,"16.0":0.25565,"17.0":1.99192,"18.0":2.33279},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0908,"4.4":0,"4.4.3-4.4.4":1.22579},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01125,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":58.98999},S:{"2.5":0},R:{_:"0"},M:{"0":0.20622},Q:{"10.4":0},O:{"0":0.04374},H:{"0":0.07099}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00375,"87":0,"88":0,"89":0,"90":0,"91":0.00375,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00375,"103":0.01875,"104":0.33375,"105":0.09,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00375,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00375,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00375,"65":0,"66":0,"67":0,"68":0.00375,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00375,"76":0.015,"77":0.0075,"78":0,"79":0.015,"80":0,"81":0.00375,"83":0,"84":0,"85":0.0075,"86":0.015,"87":0.00375,"88":0.00375,"89":0.00375,"90":0.0075,"91":0,"92":0,"93":0.07875,"94":0.00375,"95":0,"96":0.0075,"97":0.0075,"98":0.00375,"99":0.00375,"100":0.0075,"101":0.0075,"102":0.0225,"103":0.22125,"104":1.995,"105":5.3925,"106":0.08625,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.0075,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.015,"90":0.26625,"91":0.00375,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00375,"16":0,"17":0,"18":0.01125,"79":0,"80":0,"81":0,"83":0,"84":0.0075,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00375,"93":0.0375,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00375,"100":0,"101":0.00375,"102":0.00375,"103":0.045,"104":0.3,"105":2.0925},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.015,"13":0,"14":0.03,"15":0.0075,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01875,"10.1":0.04875,"11.1":0,"12.1":0.0075,"13.1":0.04125,"14.1":0.075,"15.1":0.045,"15.2-15.3":0.01125,"15.4":0.04875,"15.5":0.09,"15.6":0.3825,"16.0":0.05625,"16.1":0.03},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01807,"6.0-6.1":0,"7.0-7.1":0.01606,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.18072,"10.0-10.2":0,"10.3":0.08433,"11.0-11.2":0.00402,"11.3-11.4":0.00602,"12.0-12.1":0,"12.2-12.5":0.45781,"13.0-13.1":0.00803,"13.2":0,"13.3":0.01606,"13.4-13.7":0.07028,"14.0-14.4":0.32328,"14.5-14.8":0.73291,"15.0-15.1":0.29919,"15.2-15.3":0.28111,"15.4":0.4297,"15.5":1.2871,"15.6":12.15016,"16.0":3.22278,"16.1":0.0261},P:{"4":0.17129,"5.0-5.4":0.02141,"6.2-6.4":0,"7.2-7.4":0.25694,"8.2":0,"9.2":0.02141,"10.1":0,"11.1-11.2":0.09635,"12.0":0.04282,"13.0":0.10706,"14.0":0.07494,"15.0":0.05353,"16.0":0.19271,"17.0":0.56741,"18.0":4.10036},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":1.345},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01875,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.05625},H:{"0":0.10651},L:{"0":58.59375},S:{"2.5":0},R:{_:"0"},M:{"0":0.09375},Q:{"13.1":0}}; 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 d2c262ca51f35c..6536a7e102b82c 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01304,"89":0,"90":0,"91":0.00435,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01304,"103":0.28256,"104":0.02608,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00435,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00435,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00435,"57":0.00435,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00435,"68":0,"69":0.02608,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00869,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00435,"83":0,"84":0,"85":0.03478,"86":0,"87":0.00435,"88":0.00435,"89":0,"90":0,"91":0.00869,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.01304,"99":0,"100":0.12172,"101":0.00435,"102":0.05651,"103":1.98223,"104":4.79909,"105":0.03043,"106":0.00435,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00435,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":3.8384,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00869,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00869,"97":0.00435,"98":0,"99":0,"100":0,"101":0,"102":0.01304,"103":0.70421,"104":2.23001,"105":0},E:{"4":0.00435,"5":0,"6":0,"7":0,"8":0,"9":0.00435,"10":0,"11":0,"12":0,"13":0.05216,"14":0.31733,"15":0.01304,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00435,"11.1":0,"12.1":0.00435,"13.1":0.51729,"14.1":0.06086,"15.1":0.06955,"15.2-15.3":0.0739,"15.4":0.09129,"15.5":0.39123,"15.6":1.16934,"16.0":0.02608},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.05248,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":1.0002,"13.0-13.1":0.00617,"13.2":0,"13.3":0,"13.4-13.7":0.01235,"14.0-14.4":0.13892,"14.5-14.8":0.89833,"15.0-15.1":0.66371,"15.2-15.3":1.39534,"15.4":0.85202,"15.5":5.70483,"15.6":19.89281,"16.0":0.24696},P:{"4":0.82618,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.6673,"8.2":0,"9.2":0.01059,"10.1":0,"11.1-11.2":0.04237,"12.0":0.25421,"13.0":0.05296,"14.0":0.14829,"15.0":0.01059,"16.0":0.48723,"17.0":1.37697,"18.0":2.24551},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00163,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.34179},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01304,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":42.41182},S:{"2.5":0},R:{_:"0"},M:{"0":0.09045},Q:{"10.4":0},O:{"0":0.0848},H:{"0":0.02676}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00447,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00447,"103":0.00894,"104":0.21913,"105":0.06261,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00447,"70":0.00447,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.0313,"77":0,"78":0,"79":0.00447,"80":0,"81":0.00447,"83":0.02236,"84":0,"85":0,"86":0.00447,"87":0,"88":0.00447,"89":0,"90":0,"91":0.00447,"92":0.00447,"93":0,"94":0,"95":0.00447,"96":0,"97":0.00447,"98":0.00894,"99":0.00447,"100":0.18335,"101":0.02236,"102":0.00894,"103":0.28174,"104":1.40868,"105":7.20886,"106":0.20571,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.04472,"90":2.25389,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00447,"79":0,"80":0,"81":0,"83":0,"84":0.06708,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00447,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00447,"100":0,"101":0.00447,"102":0.00447,"103":0.00894,"104":0.51875,"105":3.51946},E:{"4":0.00447,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.06708,"15":0.5903,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.04472,"12.1":0.03578,"13.1":0.02683,"14.1":0.1118,"15.1":0.04472,"15.2-15.3":0.07155,"15.4":0.01342,"15.5":0.16546,"15.6":0.97937,"16.0":0.15652,"16.1":0},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.02582,"11.0-11.2":0,"11.3-11.4":0.04906,"12.0-12.1":0.01549,"12.2-12.5":0.04131,"13.0-13.1":0,"13.2":0,"13.3":0.00775,"13.4-13.7":0.04131,"14.0-14.4":0.04906,"14.5-14.8":1.59558,"15.0-15.1":0.23237,"15.2-15.3":1.6214,"15.4":0.44408,"15.5":1.451,"15.6":14.54096,"16.0":5.49417,"16.1":0.02582},P:{"4":0.10331,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.1653,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02066,"12.0":0.14464,"13.0":0.06199,"14.0":0.02066,"15.0":0.01033,"16.0":0.18597,"17.0":0.8885,"18.0":3.28539},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.35329},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00447,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.02617},L:{"0":48.21318},S:{"2.5":0},R:{_:"0"},M:{"0":0.00553},Q:{"13.1":0}}; 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 d2768cf433c6f4..135a776328163c 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00276,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00138,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00138,"100":0,"101":0,"102":0.00415,"103":0.07463,"104":0.01382,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00138,"39":0,"40":0,"41":0.00138,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00276,"50":0,"51":0,"52":0,"53":0.00138,"54":0,"55":0.00138,"56":0.00138,"57":0,"58":0,"59":0.00138,"60":0,"61":0,"62":0.00138,"63":0,"64":0,"65":0.00138,"66":0.00138,"67":0,"68":0.00276,"69":0.00138,"70":0.00138,"71":0.00138,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00967,"80":0.00415,"81":0.00276,"83":0.00138,"84":0.00276,"85":0.00276,"86":0.01106,"87":0.00967,"88":0.00138,"89":0.00276,"90":0.00691,"91":0.00276,"92":0.00138,"93":0.00415,"94":0.00138,"95":0.00553,"96":0.00276,"97":0.00415,"98":0.00138,"99":0.00138,"100":0.00415,"101":0.00553,"102":0.01244,"103":0.35517,"104":0.88172,"105":0.00138,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00138,"64":0.00138,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00138,"72":0.00138,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.02902,"90":0.00415,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00138,"103":0.02764,"104":0.07186,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00138,"14":0.00276,"15":0.00138,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00276,"13.1":0.00415,"14.1":0.00553,"15.1":0.00276,"15.2-15.3":0.00276,"15.4":0.01382,"15.5":0.05113,"15.6":0.08983,"16.0":0.00276},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.03178,"7.0-7.1":0.16947,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03178,"10.0-10.2":0,"10.3":0.12181,"11.0-11.2":0.03178,"11.3-11.4":0.05826,"12.0-12.1":0.02648,"12.2-12.5":1.37697,"13.0-13.1":0.05296,"13.2":0.03707,"13.3":0.16947,"13.4-13.7":0.56138,"14.0-14.4":1.7424,"14.5-14.8":5.6085,"15.0-15.1":0.82089,"15.2-15.3":1.18102,"15.4":2.2667,"15.5":11.24879,"15.6":26.75029,"16.0":0.662},P:{"4":0.20528,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.08211,"8.2":0,"9.2":0.01026,"10.1":0,"11.1-11.2":0.06158,"12.0":0.03079,"13.0":0.12317,"14.0":0.11291,"15.0":0.08211,"16.0":0.12317,"17.0":1.088,"18.0":1.73464},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.04516,"4.2-4.3":0.00273,"4.4":0,"4.4.3-4.4.4":0.02219},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00415,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":40.47165},S:{"2.5":0},R:{_:"0"},M:{"0":0.18098},Q:{"10.4":0},O:{"0":0.05171},H:{"0":0.12238}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00117,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00117,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00117,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00117,"103":0.00234,"104":0.04672,"105":0.01518,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00117,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00234,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00117,"56":0.00117,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00117,"67":0,"68":0.00234,"69":0,"70":0,"71":0.00117,"72":0,"73":0,"74":0.00117,"75":0,"76":0,"77":0,"78":0,"79":0.00584,"80":0,"81":0.00234,"83":0.00117,"84":0.00117,"85":0.00234,"86":0.00117,"87":0.00117,"88":0.00117,"89":0.00117,"90":0.00234,"91":0.00117,"92":0.00234,"93":0.00117,"94":0.00117,"95":0.0035,"96":0.00234,"97":0.00234,"98":0.00234,"99":0.00117,"100":0.00234,"101":0.00234,"102":0.00467,"103":0.01635,"104":0.20557,"105":0.70314,"106":0.00818,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00117,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00117,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00117,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00234,"90":0.02102,"91":0.00117,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00117,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00117,"104":0.01168,"105":0.06074},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00117,"14":0.00234,"15":0.00117,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00117,"13.1":0.0035,"14.1":0.0035,"15.1":0.00234,"15.2-15.3":0.00234,"15.4":0.01051,"15.5":0.01635,"15.6":0.06774,"16.0":0.01168,"16.1":0.00117},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.03193,"7.0-7.1":0.08515,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03193,"10.0-10.2":0.00532,"10.3":0.10111,"11.0-11.2":0.02661,"11.3-11.4":0.05322,"12.0-12.1":0.04257,"12.2-12.5":1.3996,"13.0-13.1":0.04257,"13.2":0.03193,"13.3":0.15965,"13.4-13.7":0.55878,"14.0-14.4":1.43153,"14.5-14.8":4.96512,"15.0-15.1":0.58538,"15.2-15.3":1.01644,"15.4":1.66036,"15.5":3.85289,"15.6":28.54013,"16.0":7.55145,"16.1":0.11176},P:{"4":0.12241,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0612,"8.2":0,"9.2":0.0102,"10.1":0,"11.1-11.2":0.051,"12.0":0.0204,"13.0":0.09181,"14.0":0.08161,"15.0":0.051,"16.0":0.0612,"17.0":0.15301,"18.0":2.05036},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0114,"4.2-4.3":0.00499,"4.4":0,"4.4.3-4.4.4":0.03347},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00234,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.03533},H:{"0":0.09198},L:{"0":42.83378},S:{"2.5":0},R:{_:"0"},M:{"0":0.16781},Q:{"13.1":0}}; 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 376aeecfd2bac0..89a2fd0124d6fa 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":26.28887,"53":0,"54":0,"55":0,"56":0.00707,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01413,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0212,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00707,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01413,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00707,"100":0.00707,"101":0.01413,"102":0.0212,"103":0.55107,"104":0.11304,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00707,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00707,"48":0.00707,"49":0.16956,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00707,"64":0,"65":0,"66":0,"67":0.00707,"68":0.00707,"69":0,"70":0,"71":0.00707,"72":0,"73":0,"74":0.0212,"75":0.00707,"76":0.02826,"77":0.00707,"78":0.00707,"79":0.01413,"80":0.00707,"81":0.0212,"83":0.00707,"84":0.04946,"85":0.0212,"86":0.04946,"87":0.05652,"88":0.00707,"89":0.0212,"90":0.00707,"91":0.01413,"92":0.04239,"93":0.00707,"94":0.09185,"95":0.01413,"96":0.01413,"97":0.02826,"98":0.04946,"99":0.0212,"100":0.04946,"101":0.04946,"102":0.22608,"103":5.82156,"104":12.20126,"105":0.0212,"106":0.00707,"107":0.00707,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00707,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01413,"64":0.00707,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00707,"85":0.04239,"86":0,"87":0,"88":0,"89":0.34619,"90":0.04239,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00707,"13":0,"14":0.01413,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.0212,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00707,"98":0,"99":0,"100":0.01413,"101":0,"102":0.00707,"103":0.18369,"104":0.52988,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00707,"14":0.02826,"15":0.01413,_:"0","3.1":0,"3.2":0,"5.1":0.04946,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00707,"13.1":0.03533,"14.1":0.07065,"15.1":0.02826,"15.2-15.3":0.02826,"15.4":0.09185,"15.5":0.20489,"15.6":0.3038,"16.0":0.00707},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01233,"6.0-6.1":0,"7.0-7.1":0.02465,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.12464,"10.0-10.2":0.00548,"10.3":0.10272,"11.0-11.2":0.01781,"11.3-11.4":0.02191,"12.0-12.1":0.0137,"12.2-12.5":0.6629,"13.0-13.1":0.01917,"13.2":0.01233,"13.3":0.04246,"13.4-13.7":0.16983,"14.0-14.4":0.58757,"14.5-14.8":1.03407,"15.0-15.1":0.26571,"15.2-15.3":0.51224,"15.4":0.66564,"15.5":3.14879,"15.6":5.99488,"16.0":0.25064},P:{"4":0.04132,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06198,"8.2":0,"9.2":0.01033,"10.1":0,"11.1-11.2":0.03099,"12.0":0.01033,"13.0":0.02066,"14.0":0.03099,"15.0":0.01033,"16.0":0.05165,"17.0":0.49585,"18.0":0.5475},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00263,"4.2-4.3":0.01053,"4.4":0,"4.4.3-4.4.4":0.03684},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00707,"9":0,"10":0,"11":0.11304,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":33.85509},S:{"2.5":0.00294},R:{_:"0"},M:{"0":0.06457},Q:{"10.4":0},O:{"0":0.07631},H:{"0":0.15838}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":29.83067,"53":0,"54":0,"55":0,"56":0.00727,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.02182,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00727,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01455,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00727,"98":0,"99":0.00727,"100":0,"101":0,"102":0.00727,"103":0.0291,"104":0.48008,"105":0.12366,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.01455,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00727,"48":0.00727,"49":0.04364,"50":0,"51":0.00727,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00727,"64":0,"65":0,"66":0.00727,"67":0,"68":0.00727,"69":0.00727,"70":0.00727,"71":0.00727,"72":0,"73":0,"74":0.01455,"75":0.01455,"76":0.02182,"77":0.00727,"78":0.00727,"79":0.01455,"80":0.00727,"81":0.01455,"83":0.00727,"84":0.1673,"85":0.03637,"86":0.02182,"87":0.08729,"88":0.00727,"89":0.00727,"90":0.00727,"91":0.00727,"92":0.03637,"93":0.00727,"94":0,"95":0.01455,"96":0.0291,"97":0.0291,"98":0.05092,"99":0.01455,"100":0.0291,"101":0.03637,"102":0.12366,"103":0.68376,"104":3.6079,"105":13.31142,"106":0.1673,"107":0.00727,"108":0.00727,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.03637,"86":0,"87":0,"88":0,"89":0.02182,"90":0.32006,"91":0.01455,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00727,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.01455,"101":0,"102":0,"103":0.00727,"104":0.13093,"105":0.68376},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.02182,"15":0.01455,_:"0","3.1":0,"3.2":0,"5.1":0.05819,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.05819,"14.1":0.06547,"15.1":0.02182,"15.2-15.3":0.02182,"15.4":0.05092,"15.5":0.12366,"15.6":0.28369,"16.0":0.21822,"16.1":0.01455},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00651,"6.0-6.1":0,"7.0-7.1":0.01041,"8.1-8.4":0.0039,"9.0-9.2":0.0039,"9.3":0.1978,"10.0-10.2":0.0013,"10.3":0.06246,"11.0-11.2":0.00781,"11.3-11.4":0.01562,"12.0-12.1":0.01171,"12.2-12.5":0.63112,"13.0-13.1":0.00911,"13.2":0.00911,"13.3":0.03904,"13.4-13.7":0.17437,"14.0-14.4":0.56996,"14.5-14.8":0.74954,"15.0-15.1":0.17828,"15.2-15.3":0.39819,"15.4":0.38518,"15.5":1.02411,"15.6":6.06921,"16.0":2.15233,"16.1":0.03513},P:{"4":0.02052,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04104,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03078,"12.0":0.01026,"13.0":0.03078,"14.0":0.03078,"15.0":0.01026,"16.0":0.03078,"17.0":0.13338,"18.0":0.96445},I:{"0":0,"3":0,"4":0.00341,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00426,"4.2-4.3":0.01278,"4.4":0,"4.4.3-4.4.4":0.03409},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00773,"9":0.00773,"10":0,"11":0.1082,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.02999},H:{"0":0.11872},L:{"0":32.05081},S:{"2.5":0.00273},R:{_:"0"},M:{"0":0.05452},Q:{"13.1":0}}; 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 3c81a7823579d7..2429bea8f419c7 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00409,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00817,"45":0,"46":0,"47":0.00409,"48":0,"49":0,"50":0,"51":0,"52":0.00409,"53":0,"54":0,"55":0.00409,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00409,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.01226,"85":0,"86":0,"87":0,"88":0.00409,"89":0.00409,"90":0,"91":0.01226,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00409,"100":0.00409,"101":0.00409,"102":0.01226,"103":0.34331,"104":0.07357,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00817,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00409,"36":0,"37":0,"38":0,"39":0,"40":0.02452,"41":0.00409,"42":0.01226,"43":0.01635,"44":0,"45":0,"46":0.06948,"47":0.00409,"48":0,"49":0.00817,"50":0.00409,"51":0,"52":0,"53":0.00817,"54":0,"55":0.00409,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.01635,"64":0.00409,"65":0,"66":0,"67":0,"68":0,"69":0.00409,"70":0.01226,"71":0.00409,"72":0.02861,"73":0,"74":0.02452,"75":0.00409,"76":0,"77":0.00409,"78":0.00409,"79":0.02044,"80":0,"81":0.04087,"83":0.00409,"84":0.05313,"85":0.00409,"86":0.00817,"87":0.11444,"88":0.00817,"89":0.02452,"90":0.00409,"91":0.02452,"92":0.00409,"93":0.00817,"94":0.02452,"95":0.01635,"96":0.01226,"97":0.03678,"98":0.01226,"99":0.01226,"100":0.02861,"101":0.04496,"102":0.06539,"103":1.56123,"104":4.95753,"105":0.02452,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.01226,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00409,"36":0,"37":0,"38":0,"39":0,"40":0.00409,"41":0,"42":0.00409,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00409,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.11035,"62":0,"63":0.11444,"64":0.03678,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00817,"80":0,"81":0,"82":0,"83":0,"84":0.00409,"85":0.01635,"86":0.00409,"87":0.06131,"88":0.00409,"89":0.34331,"90":0.07765,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00409},B:{"12":0.01635,"13":0.00817,"14":0.02452,"15":0.00817,"16":0.00817,"17":0.02044,"18":0.0327,"79":0,"80":0,"81":0,"83":0,"84":0.02861,"85":0.00409,"86":0,"87":0,"88":0,"89":0.00817,"90":0.02861,"91":0,"92":0.00409,"93":0.02044,"94":0,"95":0,"96":0.01226,"97":0.00409,"98":0.00817,"99":0.00409,"100":0.00817,"101":0.01226,"102":0.01635,"103":0.32696,"104":1.02992,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00409,"13":0,"14":0.00409,"15":0.00409,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.02452,"14.1":0.02452,"15.1":0,"15.2-15.3":0.00409,"15.4":0.01226,"15.5":0.02861,"15.6":0.04087,"16.0":0},G:{"8":0.00401,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00134,"5.0-5.1":0.00267,"6.0-6.1":0,"7.0-7.1":0.37126,"8.1-8.4":0.00534,"9.0-9.2":0.00134,"9.3":0.38996,"10.0-10.2":0.01335,"10.3":0.88275,"11.0-11.2":0.11752,"11.3-11.4":0.12821,"12.0-12.1":0.10016,"12.2-12.5":2.97543,"13.0-13.1":0.1469,"13.2":0.04006,"13.3":0.10817,"13.4-13.7":0.23104,"14.0-14.4":0.36592,"14.5-14.8":0.87874,"15.0-15.1":0.33253,"15.2-15.3":0.47409,"15.4":0.4594,"15.5":2.33307,"15.6":2.92201,"16.0":0.0641},P:{"4":1.10074,"5.0-5.4":0.01029,"6.2-6.4":0.01029,"7.2-7.4":0.19546,"8.2":0.07201,"9.2":0.09259,"10.1":0.07201,"11.1-11.2":0.04115,"12.0":0.04115,"13.0":0.07201,"14.0":0.07201,"15.0":0.06172,"16.0":0.18517,"17.0":0.44235,"18.0":0.29833},I:{"0":0,"3":0,"4":0.00101,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0394,"4.2-4.3":0.08201,"4.4":0,"4.4.3-4.4.4":0.25888},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02861,"5.5":0},J:{"7":0,"10":0.01183},N:{"10":0,"11":0},L:{"0":67.45636},S:{"2.5":0.05322},R:{_:"0"},M:{"0":0.13009},Q:{"10.4":0.00591},O:{"0":0.44939},H:{"0":2.2784}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00789,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.02368,"42":0,"43":0,"44":0.00395,"45":0,"46":0,"47":0.00395,"48":0,"49":0,"50":0,"51":0,"52":0.00395,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00395,"65":0,"66":0,"67":0,"68":0.00395,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00395,"80":0,"81":0,"82":0,"83":0.01184,"84":0.00789,"85":0,"86":0,"87":0,"88":0,"89":0.00395,"90":0,"91":0.00395,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00395,"98":0,"99":0.00395,"100":0,"101":0,"102":0.00395,"103":0.01578,"104":0.28411,"105":0.06708,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01973,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.01973,"36":0.01184,"37":0,"38":0.00395,"39":0,"40":0.00789,"41":0,"42":0.01184,"43":0.02762,"44":0,"45":0,"46":0.04341,"47":0.00395,"48":0,"49":0.00789,"50":0.00395,"51":0,"52":0,"53":0.00789,"54":0,"55":0.00395,"56":0,"57":0,"58":0.00789,"59":0.00395,"60":0,"61":0,"62":0,"63":0.01578,"64":0,"65":0,"66":0.00395,"67":0,"68":0,"69":0.00395,"70":0.01184,"71":0,"72":0.01184,"73":0,"74":0.04735,"75":0.00395,"76":0,"77":0.00395,"78":0.00395,"79":0.02762,"80":0,"81":0.04735,"83":0.00395,"84":0.04735,"85":0.00395,"86":0.01578,"87":0.1026,"88":0.01184,"89":0.02762,"90":0.00789,"91":0.01184,"92":0.00395,"93":0.00395,"94":0.00395,"95":0.01184,"96":0.01184,"97":0.03551,"98":0.00789,"99":0.00395,"100":0.01578,"101":0.04341,"102":0.02368,"103":0.15389,"104":1.32191,"105":4.48266,"106":0.09076,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00395,"27":0,"28":0.00395,"29":0.00395,"30":0.00395,"31":0,"32":0.00395,"33":0,"34":0,"35":0.01184,"36":0,"37":0.01973,"38":0,"39":0,"40":0,"41":0,"42":0.00789,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00395,"60":0.06708,"62":0,"63":0.07497,"64":0.07892,"65":0.00395,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00395,"80":0,"81":0,"82":0,"83":0.00395,"84":0.00395,"85":0.01184,"86":0,"87":0.04735,"88":0,"89":0.00789,"90":0.48536,"91":0.01973,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00395},B:{"12":0.01973,"13":0.00789,"14":0.01184,"15":0.01184,"16":0.00395,"17":0.01578,"18":0.0513,"79":0,"80":0,"81":0,"83":0,"84":0.04341,"85":0.00395,"86":0,"87":0,"88":0,"89":0.00395,"90":0.01578,"91":0,"92":0.01578,"93":0.03157,"94":0,"95":0,"96":0.01184,"97":0,"98":0.00789,"99":0,"100":0.00395,"101":0.01184,"102":0.00789,"103":0.06708,"104":0.20914,"105":0.95888},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00395,"14":0.00395,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.02762,"14.1":0.02368,"15.1":0,"15.2-15.3":0.00395,"15.4":0.00789,"15.5":0.00789,"15.6":0.03946,"16.0":0.00789,"16.1":0.00395},G:{"8":0.00256,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0064,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.15993,"8.1-8.4":0.00256,"9.0-9.2":0.0064,"9.3":0.3429,"10.0-10.2":0.00896,"10.3":0.75488,"11.0-11.2":0.0998,"11.3-11.4":0.13306,"12.0-12.1":0.1497,"12.2-12.5":2.88775,"13.0-13.1":0.0499,"13.2":0.0435,"13.3":0.10492,"13.4-13.7":0.28276,"14.0-14.4":0.38384,"14.5-14.8":0.82142,"15.0-15.1":0.39408,"15.2-15.3":0.39152,"15.4":0.52714,"15.5":1.3895,"15.6":3.0093,"16.0":0.6231,"16.1":0.00768},P:{"4":0.87666,"5.0-5.4":0.04077,"6.2-6.4":0.03058,"7.2-7.4":0.13252,"8.2":0.05097,"9.2":0.13252,"10.1":0.04077,"11.1-11.2":0.08155,"12.0":0.01019,"13.0":0.07136,"14.0":0.11213,"15.0":0.03058,"16.0":0.14271,"17.0":0.27523,"18.0":0.55046},I:{"0":0,"3":0,"4":0.00063,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02829,"4.2-4.3":0.07637,"4.4":0,"4.4.3-4.4.4":0.24655},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02368,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.01211},O:{"0":0.49037},H:{"0":2.48749},L:{"0":69.01429},S:{"2.5":0.05449},R:{_:"0"},M:{"0":0.10292},Q:{"13.1":0}}; 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 2961da62c3f311..29fdb7fb8614a1 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02249,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00375,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00375,"67":0,"68":0.00375,"69":0,"70":0,"71":0,"72":0,"73":0.00375,"74":0,"75":0,"76":0,"77":0,"78":0.0075,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.01125,"87":0,"88":0.01125,"89":0.00375,"90":0.01125,"91":0.06748,"92":0,"93":0.00375,"94":0,"95":0.00375,"96":0,"97":0.00375,"98":0.00375,"99":0.01125,"100":0.00375,"101":0.0075,"102":0.015,"103":0.42364,"104":0.09373,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00375,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00375,"35":0,"36":0,"37":0,"38":0.00375,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.06373,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00375,"59":0,"60":0,"61":0,"62":0,"63":0.00375,"64":0,"65":0,"66":0.015,"67":0,"68":0,"69":0.0075,"70":0.00375,"71":0.00375,"72":0.00375,"73":0.00375,"74":0.00375,"75":0.00375,"76":0.00375,"77":0.00375,"78":0.00375,"79":0.015,"80":0.00375,"81":0.01125,"83":0.0075,"84":0.0075,"85":0.0075,"86":0.01125,"87":0.015,"88":0.0075,"89":0.01125,"90":0.0075,"91":0.01125,"92":0.01125,"93":0.0075,"94":0.0075,"95":0.015,"96":0.02624,"97":0.02249,"98":0.01875,"99":0.04124,"100":0.03374,"101":0.04499,"102":0.07498,"103":2.67679,"104":7.4905,"105":0.02624,"106":0.00375,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00375,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00375,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0075,"64":0.0075,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0075,"86":0,"87":0,"88":0.00375,"89":0.53236,"90":0.02999,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00375,"16":0,"17":0.00375,"18":0.00375,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00375,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00375,"101":0.0075,"102":0.00375,"103":0.20994,"104":0.60359,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00375,"14":0.0075,"15":0.00375,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00375,"12.1":0.00375,"13.1":0.015,"14.1":0.02624,"15.1":0.00375,"15.2-15.3":0.00375,"15.4":0.015,"15.5":0.05249,"15.6":0.08998,"16.0":0},G:{"8":0,"3.2":0.0006,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01451,"6.0-6.1":0.00242,"7.0-7.1":0.00181,"8.1-8.4":0.0006,"9.0-9.2":0,"9.3":0.0278,"10.0-10.2":0.00121,"10.3":0.02236,"11.0-11.2":0.00302,"11.3-11.4":0.06105,"12.0-12.1":0.00484,"12.2-12.5":0.21578,"13.0-13.1":0.00907,"13.2":0.00363,"13.3":0.0133,"13.4-13.7":0.055,"14.0-14.4":0.10457,"14.5-14.8":0.32096,"15.0-15.1":0.05984,"15.2-15.3":0.10396,"15.4":0.1638,"15.5":1.13634,"15.6":3.69191,"16.0":0.02176},P:{"4":0.13225,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.20346,"8.2":0.01017,"9.2":0.01017,"10.1":0,"11.1-11.2":0.05087,"12.0":0.01017,"13.0":0.07121,"14.0":0.05087,"15.0":0.04069,"16.0":0.11191,"17.0":0.91559,"18.0":0.9868},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00447,"4.2-4.3":0.01043,"4.4":0,"4.4.3-4.4.4":0.09384},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02999,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":76.08069},S:{"2.5":0},R:{_:"0"},M:{"0":0.10627},Q:{"10.4":0},O:{"0":0.025},H:{"0":0.17162}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02403,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00401,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00401,"67":0,"68":0.00401,"69":0,"70":0,"71":0,"72":0,"73":0.00401,"74":0,"75":0,"76":0,"77":0,"78":0.00401,"79":0,"80":0.00401,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.01202,"87":0,"88":0.01202,"89":0.00401,"90":0.00401,"91":0.06809,"92":0,"93":0,"94":0.00401,"95":0,"96":0.00401,"97":0,"98":0.00401,"99":0.01202,"100":0.00401,"101":0.00401,"102":0.00401,"103":0.02403,"104":0.42854,"105":0.1562,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00401,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00401,"35":0,"36":0,"37":0,"38":0.00401,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0761,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00401,"59":0,"60":0,"61":0,"62":0,"63":0.00401,"64":0,"65":0,"66":0.02003,"67":0,"68":0.00401,"69":0.00401,"70":0.00401,"71":0.00401,"72":0.00401,"73":0,"74":0.00401,"75":0.00401,"76":0.00401,"77":0.00401,"78":0.00401,"79":0.01602,"80":0.00401,"81":0.01202,"83":0.00801,"84":0.01202,"85":0.00801,"86":0.01602,"87":0.02003,"88":0.00401,"89":0.01202,"90":0.00801,"91":0.01202,"92":0.00801,"93":0.00801,"94":0.00801,"95":0.01202,"96":0.02804,"97":0.02403,"98":0.02003,"99":0.04406,"100":0.02804,"101":0.02804,"102":0.04406,"103":0.18423,"104":2.29086,"105":9.31163,"106":0.19625,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00401,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.01602,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00401,"83":0,"84":0,"85":0.00401,"86":0,"87":0,"88":0,"89":0.06809,"90":0.60876,"91":0.01602,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00401,"16":0,"17":0.00401,"18":0.00401,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00401,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00401,"101":0.00401,"102":0.00401,"103":0.00801,"104":0.13617,"105":0.75294},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00401,"14":0.00801,"15":0.00401,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00401,"12.1":0.00401,"13.1":0.01602,"14.1":0.02804,"15.1":0.00401,"15.2-15.3":0.00401,"15.4":0.01202,"15.5":0.03204,"15.6":0.12015,"16.0":0.02804,"16.1":0},G:{"8":0,"3.2":0.00062,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0142,"6.0-6.1":0.00185,"7.0-7.1":0.00247,"8.1-8.4":0.00123,"9.0-9.2":0,"9.3":0.02778,"10.0-10.2":0.00062,"10.3":0.02408,"11.0-11.2":0.00494,"11.3-11.4":0.06544,"12.0-12.1":0.0037,"12.2-12.5":0.19508,"13.0-13.1":0.00679,"13.2":0.00494,"13.3":0.0142,"13.4-13.7":0.03889,"14.0-14.4":0.08581,"14.5-14.8":0.2636,"15.0-15.1":0.0426,"15.2-15.3":0.07408,"15.4":0.11236,"15.5":0.32657,"15.6":3.98803,"16.0":0.73711,"16.1":0.00617},P:{"4":0.13252,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.22426,"8.2":0,"9.2":0.01019,"10.1":0,"11.1-11.2":0.04078,"12.0":0.01019,"13.0":0.06116,"14.0":0.05097,"15.0":0.04078,"16.0":0.08155,"17.0":0.3262,"18.0":1.64121},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00632,"4.2-4.3":0.01422,"4.4":0,"4.4.3-4.4.4":0.09952},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03204,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.02398},H:{"0":0.17027},L:{"0":74.11875},S:{"2.5":0},R:{_:"0"},M:{"0":0.10192},Q:{"13.1":0}}; 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 211641e0039d56..f807ea25a6f65c 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00419,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00419,"92":0,"93":0.00419,"94":0,"95":0.00837,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00419,"102":0.01256,"103":0.05862,"104":0.02094,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00419,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00419,"76":0.00419,"77":0,"78":0,"79":0.06281,"80":0.02931,"81":0.00837,"83":0.01256,"84":0.00837,"85":0.01256,"86":0.00837,"87":0.01675,"88":0.01256,"89":0.00837,"90":0.02094,"91":0.00837,"92":0.02931,"93":0.08374,"94":0.00837,"95":0.01675,"96":0.01256,"97":0.00419,"98":0.02512,"99":0.02094,"100":0.01675,"101":0.0335,"102":0.07118,"103":2.27354,"104":1.72086,"105":0.00837,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00419,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00419,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00419,"89":0.07955,"90":0.00419,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00419,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.00419,"85":0.00419,"86":0,"87":0.00419,"88":0.00419,"89":0.00419,"90":0.00419,"91":0.00419,"92":0.00419,"93":0.00419,"94":0.00419,"95":0.00419,"96":0.00419,"97":0.00419,"98":0.00419,"99":0.00419,"100":0.00419,"101":0.01675,"102":0.00837,"103":0.25959,"104":0.32659,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01256,"14":0.07537,"15":0.00419,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00419,"13.1":0.02931,"14.1":0.10886,"15.1":0.0963,"15.2-15.3":0.23447,"15.4":0.72435,"15.5":2.74249,"15.6":6.40611,"16.0":0.02094},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.27271,"9.0-9.2":0,"9.3":0.10765,"10.0-10.2":0,"10.3":0.01435,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.99755,"13.0-13.1":0.01435,"13.2":0.01435,"13.3":0.02153,"13.4-13.7":0.17941,"14.0-14.4":0.17224,"14.5-14.8":0.6746,"15.0-15.1":0.4593,"15.2-15.3":0.94731,"15.4":3.373,"15.5":17.97018,"15.6":46.15983,"16.0":0.3373},P:{"4":0.02172,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.16287,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02172,"12.0":0,"13.0":0.01086,"14.0":0,"15.0":0,"16.0":0,"17.0":0.16287,"18.0":0.19545},I:{"0":0,"3":0,"4":0.05444,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01555,"4.4":0,"4.4.3-4.4.4":0.10887},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00837,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":10.73788},S:{"2.5":0},R:{_:"0"},M:{"0":0.06976},Q:{"10.4":0},O:{"0":0.00581},H:{"0":0.04403}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00825,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00413,"92":0,"93":0,"94":0,"95":0.00413,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00825,"102":0,"103":0,"104":0.07016,"105":0.02889,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00413,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00413,"76":0.00413,"77":0,"78":0,"79":0.05365,"80":0.00825,"81":0,"83":0.00413,"84":0,"85":0,"86":0.00825,"87":0.00413,"88":0.00413,"89":0,"90":0,"91":0.00413,"92":0.02476,"93":0.05778,"94":0,"95":0,"96":0,"97":0,"98":0.00413,"99":0.00413,"100":0.00825,"101":0.03714,"102":0.15683,"103":0.73873,"104":1.0854,"105":1.9108,"106":0.01238,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00413,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00825,"90":0.03302,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00413,"16":0,"17":0,"18":0.00413,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00413,"103":0.03302,"104":0.12381,"105":0.44572},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00413,"13":0,"14":0.05365,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00413,"11.1":0,"12.1":0.00825,"13.1":0.08254,"14.1":0.12381,"15.1":0.05778,"15.2-15.3":0.23111,"15.4":0.68508,"15.5":1.27937,"15.6":7.44924,"16.0":0.57365,"16.1":0.02889},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.16145,"9.0-9.2":0,"9.3":0.02202,"10.0-10.2":0,"10.3":0.03669,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.00734,"12.2-12.5":0.58708,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.04403,"14.0-14.4":0.24951,"14.5-14.8":0.44765,"15.0-15.1":0.32289,"15.2-15.3":0.6678,"15.4":2.38499,"15.5":6.46517,"15.6":54.76681,"16.0":5.92946,"16.1":0.08072},P:{"4":0.01037,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09329,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0311,"12.0":0,"13.0":0.02073,"14.0":0,"15.0":0,"16.0":0,"17.0":0.0311,"18.0":1.71039},I:{"0":0,"3":0,"4":0.15718,"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.07378},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.05873},H:{"0":0.03336},L:{"0":8.60063},S:{"2.5":0},R:{_:"0"},M:{"0":0.01175},Q:{"13.1":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 245706a058577e..cd8fb723b683fb 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00491,"49":0,"50":0,"51":0,"52":0.03434,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.04415,"61":0.00491,"62":0,"63":0,"64":0,"65":0,"66":0.04415,"67":0,"68":0.00981,"69":0.00491,"70":0,"71":0,"72":0.00981,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03925,"79":0,"80":0.00491,"81":0.00491,"82":0,"83":0,"84":0.00491,"85":0.00491,"86":0,"87":0,"88":0.00491,"89":0.00491,"90":0.00491,"91":0.18152,"92":0.00491,"93":0.00491,"94":0.00981,"95":0.00981,"96":0.00981,"97":0.00491,"98":0.00981,"99":0.01472,"100":0.01472,"101":0.03925,"102":0.17662,"103":3.12512,"104":0.58872,"105":0.00491,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00491,"35":0,"36":0.00491,"37":0,"38":0.00491,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00491,"48":0,"49":0.01472,"50":0,"51":0,"52":0,"53":0.00491,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00491,"66":0,"67":0.00981,"68":0,"69":0.03434,"70":0.00491,"71":0,"72":0,"73":0.00491,"74":0,"75":0.00491,"76":0.00491,"77":0.00491,"78":0.00491,"79":0.13246,"80":0.04415,"81":0.01962,"83":0.00981,"84":0.00981,"85":0.01472,"86":0.03925,"87":0.03925,"88":0.00491,"89":0.04415,"90":0.00981,"91":0.00981,"92":0.02453,"93":0.01472,"94":0.00981,"95":0.01472,"96":0.05397,"97":0.05887,"98":0.05887,"99":0.02453,"100":0.06378,"101":0.0834,"102":0.13246,"103":2.84548,"104":6.77028,"105":0.01962,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00491,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00981,"64":0.00491,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00491,"72":0,"73":0,"74":0,"75":0.00491,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0785,"86":0,"87":0.00981,"88":0.01472,"89":1.03026,"90":0.09321,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00491,"16":0,"17":0,"18":0.00981,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00491,"86":0,"87":0,"88":0,"89":0,"90":0.00491,"91":0,"92":0.00981,"93":0,"94":0,"95":0.00491,"96":0.00491,"97":0.00491,"98":0.00491,"99":0.00491,"100":0.00981,"101":0.04906,"102":0.05397,"103":1.03517,"104":2.88963,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01472,"14":0.08831,"15":0.02944,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00491,"10.1":0.00491,"11.1":0.02453,"12.1":0.02453,"13.1":0.1619,"14.1":0.27474,"15.1":0.05887,"15.2-15.3":0.05887,"15.4":0.15699,"15.5":0.57891,"15.6":1.10385,"16.0":0.01472},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.00541,"8.1-8.4":0.00541,"9.0-9.2":0.00271,"9.3":0.10558,"10.0-10.2":0.00271,"10.3":0.09476,"11.0-11.2":0.04061,"11.3-11.4":0.01895,"12.0-12.1":0.04602,"12.2-12.5":0.51439,"13.0-13.1":0.02707,"13.2":0.02437,"13.3":0.08663,"13.4-13.7":0.13807,"14.0-14.4":0.49544,"14.5-14.8":1.4078,"15.0-15.1":0.39527,"15.2-15.3":0.64163,"15.4":1.19933,"15.5":6.58416,"15.6":14.96596,"16.0":0.25719},P:{"4":0.19716,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01038,"8.2":0,"9.2":0,"10.1":0.01038,"11.1-11.2":0.03113,"12.0":0.02075,"13.0":0.07264,"14.0":0.05188,"15.0":0.06226,"16.0":0.14527,"17.0":1.80554,"18.0":2.63567},I:{"0":0,"3":0,"4":0.00555,"2.1":0,"2.2":0,"2.3":0,"4.1":0.09258,"4.2-4.3":0.01111,"4.4":0,"4.4.3-4.4.4":0.1185},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00491,"9":0,"10":0,"11":0.10303,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":39.32953},S:{"2.5":0},R:{_:"0"},M:{"0":0.90164},Q:{"10.4":0},O:{"0":0.05094},H:{"0":0.6173}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00546,"49":0,"50":0,"51":0,"52":0.03274,"53":0,"54":0,"55":0,"56":0.00546,"57":0,"58":0,"59":0,"60":0.04911,"61":0.00546,"62":0,"63":0,"64":0,"65":0,"66":0.05457,"67":0,"68":0.00546,"69":0,"70":0,"71":0,"72":0.00546,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0382,"79":0.00546,"80":0.00546,"81":0.01091,"82":0,"83":0,"84":0.00546,"85":0.00546,"86":0,"87":0,"88":0.00546,"89":0.00546,"90":0.00546,"91":0.1528,"92":0,"93":0.00546,"94":0.01091,"95":0.00546,"96":0.00546,"97":0.00546,"98":0.00546,"99":0.01637,"100":0.01637,"101":0.02183,"102":0.10914,"103":0.20191,"104":2.7285,"105":1.19508,"106":0.00546,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00546,"35":0,"36":0,"37":0,"38":0.00546,"39":0,"40":0,"41":0.00546,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00546,"48":0,"49":0.01637,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00546,"59":0,"60":0,"61":0,"62":0,"63":0.00546,"64":0,"65":0.00546,"66":0,"67":0.00546,"68":0,"69":0.00546,"70":0.00546,"71":0,"72":0,"73":0.00546,"74":0,"75":0.00546,"76":0.00546,"77":0.01091,"78":0,"79":0.06003,"80":0.00546,"81":0.02183,"83":0.01091,"84":0.02183,"85":0.02729,"86":0.0764,"87":0.04366,"88":0.01091,"89":0.0382,"90":0.00546,"91":0.00546,"92":0.01637,"93":0.01091,"94":0.01091,"95":0.01091,"96":0.01637,"97":0.02183,"98":0.02183,"99":0.01637,"100":0.08186,"101":0.1528,"102":0.36562,"103":0.30014,"104":2.13914,"105":10.69026,"106":0.22374,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00546,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.01091,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00546,"72":0.00546,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.02183,"86":0,"87":0,"88":0,"89":0.10368,"90":1.5225,"91":0.06003,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00546,"18":0.01091,"79":0,"80":0,"81":0,"83":0,"84":0.00546,"85":0.00546,"86":0.00546,"87":0,"88":0,"89":0.00546,"90":0,"91":0,"92":0.00546,"93":0,"94":0,"95":0.00546,"96":0.00546,"97":0.00546,"98":0.00546,"99":0.00546,"100":0.00546,"101":0.01637,"102":0.01637,"103":0.05457,"104":0.68758,"105":4.02727},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01637,"14":0.1146,"15":0.02729,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00546,"10.1":0.00546,"11.1":0.02183,"12.1":0.03274,"13.1":0.17462,"14.1":0.27285,"15.1":0.07094,"15.2-15.3":0.07094,"15.4":0.1528,"15.5":0.32196,"15.6":1.41882,"16.0":0.24557,"16.1":0.02183},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00284,"6.0-6.1":0,"7.0-7.1":0.00567,"8.1-8.4":0.00284,"9.0-9.2":0,"9.3":0.08506,"10.0-10.2":0.00567,"10.3":0.10491,"11.0-11.2":0.02552,"11.3-11.4":0.02268,"12.0-12.1":0.02835,"12.2-12.5":0.42814,"13.0-13.1":0.02552,"13.2":0.01701,"13.3":0.06238,"13.4-13.7":0.11625,"14.0-14.4":0.43948,"14.5-14.8":1.27876,"15.0-15.1":0.29772,"15.2-15.3":0.46784,"15.4":0.70318,"15.5":1.90254,"15.6":15.75057,"16.0":5.97699,"16.1":0.09073},P:{"4":0.16545,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02068,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02068,"12.0":0.01034,"13.0":0.04136,"14.0":0.03102,"15.0":0.03102,"16.0":0.08272,"17.0":0.18613,"18.0":3.56744},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03792,"4.2-4.3":0.01517,"4.4":0,"4.4.3-4.4.4":0.15422},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00546,"9":0,"10":0,"11":0.10914,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.04543},H:{"0":0.51182},L:{"0":34.16441},S:{"2.5":0},R:{_:"0"},M:{"0":0.70871},Q:{"13.1":0.03634}}; 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 a1a95547fd11cf..4f37887f436056 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:{"2":0.00607,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00607,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00607,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02426,"53":0,"54":0.01213,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00607,"67":0,"68":0.00607,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03033,"79":0.00607,"80":0.00607,"81":0.00607,"82":0.00607,"83":0.00607,"84":0.00607,"85":0,"86":0,"87":0.00607,"88":0.00607,"89":0.00607,"90":0,"91":0.03033,"92":0,"93":0.00607,"94":0.06066,"95":0.00607,"96":0.00607,"97":0.00607,"98":0.00607,"99":0.00607,"100":0.01213,"101":0.0182,"102":0.08492,"103":1.21927,"104":0.23051,"105":0.00607,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.01213,"26":0.00607,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.0182,"35":0,"36":0,"37":0,"38":0.04853,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02426,"50":0,"51":0,"52":0,"53":0.00607,"54":0,"55":0,"56":0.00607,"57":0,"58":0.00607,"59":0.02426,"60":0.0364,"61":0,"62":0,"63":0,"64":0,"65":0.00607,"66":0.00607,"67":0.00607,"68":0.00607,"69":0.0182,"70":0.00607,"71":0,"72":0.00607,"73":0.00607,"74":0.01213,"75":0.00607,"76":0.00607,"77":0.00607,"78":0.01213,"79":0.09099,"80":0.03033,"81":0.02426,"83":0.03033,"84":0.03033,"85":0.05459,"86":0.13345,"87":0.08492,"88":0.01213,"89":0.0182,"90":0.01213,"91":0.02426,"92":0.0364,"93":0.04853,"94":0.03033,"95":0.02426,"96":0.09706,"97":0.07886,"98":0.06673,"99":0.07279,"100":0.16985,"101":0.13952,"102":0.37003,"103":6.47242,"104":13.73342,"105":0.0364,"106":0.00607,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0182,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00607,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00607,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01213,"89":0.37609,"90":0.02426,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00607,"16":0,"17":0,"18":0.01213,"79":0,"80":0,"81":0,"83":0,"84":0.00607,"85":0.0182,"86":0.00607,"87":0,"88":0,"89":0,"90":0.00607,"91":0,"92":0.00607,"93":0,"94":0,"95":0.00607,"96":0.0182,"97":0.00607,"98":0.00607,"99":0.01213,"100":0.01213,"101":0.04853,"102":0.04853,"103":1.38305,"104":3.30597,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00607,"9":0,"10":0,"11":0,"12":0.00607,"13":0.04246,"14":0.18198,"15":0.04853,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00607,"10.1":0.01213,"11.1":0.03033,"12.1":0.06066,"13.1":0.25477,"14.1":0.56414,"15.1":0.09099,"15.2-15.3":0.08492,"15.4":0.2851,"15.5":1.15861,"15.6":2.20802,"16.0":0.01213},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0246,"6.0-6.1":0.01406,"7.0-7.1":0.02109,"8.1-8.4":0.0246,"9.0-9.2":0.02109,"9.3":0.2812,"10.0-10.2":0.02109,"10.3":0.31283,"11.0-11.2":0.08436,"11.3-11.4":0.10545,"12.0-12.1":0.08436,"12.2-12.5":1.45871,"13.0-13.1":0.04921,"13.2":0.02109,"13.3":0.12302,"13.4-13.7":0.29526,"14.0-14.4":0.86468,"14.5-14.8":2.18631,"15.0-15.1":0.53076,"15.2-15.3":0.80141,"15.4":1.17049,"15.5":6.74875,"15.6":19.72603,"16.0":0.16872},P:{"4":0.21,"5.0-5.4":0.021,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.0105,"10.1":0,"11.1-11.2":0.0315,"12.0":0.0105,"13.0":0.0525,"14.0":0.0525,"15.0":0.0315,"16.0":0.0945,"17.0":1.03948,"18.0":1.45947},I:{"0":0,"3":0,"4":0.00873,"2.1":0,"2.2":0.01455,"2.3":0.00582,"4.1":0.00873,"4.2-4.3":0.01746,"4.4":0,"4.4.3-4.4.4":0.09896},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0107,"9":0.02141,"10":0,"11":0.14987,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":23.79878},S:{"2.5":0},R:{_:"0"},M:{"0":0.38947},Q:{"10.4":0.00393},O:{"0":0.05508},H:{"0":0.12291}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00558,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00558,"34":0.00558,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01675,"53":0,"54":0.01116,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00558,"67":0,"68":0.00558,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02791,"79":0.00558,"80":0,"81":0.00558,"82":0.00558,"83":0.00558,"84":0.00558,"85":0,"86":0,"87":0.03349,"88":0.00558,"89":0,"90":0,"91":0.02233,"92":0,"93":0.00558,"94":0.05582,"95":0.00558,"96":0.00558,"97":0.00558,"98":0.00558,"99":0.00558,"100":0.00558,"101":0.01116,"102":0.03907,"103":0.08931,"104":1.06616,"105":0.35725,"106":0.00558,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.01675,"26":0.00558,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01675,"35":0,"36":0,"37":0,"38":0.06698,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02233,"50":0,"51":0,"52":0,"53":0.00558,"54":0,"55":0,"56":0.00558,"57":0,"58":0,"59":0.01675,"60":0.01675,"61":0,"62":0,"63":0,"64":0,"65":0.00558,"66":0.01116,"67":0.01116,"68":0.00558,"69":0.01116,"70":0.00558,"71":0,"72":0.00558,"73":0.00558,"74":0.01116,"75":0.00558,"76":0.00558,"77":0.00558,"78":0.00558,"79":0.06698,"80":0.01116,"81":0.02233,"83":0.02233,"84":0.02233,"85":0.05024,"86":0.07815,"87":0.08373,"88":0.01116,"89":0.02233,"90":0.01116,"91":0.01675,"92":0.02791,"93":0.02791,"94":0.02791,"95":0.02233,"96":0.05024,"97":0.0614,"98":0.04466,"99":0.05024,"100":0.11164,"101":0.08373,"102":0.12839,"103":0.65868,"104":4.25907,"105":11.63847,"106":0.18979,"107":0.00558,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00558,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01675,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00558,"65":0,"66":0,"67":0,"68":0,"69":0.00558,"70":0,"71":0.00558,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.05024,"90":0.35725,"91":0.01116,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00558,"16":0,"17":0,"18":0.00558,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.01116,"86":0.00558,"87":0,"88":0,"89":0.00558,"90":0,"91":0,"92":0.00558,"93":0,"94":0,"95":0.00558,"96":0.00558,"97":0,"98":0.00558,"99":0.00558,"100":0.00558,"101":0.02233,"102":0.02233,"103":0.03907,"104":0.73124,"105":2.84682},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00558,"13":0.03907,"14":0.17304,"15":0.04466,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00558,"10.1":0.01116,"11.1":0.03349,"12.1":0.05582,"13.1":0.24003,"14.1":0.51354,"15.1":0.07815,"15.2-15.3":0.07257,"15.4":0.20095,"15.5":0.49122,"15.6":2.76867,"16.0":0.20653,"16.1":0.01116},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02328,"6.0-6.1":0.01552,"7.0-7.1":0.0194,"8.1-8.4":0.02716,"9.0-9.2":0.02716,"9.3":0.29873,"10.0-10.2":0.0194,"10.3":0.32589,"11.0-11.2":0.08147,"11.3-11.4":0.10087,"12.0-12.1":0.06983,"12.2-12.5":1.4277,"13.0-13.1":0.04268,"13.2":0.02328,"13.3":0.10863,"13.4-13.7":0.25605,"14.0-14.4":0.80308,"14.5-14.8":1.9786,"15.0-15.1":0.44228,"15.2-15.3":0.61298,"15.4":0.83412,"15.5":2.17258,"15.6":24.22039,"16.0":4.04643,"16.1":0.05431},P:{"4":0.21183,"5.0-5.4":0.02118,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01059,"10.1":0,"11.1-11.2":0.02118,"12.0":0.01059,"13.0":0.05296,"14.0":0.04237,"15.0":0.03178,"16.0":0.08473,"17.0":0.23302,"18.0":2.53141},I:{"0":0,"3":0,"4":0.00679,"2.1":0,"2.2":0.00905,"2.3":0.00453,"4.1":0.00905,"4.2-4.3":0.02037,"4.4":0,"4.4.3-4.4.4":0.07695},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.02641,"9":0.02641,"10":0.0088,"11":0.16725,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.06185},H:{"0":0.13803},L:{"0":25.99952},S:{"2.5":0},R:{_:"0"},M:{"0":0.46389},Q:{"13.1":0.00442}}; 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 563e3e67265acf..07740107425818 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00337,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00337,"79":0,"80":0,"81":0,"82":0,"83":0.01684,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00337,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00673,"99":0,"100":0,"101":0.00337,"102":0.00337,"103":0.28956,"104":0.05387,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00337,"48":0,"49":0.0202,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00673,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00337,"77":0,"78":0,"79":0.01684,"80":0,"81":0.00337,"83":0.0101,"84":0.00337,"85":0.0101,"86":0.00337,"87":0.0101,"88":0,"89":0.00673,"90":0,"91":0,"92":0.00673,"93":0.0101,"94":0,"95":0,"96":0.0303,"97":0.00337,"98":0.02357,"99":0.03704,"100":0.00673,"101":0.02694,"102":0.06061,"103":1.89899,"104":4.08417,"105":0.01347,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.10438,"90":0.01347,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.02357,"85":0.00673,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00337,"93":0.00337,"94":0,"95":0,"96":0.02357,"97":0,"98":0.00337,"99":0.00673,"100":0,"101":0.00337,"102":0.00337,"103":0.50168,"104":1.54882,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00337,"13":0.00337,"14":0.03367,"15":0.00673,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01347,"12.1":0.01347,"13.1":0.16162,"14.1":0.24579,"15.1":0.03704,"15.2-15.3":0.0202,"15.4":0.09091,"15.5":0.37037,"15.6":0.6835,"16.0":0.00337},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.01162,"10.0-10.2":0.01162,"10.3":0.06583,"11.0-11.2":0,"11.3-11.4":0.01936,"12.0-12.1":0.01162,"12.2-12.5":0.48401,"13.0-13.1":0,"13.2":0.01936,"13.3":0.03098,"13.4-13.7":0.10455,"14.0-14.4":0.34849,"14.5-14.8":2.41618,"15.0-15.1":0.54209,"15.2-15.3":0.65438,"15.4":1.15001,"15.5":8.89032,"15.6":23.6275,"16.0":0.32138},P:{"4":0.19533,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.17477,"8.2":0,"9.2":0.01028,"10.1":0,"11.1-11.2":0.12336,"12.0":0.02056,"13.0":0.0514,"14.0":0.09252,"15.0":0.06168,"16.0":0.13364,"17.0":2.94017,"18.0":4.4411},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.20835},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0101,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":38.34502},S:{"2.5":0},R:{_:"0"},M:{"0":0.43778},Q:{"10.4":0},O:{"0":0.0796},H:{"0":0.08792}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00347,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00347,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00693,"99":0,"100":0,"101":0.02079,"102":0.00693,"103":0.02426,"104":0.22869,"105":0.05891,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00347,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00347,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00347,"77":0,"78":0.00347,"79":0.0104,"80":0,"81":0.00693,"83":0.00347,"84":0,"85":0.00347,"86":0.00347,"87":0.01733,"88":0,"89":0,"90":0,"91":0.00347,"92":0.00347,"93":0.03465,"94":0,"95":0.00347,"96":0.02079,"97":0.0104,"98":0.00693,"99":0.03119,"100":0.0104,"101":0.00693,"102":0.03119,"103":0.25641,"104":1.62162,"105":4.59113,"106":0.12474,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.01386,"65":0,"66":0,"67":0,"68":0,"69":0.00347,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.0104,"90":0.08663,"91":0.00693,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00347,"79":0,"80":0,"81":0,"83":0,"84":0.01386,"85":0.0104,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00693,"100":0,"101":0.00347,"102":0,"103":0.04505,"104":0.28413,"105":2.05128},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00347,"14":0.05891,"15":0.00693,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01386,"12.1":0.01733,"13.1":0.05198,"14.1":0.11781,"15.1":0.01733,"15.2-15.3":0.02079,"15.4":0.0797,"15.5":0.19058,"15.6":0.90437,"16.0":0.11088,"16.1":0.0104},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.01508,"10.0-10.2":0.01131,"10.3":0.01508,"11.0-11.2":0.00377,"11.3-11.4":0.01131,"12.0-12.1":0,"12.2-12.5":0.63698,"13.0-13.1":0,"13.2":0.06784,"13.3":0.01885,"13.4-13.7":0.1093,"14.0-14.4":0.37691,"14.5-14.8":2.34061,"15.0-15.1":0.43722,"15.2-15.3":0.52767,"15.4":0.75005,"15.5":2.05039,"15.6":23.69259,"16.0":5.7705,"16.1":0.05654},P:{"4":0.14394,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.14394,"8.2":0,"9.2":0.01028,"10.1":0,"11.1-11.2":0.08225,"12.0":0.01028,"13.0":0.05141,"14.0":0.06169,"15.0":0.05141,"16.0":0.1645,"17.0":0.48323,"18.0":6.65213},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01049,"4.4":0,"4.4.3-4.4.4":0.14158},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02772,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.52934},H:{"0":0.16086},L:{"0":39.08363},S:{"2.5":0},R:{_:"0"},M:{"0":0.57508},Q:{"13.1":0}}; 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 0aac712f10b5eb..4a40811436220e 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0412,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00589,"67":0,"68":0.00589,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01766,"79":0.00589,"80":0.02943,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00589,"87":0,"88":0,"89":0,"90":0,"91":0.01177,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00589,"101":0.01177,"102":0.64735,"103":2.52467,"104":0.43549,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00589,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.02354,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.01766,"72":0,"73":0,"74":0,"75":0,"76":0.21186,"77":0,"78":0,"79":0.0412,"80":0,"81":0,"83":0,"84":0.00589,"85":0,"86":0.02354,"87":0.00589,"88":0.00589,"89":0,"90":0,"91":0,"92":0.02943,"93":0.00589,"94":0.00589,"95":0.01766,"96":0.07651,"97":0.01177,"98":0.02943,"99":0.00589,"100":0.08828,"101":0.01766,"102":0.10005,"103":4.76097,"104":12.85284,"105":0.02354,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00589,"89":0.75328,"90":0.02354,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00589,"100":0,"101":0.00589,"102":0.07062,"103":1.24174,"104":3.1779,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.01766,"13":0.01177,"14":0.1589,"15":0.14124,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.08828,"10.1":0,"11.1":0,"12.1":0.05297,"13.1":0.28837,"14.1":1.77727,"15.1":0.0412,"15.2-15.3":0.02354,"15.4":0.37664,"15.5":0.57673,"15.6":1.09461,"16.0":0},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.01168,"8.1-8.4":0.01947,"9.0-9.2":0,"9.3":0.02726,"10.0-10.2":0.00195,"10.3":0.63856,"11.0-11.2":0.01168,"11.3-11.4":0.01557,"12.0-12.1":0.26282,"12.2-12.5":3.18111,"13.0-13.1":0.36016,"13.2":0.01168,"13.3":0.0623,"13.4-13.7":0.08371,"14.0-14.4":0.78846,"14.5-14.8":0.97925,"15.0-15.1":0.26282,"15.2-15.3":0.36016,"15.4":0.77678,"15.5":2.96501,"15.6":8.60884,"16.0":0.03894},P:{"4":0.07613,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.087,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0435,"12.0":0.01088,"13.0":0.03263,"14.0":0,"15.0":0.02175,"16.0":0.09788,"17.0":1.46817,"18.0":1.81618},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.05949,"4.4":0,"4.4.3-4.4.4":0.03051},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05297,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":38.88284},S:{"2.5":0},R:{_:"0"},M:{"0":2.62126},Q:{"10.4":0},O:{"0":0.02469},H:{"0":0.31946}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.11162,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.08371,"92":0,"93":0,"94":0,"95":0.01395,"96":0,"97":0,"98":0,"99":0,"100":0.00698,"101":0,"102":0.00698,"103":0.0279,"104":2.31603,"105":1.2487,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01395,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.04186,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00698,"76":0.09766,"77":0,"78":0,"79":0,"80":0,"81":0.01395,"83":0,"84":0.02093,"85":0.00698,"86":0.03488,"87":0.00698,"88":0.00698,"89":0,"90":0,"91":0.00698,"92":0.03488,"93":0,"94":0.00698,"95":0.01395,"96":0.09069,"97":0.00698,"98":0,"99":0.00698,"100":0.06976,"101":0.04186,"102":0.07674,"103":0.27206,"104":3.90656,"105":25.37171,"106":0.98362,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00698,"87":0,"88":0,"89":0.06278,"90":0.18835,"91":0.00698,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01395,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01395,"100":0.00698,"101":0.10464,"102":0,"103":0.01395,"104":0.80922,"105":5.59475},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00698,"13":0.01395,"14":0.13952,"15":0.11162,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01395,"13.1":0.15347,"14.1":0.58598,"15.1":0.09069,"15.2-15.3":0.01395,"15.4":0.06278,"15.5":0.18835,"15.6":2.30208,"16.0":0.12557,"16.1":0},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.00948,"8.1-8.4":0,"9.0-9.2":0.00316,"9.3":0.08686,"10.0-10.2":0,"10.3":0.52434,"11.0-11.2":0.00632,"11.3-11.4":0.01106,"12.0-12.1":0.23848,"12.2-12.5":3.43666,"13.0-13.1":0.17689,"13.2":0.01106,"13.3":0.01421,"13.4-13.7":0.04106,"14.0-14.4":0.19742,"14.5-14.8":0.82758,"15.0-15.1":0.16899,"15.2-15.3":0.15636,"15.4":0.36009,"15.5":0.56225,"15.6":7.98203,"16.0":0.73598,"16.1":0.02843},P:{"4":0.40887,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0538,"8.2":0,"9.2":0.01076,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0.03228,"16.0":0.03228,"17.0":0.19368,"18.0":3.43238},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00977,"4.4":0,"4.4.3-4.4.4":0.07814},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03488,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.01145},L:{"0":28.86669},S:{"2.5":0},R:{_:"0"},M:{"0":1.83859},Q:{"13.1":0}}; 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 7c507c53572692..cba3612d6df12e 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00996,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03984,"79":0.00332,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00332,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00664,"102":0.00664,"103":0.0996,"104":0.01992,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00332,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00664,"50":0,"51":0,"52":0,"53":0.01992,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00332,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00332,"68":0.00664,"69":0,"70":0.00332,"71":0.00332,"72":0.00332,"73":0,"74":0.00664,"75":0.00332,"76":0,"77":0.00332,"78":0,"79":0.30876,"80":0.00332,"81":0.00664,"83":0.00332,"84":0.00332,"85":0.01328,"86":0.00332,"87":0.05976,"88":0.00332,"89":0.01328,"90":0.00332,"91":0.00332,"92":0.03652,"93":0,"94":0.00332,"95":0.00664,"96":0.00996,"97":0.01328,"98":0.00664,"99":0.00996,"100":0.03984,"101":0.0166,"102":0.07636,"103":2.16464,"104":5.32528,"105":0.01328,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0166,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00996,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.02656,"64":0.02324,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00332,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00332,"78":0,"79":0.00332,"80":0,"81":0,"82":0.00664,"83":0,"84":0.00332,"85":0.04648,"86":0,"87":0.00664,"88":0.01328,"89":0.91632,"90":0.1328,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00332,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00996,"102":0.00664,"103":0.08632,"104":0.27224,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00996,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00332,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00332,"13.1":0.00996,"14.1":0.0332,"15.1":0.02324,"15.2-15.3":0.00664,"15.4":0.01992,"15.5":0.0498,"15.6":0.08632,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02418,"6.0-6.1":0,"7.0-7.1":0.02418,"8.1-8.4":0,"9.0-9.2":0.00269,"9.3":0.0094,"10.0-10.2":0.00403,"10.3":0.15984,"11.0-11.2":0.00672,"11.3-11.4":0.0497,"12.0-12.1":0.01343,"12.2-12.5":0.62057,"13.0-13.1":0.01209,"13.2":0.00537,"13.3":0.03492,"13.4-13.7":0.10209,"14.0-14.4":0.46207,"14.5-14.8":0.75624,"15.0-15.1":0.22432,"15.2-15.3":0.37073,"15.4":0.84623,"15.5":3.23046,"15.6":6.11706,"16.0":0.34924},P:{"4":0.61002,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.10167,"8.2":0.01017,"9.2":0.02033,"10.1":0,"11.1-11.2":0.08134,"12.0":0.02033,"13.0":0.10167,"14.0":0.11184,"15.0":0.07117,"16.0":0.16267,"17.0":1.75888,"18.0":2.03339},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00318,"4.2-4.3":0.00847,"4.4":0,"4.4.3-4.4.4":0.03495},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00664,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":67.51236},S:{"2.5":0},R:{_:"0"},M:{"0":0.10688},Q:{"10.4":0},O:{"0":0.44088},H:{"0":0.63242}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00326,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.03261,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.02935,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.01631,"77":0.16957,"78":0.04239,"79":0.00652,"80":0,"81":0.01631,"82":0.00326,"83":0,"84":0,"85":0,"86":0.00326,"87":0,"88":0.03913,"89":0,"90":0,"91":0,"92":0.00652,"93":0.01631,"94":0,"95":0,"96":0.00326,"97":0.00326,"98":0.00326,"99":0.00326,"100":0,"101":0.00326,"102":0.00326,"103":0.00326,"104":0.09457,"105":0.02283,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00326,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00652,"50":0,"51":0,"52":0,"53":0.01631,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00652,"69":0.00326,"70":0.00652,"71":0.00326,"72":0.00652,"73":0,"74":0.00652,"75":0.00326,"76":0,"77":0.00326,"78":0.00326,"79":0.18262,"80":0.00652,"81":0.00652,"83":0.00326,"84":0.00326,"85":0.00652,"86":0.00652,"87":0.04565,"88":0.00652,"89":0.00978,"90":0.00652,"91":0.00652,"92":0.02935,"93":0.00326,"94":0.00326,"95":0.01304,"96":0.00978,"97":0.01304,"98":0.00652,"99":0.00978,"100":0.01957,"101":0.01304,"102":0.03587,"103":0.10761,"104":1.8979,"105":5.1002,"106":0.03587,"107":0,"108":0.00978,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01304,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00978,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00652,"64":0.04892,"65":0.00652,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00652,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00652,"78":0,"79":0.00652,"80":0,"81":0,"82":0.00652,"83":0,"84":0.00326,"85":0.03587,"86":0.00326,"87":0.00326,"88":0,"89":0.10761,"90":0.91308,"91":0.01631,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00326,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00326,"100":0,"101":0,"102":0.00326,"103":0.00326,"104":0.08479,"105":0.27066},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00652,"12":0,"13":0,"14":0.00652,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00326,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00326,"13.1":0.01304,"14.1":0.03261,"15.1":0.00652,"15.2-15.3":0.00326,"15.4":0.02283,"15.5":0.03261,"15.6":0.10109,"16.0":0.01631,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00135,"6.0-6.1":0,"7.0-7.1":0.02164,"8.1-8.4":0,"9.0-9.2":0.0027,"9.3":0.01352,"10.0-10.2":0.0027,"10.3":0.20016,"11.0-11.2":0.00947,"11.3-11.4":0.03111,"12.0-12.1":0.01488,"12.2-12.5":0.76954,"13.0-13.1":0.01758,"13.2":0.0027,"13.3":0.0568,"13.4-13.7":0.1082,"14.0-14.4":0.27184,"14.5-14.8":0.73032,"15.0-15.1":0.23533,"15.2-15.3":0.24209,"15.4":0.52069,"15.5":1.51475,"15.6":6.49042,"16.0":2.0422,"16.1":0.04193},P:{"4":0.47623,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09119,"8.2":0.01013,"9.2":0.0304,"10.1":0,"11.1-11.2":0.0608,"12.0":0.01013,"13.0":0.13172,"14.0":0.09119,"15.0":0.08106,"16.0":0.12159,"17.0":0.50663,"18.0":4.0328},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00274,"4.2-4.3":0.00548,"4.4":0,"4.4.3-4.4.4":0.02809},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00978,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.47847},H:{"0":0.74009},L:{"0":66.93901},S:{"2.5":0},R:{_:"0"},M:{"0":0.10782},Q:{"13.1":0}}; 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 c00529c8948497..cc50db9f6919ab 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.18186,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.14549,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00303,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00303,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00606,"92":0.00303,"93":0,"94":0,"95":0.00606,"96":0,"97":0.00606,"98":0,"99":0.01516,"100":0.00303,"101":0.00303,"102":0.02425,"103":0.51224,"104":0.09699,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00303,"23":0,"24":0,"25":0,"26":0.00303,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00303,"35":0,"36":0,"37":0,"38":0.00303,"39":0,"40":0,"41":0,"42":0,"43":0.00303,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02425,"50":0,"51":0,"52":0,"53":0.00606,"54":0.00303,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00606,"69":0,"70":0,"71":0,"72":0.00303,"73":0,"74":0,"75":0.00303,"76":0.00303,"77":0.00303,"78":0.00303,"79":0.04243,"80":0.00303,"81":0.01212,"83":0.00909,"84":0.00909,"85":0.00606,"86":0.00909,"87":0.00909,"88":0.00606,"89":0.01212,"90":0.00303,"91":0.00909,"92":0.01516,"93":0.00606,"94":0.01212,"95":0.00606,"96":0.01516,"97":0.01516,"98":0.01212,"99":0.01516,"100":0.02425,"101":0.01819,"102":0.0485,"103":1.59734,"104":4.52831,"105":0.01516,"106":0.00303,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00606,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00303,"37":0,"38":0,"39":0,"40":0.00303,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00303,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00303,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00303,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00606,"86":0,"87":0,"88":0.00303,"89":0.33341,"90":0.03031,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00303,"16":0,"17":0,"18":0.00303,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00606,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00303,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00606,"102":0.00303,"103":0.11215,"104":0.34553,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00303,"13":0.00303,"14":0.00909,"15":0.00606,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00303,"12.1":0.00606,"13.1":0.00909,"14.1":0.02425,"15.1":0.00303,"15.2-15.3":0.00303,"15.4":0.01819,"15.5":0.0394,"15.6":0.06971,"16.0":0},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.01478,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07813,"10.0-10.2":0.00106,"10.3":0.12353,"11.0-11.2":0.00634,"11.3-11.4":0.0095,"12.0-12.1":0.01056,"12.2-12.5":0.43078,"13.0-13.1":0.00739,"13.2":0.00528,"13.3":0.01689,"13.4-13.7":0.07074,"14.0-14.4":0.19428,"14.5-14.8":0.65251,"15.0-15.1":0.12776,"15.2-15.3":0.22173,"15.4":0.46563,"15.5":2.97959,"15.6":5.06172,"16.0":0.07285},P:{"4":0.26553,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.07149,"8.2":0,"9.2":0.02043,"10.1":0.01021,"11.1-11.2":0.06128,"12.0":0.02043,"13.0":0.07149,"14.0":0.06128,"15.0":0.06128,"16.0":0.11234,"17.0":1.1132,"18.0":1.53192},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02536,"4.2-4.3":0.03227,"4.4":0,"4.4.3-4.4.4":0.15905},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01212,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":75.46706},S:{"2.5":0},R:{_:"0"},M:{"0":0.18119},Q:{"10.4":0},O:{"0":0.02091},H:{"0":0.15835}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.29383,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.05342,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00382,"66":0,"67":0,"68":0.00382,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00382,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00382,"85":0,"86":0,"87":0,"88":0.00382,"89":0.00382,"90":0,"91":0.01526,"92":0,"93":0,"94":0,"95":0.00382,"96":0,"97":0.01145,"98":0.00382,"99":0.03053,"100":0.00382,"101":0.00382,"102":0.01526,"103":0.04198,"104":0.88913,"105":0.28238,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00382,"23":0,"24":0,"25":0,"26":0.00382,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00382,"39":0,"40":0,"41":0,"42":0,"43":0.00382,"44":0,"45":0,"46":0,"47":0.00382,"48":0,"49":0.05342,"50":0,"51":0,"52":0,"53":0.00763,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00382,"64":0,"65":0,"66":0,"67":0,"68":0.01145,"69":0.00382,"70":0,"71":0,"72":0,"73":0.00382,"74":0.00382,"75":0,"76":0.00763,"77":0.00763,"78":0.00382,"79":0.06106,"80":0.00382,"81":0.01145,"83":0.00763,"84":0.0229,"85":0.00763,"86":0.01908,"87":0.01526,"88":0.00763,"89":0.01145,"90":0.00382,"91":0.01145,"92":0.01526,"93":0.01526,"94":0.02671,"95":0.01145,"96":0.01526,"97":0.03053,"98":0.01908,"99":0.0229,"100":0.02671,"101":0.0229,"102":0.08014,"103":0.13356,"104":2.2667,"105":7.42212,"106":0.11066,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00763,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00382,"37":0,"38":0,"39":0,"40":0.00382,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00763,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00382,"64":0.00382,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00382,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00382,"80":0.00382,"81":0,"82":0,"83":0,"84":0,"85":0.00763,"86":0,"87":0,"88":0.00382,"89":0.03816,"90":0.52279,"91":0.01526,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00382,"16":0,"17":0,"18":0.00382,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.01145,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00763,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00763,"102":0.00382,"103":0.00763,"104":0.12211,"105":0.59911},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01526,"15":0.00382,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00382,"13.1":0.01908,"14.1":0.03053,"15.1":0.00382,"15.2-15.3":0.00382,"15.4":0.01145,"15.5":0.0229,"15.6":0.14119,"16.0":0.03434,"16.1":0},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.01738,"8.1-8.4":0,"9.0-9.2":0.00205,"9.3":0.13397,"10.0-10.2":0.00205,"10.3":0.12169,"11.0-11.2":0.00818,"11.3-11.4":0.00511,"12.0-12.1":0.01023,"12.2-12.5":0.31804,"13.0-13.1":0.0092,"13.2":0.00102,"13.3":0.0092,"13.4-13.7":0.07056,"14.0-14.4":0.16771,"14.5-14.8":0.56654,"15.0-15.1":0.0767,"15.2-15.3":0.13397,"15.4":0.28123,"15.5":0.76903,"15.6":5.79633,"16.0":1.52783,"16.1":0.01534},P:{"4":0.22408,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.08148,"8.2":0,"9.2":0.02037,"10.1":0.01019,"11.1-11.2":0.06111,"12.0":0.02037,"13.0":0.0713,"14.0":0.05093,"15.0":0.05093,"16.0":0.09167,"17.0":0.17315,"18.0":2.78062},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01813,"4.2-4.3":0.03107,"4.4":0,"4.4.3-4.4.4":0.15278},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02671,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.03092},H:{"0":0.21077},L:{"0":69.83658},S:{"2.5":0},R:{_:"0"},M:{"0":0.23499},Q:{"13.1":0}}; 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 aa8e33a5b3a458..7e8ac64bb9c7cf 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.01988,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00497,"69":0,"70":0,"71":0,"72":0.00497,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00994,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00497,"88":0,"89":0,"90":0,"91":0.00497,"92":0,"93":0.00497,"94":0,"95":0.00497,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00994,"102":0.02981,"103":0.81492,"104":0.18882,"105":0.02485,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00497,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.01491,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.01988,"68":0,"69":0,"70":0.00497,"71":0,"72":0,"73":0,"74":0,"75":0.00497,"76":0.03478,"77":0.00497,"78":0,"79":0.14907,"80":0.03478,"81":0.03478,"83":0.03975,"84":0,"85":0.00994,"86":0.0646,"87":0.00994,"88":0,"89":0.00994,"90":0.00497,"91":0.00497,"92":0.00994,"93":0.04472,"94":0.00994,"95":0.03478,"96":0.01491,"97":0.00497,"98":0.01988,"99":0.08447,"100":0.04472,"101":0.03478,"102":0.12919,"103":3.72675,"104":8.89451,"105":0.01988,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00497,"64":0.00497,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00497,"89":0.60622,"90":0.07454,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00497,"79":0,"80":0,"81":0,"83":0,"84":0.00497,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00994,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01988,"100":0,"101":0.01491,"102":0.00497,"103":1.17765,"104":3.60253,"105":0},E:{"4":0.00994,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00497,"14":0.07454,"15":0.01988,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.03975,"10.1":0,"11.1":0.03975,"12.1":0.00994,"13.1":0.04969,"14.1":0.08447,"15.1":0.01988,"15.2-15.3":0.0646,"15.4":0.0646,"15.5":0.30311,"15.6":0.78013,"16.0":0.00497},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01125,"6.0-6.1":0,"7.0-7.1":0.04312,"8.1-8.4":0,"9.0-9.2":0.00375,"9.3":0.35248,"10.0-10.2":0.00937,"10.3":0.06187,"11.0-11.2":0.00562,"11.3-11.4":0.01125,"12.0-12.1":0.03,"12.2-12.5":0.71433,"13.0-13.1":0.00562,"13.2":0,"13.3":0.01312,"13.4-13.7":0.045,"14.0-14.4":0.28873,"14.5-14.8":0.57934,"15.0-15.1":0.11624,"15.2-15.3":0.41997,"15.4":0.72933,"15.5":3.40102,"15.6":11.70671,"16.0":0.19499},P:{"4":0.23914,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.3261,"8.2":0,"9.2":0.01087,"10.1":0,"11.1-11.2":0.03261,"12.0":0.01087,"13.0":0.6848,"14.0":0.03261,"15.0":0.1087,"16.0":0.16305,"17.0":2.4131,"18.0":2.81529},I:{"0":0,"3":0,"4":0.04077,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.08155,"4.4":0,"4.4.3-4.4.4":1.48825},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02485,"5.5":0},J:{"7":0,"10":0.01509},N:{"10":0,"11":0},L:{"0":46.83263},S:{"2.5":0},R:{_:"0"},M:{"0":0.32702},Q:{"10.4":0},O:{"0":0.02516},H:{"0":0.09526}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.03595,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00514,"67":0.00514,"68":0.02054,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00514,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.01027,"85":0,"86":0,"87":0.01541,"88":0,"89":0,"90":0,"91":0.01027,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00514,"102":0,"103":0.06163,"104":0.74472,"105":0.25166,"106":0.02054,"107":0.01027,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00514,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.01027,"71":0,"72":0,"73":0.00514,"74":0,"75":0,"76":0.10786,"77":0.00514,"78":0,"79":0.15408,"80":0.03595,"81":0.05136,"83":0.04622,"84":0,"85":0.04622,"86":0.08731,"87":0.01027,"88":0.00514,"89":0.00514,"90":0,"91":0.01027,"92":0,"93":0.03595,"94":0.01027,"95":0.01027,"96":0.01027,"97":0,"98":0.01027,"99":0.03595,"100":0.02054,"101":0.03595,"102":0.03082,"103":0.5855,"104":3.19459,"105":9.98438,"106":0.13354,"107":0.00514,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01027,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00514,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00514,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.03082,"90":0.46224,"91":0.00514,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00514,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01027,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00514,"100":0,"101":0.00514,"102":0,"103":0.10786,"104":0.8269,"105":4.67376},E:{"4":0.00514,"5":0,"6":0,"7":0,"8":0.00514,"9":0,"10":0,"11":0,"12":0,"13":0.00514,"14":0.09245,"15":0.01027,_:"0","3.1":0,"3.2":0,"5.1":0.00514,"6.1":0,"7.1":0,"9.1":0.03595,"10.1":0,"11.1":0.00514,"12.1":0.00514,"13.1":0.10272,"14.1":0.09245,"15.1":0.02568,"15.2-15.3":0.01027,"15.4":0.12326,"15.5":0.11813,"15.6":1.05802,"16.0":0.12326,"16.1":0.01027},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01562,"6.0-6.1":0,"7.0-7.1":0.02604,"8.1-8.4":0,"9.0-9.2":0.00521,"9.3":0.25343,"10.0-10.2":0,"10.3":0.10068,"11.0-11.2":0.00521,"11.3-11.4":0.01562,"12.0-12.1":0.01562,"12.2-12.5":0.56935,"13.0-13.1":0.00521,"13.2":0,"13.3":0.00521,"13.4-13.7":0.02083,"14.0-14.4":0.09894,"14.5-14.8":0.38362,"15.0-15.1":0.07117,"15.2-15.3":0.38535,"15.4":0.8384,"15.5":0.73599,"15.6":10.42186,"16.0":3.04636,"16.1":0.0434},P:{"4":0.16122,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.21496,"8.2":0,"9.2":0.01075,"10.1":0,"11.1-11.2":0.04299,"12.0":0,"13.0":0.5159,"14.0":0.0215,"15.0":0.08598,"16.0":0.16122,"17.0":0.37618,"18.0":5.073},I:{"0":0,"3":0,"4":0.07108,"2.1":0,"2.2":0,"2.3":0,"4.1":0.19547,"4.2-4.3":0.08885,"4.4":0,"4.4.3-4.4.4":1.06619},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00514,"11":0.01541,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.01459},O:{"0":0.01946},H:{"0":0.14275},L:{"0":46.54742},S:{"2.5":0},R:{_:"0"},M:{"0":0.41344},Q:{"13.1":0}}; 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 e22c01d867a30c..e68a9a3e5de4e5 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.009,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.009,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.003,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.003,"79":0.003,"80":0.003,"81":0.003,"82":0.003,"83":0,"84":0.003,"85":0,"86":0,"87":0,"88":0,"89":0.003,"90":0,"91":0.009,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.003,"98":0.003,"99":0.006,"100":0.006,"101":0.006,"102":0.021,"103":0.615,"104":0.204,"105":0.015,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.003,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.003,"57":0,"58":0.003,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.003,"70":0.003,"71":0.003,"72":0.003,"73":0.003,"74":0.009,"75":0,"76":0.003,"77":0.003,"78":0.006,"79":0.009,"80":0.009,"81":0.015,"83":0.012,"84":0.021,"85":0.027,"86":0.024,"87":0.027,"88":0.003,"89":0.012,"90":0.003,"91":0.006,"92":0.009,"93":0.003,"94":0.012,"95":0.012,"96":0.015,"97":0.015,"98":0.009,"99":0.015,"100":0.018,"101":0.024,"102":0.045,"103":1.239,"104":4.026,"105":0.027,"106":0.009,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.003,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.003,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.003,"56":0,"57":0,"58":0.003,"60":0.003,"62":0,"63":0.162,"64":0.156,"65":0,"66":0,"67":0,"68":0.003,"69":0.003,"70":0.003,"71":0.003,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.003,"86":0,"87":0,"88":0.003,"89":0.141,"90":0.027,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.003,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.009,"79":0,"80":0,"81":0,"83":0,"84":0.003,"85":0,"86":0,"87":0,"88":0,"89":0.003,"90":0,"91":0,"92":0.003,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.003,"102":0.003,"103":0.081,"104":0.255,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.003,"14":0.003,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.003,"14.1":0.006,"15.1":0.003,"15.2-15.3":0,"15.4":0.009,"15.5":0.021,"15.6":0.036,"16.0":0},G:{"8":0.0006,"3.2":0.0003,"4.0-4.1":0,"4.2-4.3":0.0003,"5.0-5.1":0.0039,"6.0-6.1":0.0006,"7.0-7.1":0.04768,"8.1-8.4":0.0009,"9.0-9.2":0.0018,"9.3":0.02549,"10.0-10.2":0.0021,"10.3":0.02279,"11.0-11.2":0.0066,"11.3-11.4":0.0039,"12.0-12.1":0.0045,"12.2-12.5":0.2063,"13.0-13.1":0.0033,"13.2":0.0048,"13.3":0.0069,"13.4-13.7":0.03238,"14.0-14.4":0.07556,"14.5-14.8":0.12534,"15.0-15.1":0.05937,"15.2-15.3":0.12054,"15.4":0.2036,"15.5":0.66777,"15.6":1.33193,"16.0":0.03778},P:{"4":0.30711,"5.0-5.4":0.01024,"6.2-6.4":0.02047,"7.2-7.4":0.20474,"8.2":0,"9.2":0.02047,"10.1":0,"11.1-11.2":0.05118,"12.0":0.02047,"13.0":0.06142,"14.0":0.06142,"15.0":0.03071,"16.0":0.09213,"17.0":0.48114,"18.0":0.40948},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00283,"4.2-4.3":0.00989,"4.4":0,"4.4.3-4.4.4":0.16529},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0033,"9":0,"10":0,"11":0.0297,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":81.248},S:{"2.5":0.007},R:{_:"0"},M:{"0":0.119},Q:{"10.4":0.007},O:{"0":2.037},H:{"0":2.03453}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00607,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00303,"48":0,"49":0,"50":0,"51":0,"52":0.01213,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00303,"69":0,"70":0,"71":0,"72":0.00303,"73":0,"74":0,"75":0,"76":0,"77":0.00303,"78":0.00607,"79":0.00303,"80":0.0091,"81":0.00303,"82":0.00303,"83":0.00303,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00303,"90":0,"91":0.00607,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00303,"98":0.00303,"99":0.00303,"100":0.00303,"101":0.00303,"102":0.0091,"103":0.02123,"104":0.61267,"105":0.24567,"106":0.01517,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00303,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00303,"49":0.00303,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00303,"56":0.00303,"57":0,"58":0.00303,"59":0,"60":0,"61":0,"62":0,"63":0.00303,"64":0.00303,"65":0.00303,"66":0,"67":0,"68":0,"69":0.00303,"70":0.00607,"71":0.00303,"72":0.00303,"73":0.00303,"74":0.01213,"75":0.00303,"76":0.00303,"77":0.00303,"78":0.00607,"79":0.0091,"80":0.01213,"81":0.01517,"83":0.03033,"84":0.05156,"85":0.0455,"86":0.05763,"87":0.04246,"88":0.00607,"89":0.0091,"90":0.00303,"91":0.00607,"92":0.0091,"93":0.00303,"94":0.01213,"95":0.0091,"96":0.0091,"97":0.01517,"98":0.00607,"99":0.01517,"100":0.01517,"101":0.0182,"102":0.02426,"103":0.11829,"104":1.06155,"105":4.22497,"106":0.07279,"107":0.00607,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00303,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00303,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00303,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00303,"55":0,"56":0,"57":0,"58":0.00607,"60":0.00303,"62":0,"63":0.04853,"64":0.2669,"65":0.0182,"66":0,"67":0,"68":0.00303,"69":0.00303,"70":0.00303,"71":0.00607,"72":0.00607,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00303,"86":0,"87":0,"88":0,"89":0.00607,"90":0.15165,"91":0.0091,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00303,"13":0,"14":0.00303,"15":0,"16":0,"17":0,"18":0.01213,"79":0,"80":0,"81":0,"83":0,"84":0.00303,"85":0.00303,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00303,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00303,"104":0.04853,"105":0.27904},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00303,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00303,"14.1":0.00607,"15.1":0,"15.2-15.3":0.00303,"15.4":0.00607,"15.5":0.01213,"15.6":0.04246,"16.0":0.01213,"16.1":0},G:{"8":0,"3.2":0.00062,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00249,"6.0-6.1":0,"7.0-7.1":0.05732,"8.1-8.4":0.00062,"9.0-9.2":0.00218,"9.3":0.02087,"10.0-10.2":0.00125,"10.3":0.02212,"11.0-11.2":0.00498,"11.3-11.4":0.00405,"12.0-12.1":0.00405,"12.2-12.5":0.22212,"13.0-13.1":0.00249,"13.2":0.00374,"13.3":0.00623,"13.4-13.7":0.03178,"14.0-14.4":0.06605,"14.5-14.8":0.10187,"15.0-15.1":0.05981,"15.2-15.3":0.09938,"15.4":0.18786,"15.5":0.29284,"15.6":1.44926,"16.0":0.3754,"16.1":0.00748},P:{"4":0.27472,"5.0-5.4":0.01017,"6.2-6.4":0.02035,"7.2-7.4":0.11192,"8.2":0,"9.2":0.02035,"10.1":0,"11.1-11.2":0.02035,"12.0":0.01017,"13.0":0.0407,"14.0":0.03052,"15.0":0.02035,"16.0":0.06105,"17.0":0.17297,"18.0":0.62066},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00313,"4.2-4.3":0.01096,"4.4":0,"4.4.3-4.4.4":0.19411},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00324,"9":0.00324,"10":0,"11":0.04206,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":1.88109},H:{"0":2.14367},L:{"0":81.49452},S:{"2.5":0.00697},R:{_:"0"},M:{"0":0.11147},Q:{"13.1":0}}; 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 53af34180a705d..d422bda2e362af 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00696,"49":0,"50":0,"51":0,"52":0.02088,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00696,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02784,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00696,"85":0,"86":0,"87":0.09047,"88":0.00696,"89":0,"90":0.00696,"91":0.06263,"92":0,"93":0,"94":0.24357,"95":0.00696,"96":0,"97":0,"98":0.00696,"99":0.00696,"100":0.00696,"101":0.01392,"102":0.06263,"103":1.63537,"104":0.3062,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0348,"50":0,"51":0,"52":0,"53":0.00696,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.06263,"65":0,"66":0.02088,"67":0.0348,"68":0,"69":0.01392,"70":0,"71":0,"72":0,"73":0,"74":0.02784,"75":0.02784,"76":0.04175,"77":0.02784,"78":0.37579,"79":0.52888,"80":0.00696,"81":0.01392,"83":0.22965,"84":0.01392,"85":0.01392,"86":0.02088,"87":0.05567,"88":0.00696,"89":0.02784,"90":0.01392,"91":0.0348,"92":0.02088,"93":0.04175,"94":0.00696,"95":0.02088,"96":0.0348,"97":0.05567,"98":0.0348,"99":0.07655,"100":0.14614,"101":0.10439,"102":0.29924,"103":9.25547,"104":21.12057,"105":0.04871,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00696,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00696,"87":0,"88":0.00696,"89":0.43146,"90":0.04175,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00696,"79":0,"80":0,"81":0,"83":0,"84":0.02784,"85":0,"86":0.00696,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01392,"93":0,"94":0,"95":0,"96":0.01392,"97":0.01392,"98":0.00696,"99":0.02088,"100":0.01392,"101":0.02784,"102":0.06959,"103":2.29647,"104":5.54632,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00696,"12":0,"13":0.01392,"14":0.09047,"15":0.02784,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.02088,"12.1":0.0348,"13.1":0.17398,"14.1":0.25052,"15.1":0.05567,"15.2-15.3":0.06263,"15.4":0.18093,"15.5":0.66111,"15.6":1.28742,"16.0":0.00696},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.01533,"9.0-9.2":0,"9.3":0.06132,"10.0-10.2":0.01095,"10.3":0.14017,"11.0-11.2":0.01752,"11.3-11.4":0.05694,"12.0-12.1":0.0219,"12.2-12.5":0.54752,"13.0-13.1":0.01971,"13.2":0.00438,"13.3":0.03942,"13.4-13.7":0.1774,"14.0-14.4":0.40079,"14.5-14.8":1.12133,"15.0-15.1":0.41393,"15.2-15.3":0.59133,"15.4":0.85633,"15.5":5.25623,"15.6":11.97545,"16.0":0.1555},P:{"4":0.09255,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03085,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01028,"12.0":0.01028,"13.0":0.02057,"14.0":0.03085,"15.0":0.01028,"16.0":0.04113,"17.0":0.9461,"18.0":1.50142},I:{"0":0,"3":0,"4":0.06277,"2.1":0,"2.2":0.00942,"2.3":0,"4.1":0.02511,"4.2-4.3":0.01883,"4.4":0,"4.4.3-4.4.4":0.11299},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00696,"9":0,"10":0,"11":0.10439,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":24.3815},S:{"2.5":0.00304},R:{_:"0"},M:{"0":0.23112},Q:{"10.4":0},O:{"0":0.01825},H:{"0":0.08349}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00701,"49":0,"50":0,"51":0,"52":0.02102,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00701,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.04203,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.09807,"88":0,"89":0,"90":0.00701,"91":0.04904,"92":0,"93":0,"94":0.18914,"95":0,"96":0,"97":0,"98":0,"99":0.00701,"100":0.00701,"101":0.00701,"102":0.04904,"103":0.09807,"104":1.40801,"105":0.51137,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00701,"48":0,"49":0.02802,"50":0,"51":0,"52":0,"53":0.00701,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.04904,"65":0.00701,"66":0.02102,"67":0.01401,"68":0,"69":0.00701,"70":0,"71":0,"72":0.00701,"73":0,"74":0.02802,"75":0.02802,"76":0.03503,"77":0.02802,"78":0.40629,"79":0.5604,"80":0.00701,"81":0.02102,"83":0.22416,"84":0.01401,"85":0.01401,"86":0.03503,"87":0.04904,"88":0.00701,"89":0.02102,"90":0.01401,"91":0.01401,"92":0.02102,"93":0.04203,"94":0.02102,"95":0.01401,"96":0.05604,"97":0.03503,"98":0.02802,"99":0.07706,"100":0.07005,"101":0.06305,"102":0.1401,"103":0.68649,"104":6.54267,"105":23.2566,"106":0.32924,"107":0.00701,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.04904,"90":0.50436,"91":0.02102,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00701,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00701,"86":0.00701,"87":0,"88":0,"89":0,"90":0,"91":0.00701,"92":0.01401,"93":0,"94":0.00701,"95":0,"96":0.00701,"97":0.00701,"98":0.00701,"99":0.00701,"100":0.01401,"101":0.02802,"102":0.04904,"103":0.09107,"104":1.24689,"105":6.8579},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00701,"12":0,"13":0.01401,"14":0.09807,"15":0.03503,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00701,"10.1":0,"11.1":0.01401,"12.1":0.03503,"13.1":0.18213,"14.1":0.26619,"15.1":0.06305,"15.2-15.3":0.05604,"15.4":0.1401,"15.5":0.35025,"15.6":1.68821,"16.0":0.20315,"16.1":0.01401},G:{"8":0.0023,"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.02072,"9.0-9.2":0,"9.3":0.06677,"10.0-10.2":0.00921,"10.3":0.12893,"11.0-11.2":0.02072,"11.3-11.4":0.05065,"12.0-12.1":0.02993,"12.2-12.5":0.46967,"13.0-13.1":0.01151,"13.2":0.0046,"13.3":0.02993,"13.4-13.7":0.11051,"14.0-14.4":0.37528,"14.5-14.8":0.96006,"15.0-15.1":0.29009,"15.2-15.3":0.41441,"15.4":0.55485,"15.5":1.55636,"15.6":13.85986,"16.0":3.57778,"16.1":0.04374},P:{"4":0.08167,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09188,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01021,"12.0":0.01021,"13.0":0.02042,"14.0":0.03063,"15.0":0.01021,"16.0":0.03063,"17.0":0.10209,"18.0":2.22548},I:{"0":0,"3":0,"4":0.01939,"2.1":0,"2.2":0.01385,"2.3":0,"4.1":0.00831,"4.2-4.3":0.01939,"4.4":0,"4.4.3-4.4.4":0.10804},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00701,"9":0,"10":0,"11":0.11208,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.01198},H:{"0":0.09641},L:{"0":22.88131},S:{"2.5":0},R:{_:"0"},M:{"0":0.20067},Q:{"13.1":0}}; 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 952c7ac1050050..bb8bb0fdd06ac8 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.03291,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.01097,"42":0.00366,"43":0,"44":0,"45":0,"46":0,"47":0.00731,"48":0.00366,"49":0.00731,"50":0.00366,"51":0,"52":0.00731,"53":0,"54":0,"55":0,"56":0,"57":0.00366,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00366,"69":0,"70":0.00366,"71":0,"72":0.00731,"73":0,"74":0.00366,"75":0,"76":0.08411,"77":0,"78":0.00366,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.04754,"92":0,"93":0.00366,"94":0.00366,"95":0,"96":0.00731,"97":0,"98":0.01463,"99":0.03291,"100":0.00731,"101":0.01829,"102":0.09143,"103":1.70051,"104":0.25233,"105":0.00366,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00366,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00366,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00366,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00366,"60":0.02926,"61":0,"62":0,"63":0,"64":0.00366,"65":0.02194,"66":0,"67":0,"68":0.00366,"69":0.00366,"70":0.00731,"71":0,"72":0.00731,"73":0,"74":0.00731,"75":0.00731,"76":0,"77":0,"78":0,"79":0.00366,"80":0.00366,"81":0.01097,"83":0.00366,"84":0,"85":0,"86":0.08411,"87":0.01463,"88":0.01097,"89":0,"90":0.00366,"91":0.00366,"92":0.00366,"93":0.00731,"94":0.00366,"95":0.00366,"96":0.00731,"97":0.00731,"98":0.01463,"99":0.01097,"100":0.02194,"101":0.01463,"102":0.03291,"103":1.62005,"104":4.01539,"105":0.0256,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.00366,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00366,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.09508,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00366,"58":0.02194,"60":0.09874,"62":0,"63":0.28159,"64":0.09508,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00731,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.02194,"80":0,"81":0,"82":0.00366,"83":0,"84":0,"85":0.04388,"86":0.00731,"87":0.00731,"88":0.00731,"89":0.60706,"90":0.03291,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00366},B:{"12":0.00731,"13":0.00366,"14":0.00731,"15":0.00366,"16":0,"17":0.00366,"18":0.01097,"79":0,"80":0,"81":0,"83":0,"84":0.00366,"85":0,"86":0,"87":0,"88":0,"89":0.00366,"90":0.00366,"91":0,"92":0.01463,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00366,"99":0,"100":0.00366,"101":0.00366,"102":0.01097,"103":0.40593,"104":0.89597,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.01463,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00366,"12.1":0,"13.1":0.00366,"14.1":0.00366,"15.1":0.00366,"15.2-15.3":0.00366,"15.4":0.00366,"15.5":0.04754,"15.6":0.03657,"16.0":0.00366},G:{"8":0.00158,"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.00053,"9.3":0.0384,"10.0-10.2":0.00263,"10.3":0.28669,"11.0-11.2":0.01315,"11.3-11.4":0.00421,"12.0-12.1":0.07154,"12.2-12.5":0.57758,"13.0-13.1":0.02052,"13.2":0.00631,"13.3":0.02735,"13.4-13.7":0.04945,"14.0-14.4":0.43976,"14.5-14.8":0.32298,"15.0-15.1":0.24092,"15.2-15.3":0.32193,"15.4":0.25618,"15.5":0.90846,"15.6":1.52707,"16.0":0.14203},P:{"4":0.02043,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.08173,"8.2":0,"9.2":0.02043,"10.1":0.01022,"11.1-11.2":0.17368,"12.0":0,"13.0":0.04087,"14.0":0.03065,"15.0":0.04087,"16.0":0.1226,"17.0":0.40866,"18.0":0.38823},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00303,"4.2-4.3":0.00455,"4.4":0,"4.4.3-4.4.4":0.28436},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03291,"5.5":0},J:{"7":0,"10":0.01903},N:{"10":0,"11":0},L:{"0":74.78126},S:{"2.5":0.00634},R:{_:"0"},M:{"0":0.1776},Q:{"10.4":0.03806},O:{"0":0.83728},H:{"0":3.66914}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00287,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00287,"42":0,"43":0.00287,"44":0,"45":0,"46":0,"47":0.00287,"48":0.00287,"49":0,"50":0,"51":0,"52":0.00287,"53":0,"54":0,"55":0,"56":0.00287,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00287,"69":0.00287,"70":0,"71":0,"72":0.00574,"73":0,"74":0,"75":0,"76":0.00574,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00287,"87":0,"88":0,"89":0,"90":0,"91":0.00861,"92":0,"93":0,"94":0,"95":0,"96":0.00287,"97":0.00287,"98":0.06312,"99":0.00287,"100":0.00574,"101":0.00287,"102":0.00861,"103":0.05451,"104":0.73446,"105":0.18935,"106":0.00287,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02869,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00287,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00574,"30":0,"31":0,"32":0.00287,"33":0.00861,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00287,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00287,"50":0.00287,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00287,"63":0,"64":0.00287,"65":0,"66":0,"67":0,"68":0.00287,"69":0.00287,"70":0.00574,"71":0,"72":0,"73":0,"74":0,"75":0.00287,"76":0,"77":0,"78":0.00287,"79":0.00287,"80":0.00574,"81":0.03156,"83":0.00287,"84":0,"85":0,"86":0.06312,"87":0.00287,"88":0.00574,"89":0.00287,"90":0.00287,"91":0.00574,"92":0.00574,"93":0.00287,"94":0.00287,"95":0.00861,"96":0.00287,"97":0.00287,"98":0.00287,"99":0.00287,"100":0.00861,"101":0.04017,"102":0.01148,"103":0.09468,"104":0.83488,"105":2.47882,"106":0.03156,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00287,"29":0,"30":0.00287,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00574,"38":0,"39":0,"40":0,"41":0,"42":0.00287,"43":0,"44":0,"45":0,"46":0.00861,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00287,"56":0,"57":0.00287,"58":0.00574,"60":0.10615,"62":0,"63":0.10902,"64":0.13771,"65":0.00574,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.01435,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00287,"80":0,"81":0,"82":0,"83":0,"84":0.00287,"85":0,"86":0,"87":0,"88":0.00287,"89":0.00287,"90":0.16353,"91":0.01721,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00287},B:{"12":0.00574,"13":0.00287,"14":0,"15":0,"16":0,"17":0.00287,"18":0.00861,"79":0,"80":0,"81":0,"83":0,"84":0.00287,"85":0.00287,"86":0,"87":0,"88":0,"89":0.00287,"90":0.00287,"91":0,"92":0.00861,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00287,"101":0,"102":0.00287,"103":0.01148,"104":0.13484,"105":0.95825},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00287,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00574,"14.1":0.00287,"15.1":0.00287,"15.2-15.3":0,"15.4":0,"15.5":0.00574,"15.6":0.0373,"16.0":0.01435,"16.1":0},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.00686,"8.1-8.4":0,"9.0-9.2":0.00125,"9.3":0.04302,"10.0-10.2":0.00374,"10.3":0.35098,"11.0-11.2":0.01621,"11.3-11.4":0.00436,"12.0-12.1":0.10847,"12.2-12.5":0.68825,"13.0-13.1":0.01683,"13.2":0.00436,"13.3":0.06608,"13.4-13.7":0.08291,"14.0-14.4":0.64773,"14.5-14.8":0.29425,"15.0-15.1":0.19825,"15.2-15.3":0.35223,"15.4":0.20261,"15.5":0.47816,"15.6":1.71751,"16.0":0.83164,"16.1":0.01559},P:{"4":0.05018,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09033,"8.2":0,"9.2":0.03011,"10.1":0,"11.1-11.2":0.14051,"12.0":0.01004,"13.0":0.02007,"14.0":0.04014,"15.0":0.01004,"16.0":0.10036,"17.0":0.2208,"18.0":0.64232},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00261,"4.2-4.3":0.0047,"4.4":0,"4.4.3-4.4.4":0.24711},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03156,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00713},O:{"0":0.599},H:{"0":3.43635},L:{"0":79.51948},S:{"2.5":0.00713},R:{_:"0"},M:{"0":0.12123},Q:{"13.1":0.09983}}; 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 975e91f215d9a1..5dd2b6ee02850b 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00358,"52":0.05006,"53":0,"54":0,"55":0,"56":0.00358,"57":0,"58":0,"59":0.00358,"60":0.00358,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00715,"67":0,"68":0.02146,"69":0,"70":0,"71":0,"72":0.00358,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01073,"79":0,"80":0.01073,"81":0.00358,"82":0,"83":0.00358,"84":0.00715,"85":0.00358,"86":0,"87":0.01073,"88":0.00358,"89":0.00358,"90":0.00715,"91":0.03934,"92":0.00358,"93":0,"94":0.00715,"95":0.00715,"96":0.00715,"97":0.00715,"98":0.00715,"99":0.0143,"100":0.01788,"101":0.0143,"102":0.07152,"103":1.35888,"104":0.26462,"105":0.00358,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00358,"34":0,"35":0,"36":0,"37":0,"38":0.00358,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.05364,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00715,"59":0,"60":0,"61":0,"62":0,"63":0.00358,"64":0,"65":0,"66":0,"67":0.00358,"68":0,"69":0.02503,"70":0.00358,"71":0.00358,"72":0,"73":0.00358,"74":0.00358,"75":0.00358,"76":0.00358,"77":0.00358,"78":0.00358,"79":0.06079,"80":0.00358,"81":0.02503,"83":0.00715,"84":0.01073,"85":0.01073,"86":0.02146,"87":0.02146,"88":0.00715,"89":0.0143,"90":0.00358,"91":0.00715,"92":0.02146,"93":0.00715,"94":0.00358,"95":0.01073,"96":0.02503,"97":0.02146,"98":0.01073,"99":0.0143,"100":0.01788,"101":0.02861,"102":0.06437,"103":2.19209,"104":5.58929,"105":0.01788,"106":0.00358,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00715,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00358,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00358,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00358,"64":0.00358,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00358,"71":0.00358,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00358,"83":0,"84":0,"85":0.00715,"86":0.00358,"87":0.00358,"88":0.00715,"89":0.40766,"90":0.04649,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00358,"16":0,"17":0,"18":0.00358,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00358,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00358,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00358,"101":0.00358,"102":0.00358,"103":0.22886,"104":0.67229,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00358,"14":0.01073,"15":0.00358,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00358,"10.1":0,"11.1":0.00358,"12.1":0.00358,"13.1":0.0143,"14.1":0.03218,"15.1":0.00358,"15.2-15.3":0.00715,"15.4":0.0143,"15.5":0.06794,"15.6":0.1037,"16.0":0.00358},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00245,"6.0-6.1":0,"7.0-7.1":0.00367,"8.1-8.4":0.00122,"9.0-9.2":0,"9.3":0.02203,"10.0-10.2":0.00245,"10.3":0.05263,"11.0-11.2":0.02693,"11.3-11.4":0.00979,"12.0-12.1":0.01469,"12.2-12.5":0.30479,"13.0-13.1":0.00734,"13.2":0.00612,"13.3":0.02326,"13.4-13.7":0.10527,"14.0-14.4":0.26807,"14.5-14.8":0.79931,"15.0-15.1":0.18483,"15.2-15.3":0.31213,"15.4":0.51288,"15.5":2.87164,"15.6":6.53525,"16.0":0.16647},P:{"4":0.09231,"5.0-5.4":0,"6.2-6.4":0.02051,"7.2-7.4":0.03077,"8.2":0,"9.2":0.01026,"10.1":0,"11.1-11.2":0.06154,"12.0":0.02051,"13.0":0.06154,"14.0":0.08206,"15.0":0.05128,"16.0":0.12308,"17.0":1.07698,"18.0":1.44624},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02729,"4.2-4.3":0.03411,"4.4":0,"4.4.3-4.4.4":0.18079},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00358,"10":0,"11":0.0894,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":69.52514},S:{"2.5":0},R:{_:"0"},M:{"0":0.17987},Q:{"10.4":0},O:{"0":0.0257},H:{"0":0.24935}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.05619,"53":0,"54":0,"55":0,"56":0.00375,"57":0,"58":0,"59":0,"60":0.00375,"61":0,"62":0,"63":0,"64":0,"65":0.00375,"66":0.00749,"67":0,"68":0.02997,"69":0.00375,"70":0,"71":0,"72":0.00375,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00749,"79":0,"80":0.00749,"81":0.00375,"82":0.00375,"83":0.00749,"84":0.00749,"85":0.00375,"86":0,"87":0.00749,"88":0.00749,"89":0.00375,"90":0.00375,"91":0.04121,"92":0,"93":0,"94":0.00749,"95":0.01124,"96":0.00375,"97":0.00749,"98":0.00749,"99":0.01124,"100":0.00749,"101":0.00749,"102":0.02997,"103":0.08616,"104":1.36354,"105":0.38958,"106":0.00375,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00375,"34":0,"35":0,"36":0,"37":0,"38":0.00375,"39":0,"40":0,"41":0,"42":0,"43":0.00375,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.05994,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00375,"59":0.00375,"60":0,"61":0,"62":0,"63":0.00375,"64":0,"65":0,"66":0,"67":0.00375,"68":0,"69":0.01498,"70":0.00375,"71":0.00375,"72":0,"73":0.00375,"74":0.00375,"75":0.00375,"76":0.00375,"77":0.00375,"78":0.00375,"79":0.03371,"80":0.00749,"81":0.02997,"83":0.01498,"84":0.02248,"85":0.02248,"86":0.04121,"87":0.02248,"88":0.00749,"89":0.01124,"90":0.00375,"91":0.00375,"92":0.04495,"93":0.00749,"94":0.00375,"95":0.01124,"96":0.01873,"97":0.01873,"98":0.01124,"99":0.01124,"100":0.01873,"101":0.02248,"102":0.03746,"103":0.14984,"104":2.07528,"105":6.43937,"106":0.07867,"107":0.00375,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00749,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00375,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00375,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00375,"64":0.00749,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00749,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00375,"83":0,"84":0,"85":0.01124,"86":0,"87":0.00375,"88":0.00375,"89":0.03371,"90":0.44952,"91":0.01498,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00375,"16":0,"17":0,"18":0.00375,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00375,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00375,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00375,"102":0.00375,"103":0.01124,"104":0.14984,"105":0.79415},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00375,"14":0.01124,"15":0.00375,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00375,"10.1":0,"11.1":0.00375,"12.1":0.00749,"13.1":0.01873,"14.1":0.03371,"15.1":0.00375,"15.2-15.3":0.00749,"15.4":0.01498,"15.5":0.03371,"15.6":0.13111,"16.0":0.02622,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0013,"6.0-6.1":0,"7.0-7.1":0.00389,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02592,"10.0-10.2":0.00259,"10.3":0.06091,"11.0-11.2":0.01944,"11.3-11.4":0.00907,"12.0-12.1":0.01296,"12.2-12.5":0.30324,"13.0-13.1":0.00907,"13.2":0.00389,"13.3":0.02592,"13.4-13.7":0.10367,"14.0-14.4":0.25011,"14.5-14.8":0.71534,"15.0-15.1":0.14514,"15.2-15.3":0.26177,"15.4":0.35378,"15.5":0.98749,"15.6":7.20916,"16.0":2.17713,"16.1":0.0324},P:{"4":0.08205,"5.0-5.4":0,"6.2-6.4":0.01026,"7.2-7.4":0.01026,"8.2":0,"9.2":0,"10.1":0.01026,"11.1-11.2":0.05128,"12.0":0.01026,"13.0":0.05128,"14.0":0.07179,"15.0":0.03077,"16.0":0.10256,"17.0":0.23588,"18.0":2.26651},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01739,"4.2-4.3":0.04173,"4.4":0,"4.4.3-4.4.4":0.18085},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00387,"9":0,"10":0,"11":0.11601,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.03127},H:{"0":0.2842},L:{"0":67.68041},S:{"2.5":0},R:{_:"0"},M:{"0":0.19387},Q:{"13.1":0}}; 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 ba86321bc48bdf..f180f65af5fbd9 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00335,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00335,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00335,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00335,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00335,"101":0.00335,"102":0.01339,"103":0.29128,"104":0.05692,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00335,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00335,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01339,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00335,"56":0.00335,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00335,"65":0.0067,"66":0,"67":0,"68":0.00335,"69":0.00335,"70":0,"71":0,"72":0,"73":0.01004,"74":0.0067,"75":0,"76":0.00335,"77":0,"78":0.00335,"79":0.03013,"80":0.00335,"81":0.04018,"83":0.00335,"84":0.01004,"85":0.00335,"86":0.0067,"87":0.02678,"88":0.02344,"89":0.00335,"90":0.0067,"91":0.0067,"92":0.02009,"93":0.01004,"94":0.44528,"95":0.01004,"96":0.02009,"97":0.00335,"98":0.01674,"99":0.01004,"100":0.05022,"101":0.02344,"102":0.05692,"103":1.6807,"104":5.22288,"105":0.02009,"106":0.00335,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0067,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00335,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00335,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00335,"72":0.00335,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00335,"81":0,"82":0.00335,"83":0,"84":0.0067,"85":0.00335,"86":0.01339,"87":0.01004,"88":0.01674,"89":0.0837,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.0067,"15":0,"16":0,"17":0,"18":0.00335,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00335,"88":0,"89":0.00335,"90":0,"91":0,"92":0.00335,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00335,"99":0.00335,"100":0,"101":0.01004,"102":0.0067,"103":0.29128,"104":0.81356,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0067,"14":0.04687,"15":0.01339,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00335,"11.1":0.00335,"12.1":0.00335,"13.1":0.03013,"14.1":0.12722,"15.1":0.02678,"15.2-15.3":0.01674,"15.4":0.07031,"15.5":0.22766,"15.6":0.32476,"16.0":0.0067},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00495,"6.0-6.1":0,"7.0-7.1":0.01237,"8.1-8.4":0.00495,"9.0-9.2":0,"9.3":0.07419,"10.0-10.2":0.00495,"10.3":0.09892,"11.0-11.2":0.00989,"11.3-11.4":0.01484,"12.0-12.1":0.0272,"12.2-12.5":0.47977,"13.0-13.1":0.01484,"13.2":0.00989,"13.3":0.05441,"13.4-13.7":0.16817,"14.0-14.4":0.57128,"14.5-14.8":1.2118,"15.0-15.1":0.53171,"15.2-15.3":0.75181,"15.4":1.21427,"15.5":6.16039,"15.6":13.01076,"16.0":0.28193},P:{"4":0.113,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09245,"8.2":0,"9.2":0.01027,"10.1":0,"11.1-11.2":0.12327,"12.0":0.03082,"13.0":0.18491,"14.0":0.113,"15.0":0.03082,"16.0":0.20545,"17.0":1.356,"18.0":1.79772},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02523,"4.4":0,"4.4.3-4.4.4":0.16821},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05022,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":54.87246},S:{"2.5":0},R:{_:"0"},M:{"0":0.22617},Q:{"10.4":0},O:{"0":2.18851},H:{"0":0.57939}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00744,"35":0,"36":0.00372,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00372,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00372,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00372,"100":0,"101":0,"102":0.00372,"103":0.0186,"104":0.27521,"105":0.09669,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00372,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00372,"48":0,"49":0.00744,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00744,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00372,"66":0,"67":0,"68":0.00372,"69":0.00372,"70":0.00744,"71":0,"72":0,"73":0.00372,"74":0.00372,"75":0,"76":0.00744,"77":0.00372,"78":0,"79":0.03719,"80":0.00372,"81":0.07438,"83":0.00372,"84":0.00372,"85":0.02231,"86":0.00744,"87":0.01116,"88":0.0186,"89":0,"90":0.00372,"91":0.00372,"92":0.0186,"93":0.01116,"94":0.00372,"95":0.01116,"96":0.04835,"97":0.00744,"98":0.01116,"99":0.01488,"100":0.01488,"101":0.02975,"102":0.05207,"103":0.23802,"104":1.7814,"105":7.49007,"106":0.14504,"107":0.00372,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00372,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00372,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00372,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00372,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00744,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00372,"85":0.01116,"86":0.01488,"87":0.00372,"88":0.00744,"89":0.03719,"90":0.09298,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00744,"15":0,"16":0,"17":0,"18":0.00744,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00372,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00372,"99":0.00372,"100":0,"101":0.00744,"102":0.00372,"103":0.04091,"104":0.17479,"105":1.07851},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01116,"14":0.05579,"15":0.01116,_:"0","3.1":0,"3.2":0,"5.1":0.00372,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00372,"12.1":0.01488,"13.1":0.04835,"14.1":0.14876,"15.1":0.03347,"15.2-15.3":0.03347,"15.4":0.05207,"15.5":0.16364,"15.6":0.47231,"16.0":0.06694,"16.1":0.00372},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00532,"6.0-6.1":0,"7.0-7.1":0.01862,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08248,"10.0-10.2":0.0745,"10.3":0.16762,"11.0-11.2":0.01064,"11.3-11.4":0.00798,"12.0-12.1":0.02129,"12.2-12.5":0.49489,"13.0-13.1":0.02129,"13.2":0.02129,"13.3":0.03459,"13.4-13.7":0.16762,"14.0-14.4":0.67848,"14.5-14.8":1.01905,"15.0-15.1":0.40443,"15.2-15.3":0.58003,"15.4":0.84877,"15.5":2.34408,"15.6":13.5297,"16.0":5.29215,"16.1":0.06386},P:{"4":0.11267,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0717,"8.2":0,"9.2":0.01024,"10.1":0,"11.1-11.2":0.12291,"12.0":0.03073,"13.0":0.13315,"14.0":0.08194,"15.0":0.03073,"16.0":0.1434,"17.0":0.23558,"18.0":2.81672},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01194,"4.4":0,"4.4.3-4.4.4":0.09153},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04091,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00628},O:{"0":2.22976},H:{"0":0.51139},L:{"0":51.15605},S:{"2.5":0},R:{_:"0"},M:{"0":0.23868},Q:{"13.1":0}}; 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 caabe65fb669b7..2689adb199b1d6 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00265,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00265,"47":0.00531,"48":0,"49":0,"50":0,"51":0,"52":0.00265,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00265,"66":0.00531,"67":0,"68":0.01592,"69":0,"70":0.00265,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00531,"89":0,"90":0,"91":0.01327,"92":0.00531,"93":0,"94":0,"95":0.00265,"96":0.00265,"97":0.00265,"98":0,"99":0.00265,"100":0.01858,"101":0.01062,"102":0.03716,"103":0.65554,"104":0.13005,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01062,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00796,"53":0,"54":0,"55":0.00265,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00265,"63":0.03981,"64":0.01327,"65":0,"66":0,"67":0,"68":0.00265,"69":0,"70":0,"71":0.00265,"72":0,"73":0.00265,"74":0,"75":0,"76":0,"77":0.00265,"78":0,"79":0.01062,"80":0.02123,"81":0.02123,"83":0.00531,"84":0,"85":0.00796,"86":0.00265,"87":0.00796,"88":0.00265,"89":0.00265,"90":0.03981,"91":0,"92":0.00265,"93":0.00796,"94":0.00265,"95":0.00265,"96":0.00796,"97":0.00531,"98":0.01062,"99":0.01327,"100":0.01062,"101":0.01592,"102":0.07431,"103":0.97667,"104":1.91619,"105":0.01327,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00265,"24":0.00531,"25":0,"26":0.01592,"27":0.00796,"28":0.00265,"29":0,"30":0.00531,"31":0,"32":0.00796,"33":0.00265,"34":0,"35":0,"36":0,"37":0.10351,"38":0.00265,"39":0,"40":0,"41":0,"42":0.00265,"43":0,"44":0,"45":0,"46":0,"47":0.00265,"48":0,"49":0.00265,"50":0.00531,"51":0.01062,"52":0,"53":0,"54":0.00531,"55":0,"56":0.00531,"57":0.00531,"58":0.01327,"60":0.20967,"62":0.00531,"63":0.34237,"64":0.16189,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00796,"80":0,"81":0.00531,"82":0.00265,"83":0,"84":0,"85":0.01062,"86":0.00265,"87":0.00531,"88":0,"89":0.33706,"90":0.01592,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00531},B:{"12":0.01327,"13":0.00265,"14":0.00265,"15":0.00796,"16":0,"17":0.00796,"18":0.01858,"79":0,"80":0,"81":0,"83":0,"84":0.00265,"85":0.00265,"86":0,"87":0,"88":0,"89":0.01327,"90":0.00796,"91":0,"92":0.01327,"93":0,"94":0,"95":0,"96":0.00265,"97":0,"98":0.00265,"99":0,"100":0.00265,"101":0.01062,"102":0.00796,"103":0.2017,"104":0.44853,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.04246,"13":0,"14":0.00265,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00531,"12.1":0,"13.1":0.00265,"14.1":0.01858,"15.1":0.02389,"15.2-15.3":0,"15.4":0.00265,"15.5":0.01327,"15.6":0.02123,"16.0":0},G:{"8":0,"3.2":0.00069,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00243,"7.0-7.1":0.02809,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.16367,"10.0-10.2":0,"10.3":0.01942,"11.0-11.2":0.00208,"11.3-11.4":0.00867,"12.0-12.1":0.00694,"12.2-12.5":0.81628,"13.0-13.1":0.00694,"13.2":0.00139,"13.3":0.01422,"13.4-13.7":0.03156,"14.0-14.4":0.22748,"14.5-14.8":0.34676,"15.0-15.1":0.10333,"15.2-15.3":0.29821,"15.4":0.18448,"15.5":0.63111,"15.6":0.54996,"16.0":0.02427},P:{"4":0.52768,"5.0-5.4":0.0203,"6.2-6.4":0.01015,"7.2-7.4":0.53783,"8.2":0,"9.2":0.06089,"10.1":0,"11.1-11.2":0.05074,"12.0":0,"13.0":0.05074,"14.0":0.05074,"15.0":0.0203,"16.0":0.04059,"17.0":0.6596,"18.0":0.15222},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00021,"4.2-4.3":0.00027,"4.4":0,"4.4.3-4.4.4":0.07075},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02389,"5.5":0},J:{"7":0,"10":0.00735},N:{"10":0,"11":0},L:{"0":71.50454},S:{"2.5":0.01469},R:{_:"0"},M:{"0":0.14692},Q:{"10.4":0},O:{"0":0.57299},H:{"0":11.29446}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00242,"39":0,"40":0,"41":0,"42":0,"43":0.00242,"44":0,"45":0,"46":0,"47":0.00485,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00242,"67":0,"68":0.0097,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00242,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01697,"89":0,"90":0,"91":0.01454,"92":0,"93":0,"94":0,"95":0,"96":0.00242,"97":0,"98":0.00485,"99":0,"100":0,"101":0,"102":0.01212,"103":0.03878,"104":0.40723,"105":0.14544,"106":0.00242,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00242,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00242,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00242,"51":0,"52":0,"53":0,"54":0,"55":0.02424,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00242,"63":0,"64":0.05333,"65":0,"66":0,"67":0,"68":0,"69":0.00242,"70":0,"71":0.00242,"72":0,"73":0.0097,"74":0.00242,"75":0,"76":0,"77":0,"78":0,"79":0.0097,"80":0.00727,"81":0.03636,"83":0,"84":0,"85":0.00242,"86":0.00242,"87":0,"88":0.00242,"89":0.00242,"90":0.01939,"91":0.00242,"92":0,"93":0.00485,"94":0.00485,"95":0.00485,"96":0.00242,"97":0.00242,"98":0.00485,"99":0.02666,"100":0.02666,"101":0.00485,"102":0.0097,"103":0.06545,"104":0.61327,"105":1.70407,"106":0.02666,"107":0,"108":0,"109":0},F:{"9":0,"11":0.00727,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00485,"24":0.00485,"25":0,"26":0.00242,"27":0.02424,"28":0.01212,"29":0,"30":0.00485,"31":0,"32":0.00727,"33":0,"34":0,"35":0,"36":0,"37":0.12362,"38":0.00242,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00242,"47":0,"48":0,"49":0,"50":0,"51":0.02909,"52":0,"53":0,"54":0.00485,"55":0,"56":0.00242,"57":0.00242,"58":0.00485,"60":0.22786,"62":0.00242,"63":0.22301,"64":0.2424,"65":0.01212,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00485,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.0097,"80":0,"81":0,"82":0.00242,"83":0,"84":0,"85":0,"86":0,"87":0.00242,"88":0,"89":0.01212,"90":0.10423,"91":0.00485,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00242},B:{"12":0.01697,"13":0.00242,"14":0.00242,"15":0.00242,"16":0,"17":0.00485,"18":0.03394,"79":0,"80":0,"81":0,"83":0,"84":0.00485,"85":0,"86":0,"87":0,"88":0,"89":0.02182,"90":0.00242,"91":0,"92":0.01697,"93":0,"94":0,"95":0,"96":0,"97":0.00242,"98":0.00242,"99":0,"100":0.00242,"101":0.01939,"102":0.00242,"103":0.0097,"104":0.08969,"105":0.4848},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.02424,"13":0,"14":0.00485,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.0097,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00242,"12.1":0,"13.1":0.00727,"14.1":0.01212,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00242,"15.6":0.02666,"16.0":0.00242,"16.1":0},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.02209,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.10575,"10.0-10.2":0.00072,"10.3":0.01087,"11.0-11.2":0,"11.3-11.4":0.29046,"12.0-12.1":0.07388,"12.2-12.5":1.03002,"13.0-13.1":0.00072,"13.2":0.02028,"13.3":0.01231,"13.4-13.7":0.02934,"14.0-14.4":0.16696,"14.5-14.8":0.15899,"15.0-15.1":0.11155,"15.2-15.3":0.381,"15.4":0.09235,"15.5":0.31183,"15.6":0.62764,"16.0":0.14596,"16.1":0.00905},P:{"4":0.25812,"5.0-5.4":0.02065,"6.2-6.4":0,"7.2-7.4":0.11357,"8.2":0,"9.2":0.14455,"10.1":0,"11.1-11.2":0.02065,"12.0":0,"13.0":0.02065,"14.0":0.02065,"15.0":0.03097,"16.0":0.06195,"17.0":0.19617,"18.0":0.27877},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00125,"4.2-4.3":0.00143,"4.4":0,"4.4.3-4.4.4":0.1764},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02666,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.23486},H:{"0":15.71488},L:{"0":69.05243},S:{"2.5":0.01515},R:{_:"0"},M:{"0":0.11364},Q:{"13.1":0}}; 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 65c4ec184a808a..f5ef164e142253 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00371,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00371,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00741,"69":0,"70":0,"71":0,"72":0.00741,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00371,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00371,"85":0.00741,"86":0,"87":0,"88":0.00371,"89":0,"90":0.00371,"91":0.05558,"92":0,"93":0.00741,"94":0,"95":0.00371,"96":0.00371,"97":0,"98":0,"99":0.00371,"100":0.00741,"101":0.01112,"102":0.05928,"103":0.63726,"104":0.08892,"105":0.00371,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01482,"41":0,"42":0.00371,"43":0,"44":0.00371,"45":0.00371,"46":0,"47":0.00371,"48":0,"49":0,"50":0.00371,"51":0.02594,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00371,"60":0,"61":0.00741,"62":0.00371,"63":0.01482,"64":0.00371,"65":0.00741,"66":0.00741,"67":0,"68":0,"69":0.00371,"70":0.01112,"71":0.00371,"72":0.00371,"73":0,"74":0.05928,"75":0.00741,"76":0.00371,"77":0.00371,"78":0.01112,"79":0.01112,"80":0.00741,"81":0.02594,"83":0.00371,"84":0.00741,"85":0.06299,"86":0.03705,"87":0.02223,"88":0.02964,"89":0.00741,"90":0.00741,"91":0.01853,"92":0.01112,"93":0.00741,"94":0.02964,"95":0.01853,"96":0.01482,"97":0.02223,"98":0.01482,"99":1.4042,"100":0.03705,"101":0.04817,"102":0.10004,"103":1.6302,"104":4.13478,"105":0.01482,"106":0.02964,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00371,"25":0,"26":0,"27":0,"28":0.00741,"29":0,"30":0,"31":0,"32":0.00371,"33":0,"34":0,"35":0.00371,"36":0.00371,"37":0.00371,"38":0,"39":0,"40":0,"41":0,"42":0.00371,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00371,"57":0,"58":0.01482,"60":0.09633,"62":0,"63":0.21489,"64":0.11856,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00371,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01482,"80":0,"81":0,"82":0.00371,"83":0,"84":0.00371,"85":0.02964,"86":0.00741,"87":0.00741,"88":0.02594,"89":0.4409,"90":0.04446,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00371},B:{"12":0.01853,"13":0.00371,"14":0.01112,"15":0.04817,"16":0,"17":0.00371,"18":0.02964,"79":0,"80":0,"81":0,"83":0,"84":0.00371,"85":0.00371,"86":0,"87":0,"88":0,"89":0,"90":0.00371,"91":0,"92":0.01482,"93":0.00371,"94":0,"95":0,"96":0,"97":0.00371,"98":0,"99":0.00371,"100":0.00371,"101":0.00371,"102":0.01112,"103":0.20378,"104":0.52241,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00371,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00371,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00371,"12.1":0,"13.1":0.01112,"14.1":0.00741,"15.1":0.00741,"15.2-15.3":0.01112,"15.4":0.00741,"15.5":0.03705,"15.6":0.05928,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00333,"6.0-6.1":0,"7.0-7.1":0.00667,"8.1-8.4":0.00167,"9.0-9.2":0,"9.3":0.02834,"10.0-10.2":0,"10.3":0.025,"11.0-11.2":0.0125,"11.3-11.4":0.00417,"12.0-12.1":0.00833,"12.2-12.5":1.29769,"13.0-13.1":0.0225,"13.2":0.01917,"13.3":0.29671,"13.4-13.7":0.19086,"14.0-14.4":0.34922,"14.5-14.8":0.9243,"15.0-15.1":0.33338,"15.2-15.3":0.49674,"15.4":0.75928,"15.5":1.54023,"15.6":1.8061,"16.0":0.20503},P:{"4":0.07941,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.08934,"8.2":0,"9.2":0.00993,"10.1":0.06949,"11.1-11.2":0.00993,"12.0":0,"13.0":0.00993,"14.0":0.01985,"15.0":0.01985,"16.0":0.01985,"17.0":0.26802,"18.0":0.17868},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00152,"4.2-4.3":0.0019,"4.4":0,"4.4.3-4.4.4":0.08622},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01853,"5.5":0},J:{"7":0,"10":0.0063},N:{"10":0,"11":0},L:{"0":73.50066},S:{"2.5":0.03148},R:{_:"0"},M:{"0":0.10702},Q:{"10.4":0.0063},O:{"0":0.66727},H:{"0":3.39107}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00321,"48":0,"49":0,"50":0,"51":0,"52":0.00641,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00962,"69":0,"70":0,"71":0,"72":0.00321,"73":0,"74":0,"75":0.00641,"76":0,"77":0,"78":0,"79":0,"80":0.00321,"81":0,"82":0,"83":0,"84":0.01924,"85":0.00321,"86":0,"87":0.00321,"88":0.00641,"89":0,"90":0,"91":0.00962,"92":0,"93":0.00321,"94":0,"95":0,"96":0.00962,"97":0,"98":0.00321,"99":0.00321,"100":0.00641,"101":0.00321,"102":0.00962,"103":0.03207,"104":0.41691,"105":0.12507,"106":0.00641,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00321,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00321,"43":0.00641,"44":0.00321,"45":0,"46":0,"47":0.00321,"48":0,"49":0,"50":0.00321,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.04169,"66":0,"67":0.00321,"68":0.00321,"69":0.00321,"70":0.00321,"71":0.00321,"72":0.00321,"73":0,"74":0.07055,"75":0.00641,"76":0,"77":0.01283,"78":0.29184,"79":0.00641,"80":0.01283,"81":0.02245,"83":0.00321,"84":0.01283,"85":0.00641,"86":0.01604,"87":0.01283,"88":0.01604,"89":0.00321,"90":0.00641,"91":0.03207,"92":0.01283,"93":0.00641,"94":0.01604,"95":0.01604,"96":0.01604,"97":0.00962,"98":0.02245,"99":0.2309,"100":0.01924,"101":0.02566,"102":0.02886,"103":0.10904,"104":1.05831,"105":3.94782,"106":0.06735,"107":0.02566,"108":0.00321,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00321,"25":0,"26":0,"27":0,"28":0.00641,"29":0,"30":0.00321,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00321,"38":0,"39":0,"40":0,"41":0,"42":0.00321,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00321,"52":0,"53":0,"54":0,"55":0,"56":0.00321,"57":0.01283,"58":0.00641,"60":0.06735,"62":0,"63":0.12187,"64":0.16997,"65":0.00962,"66":0,"67":0,"68":0.00321,"69":0,"70":0,"71":0.00641,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00641,"80":0,"81":0,"82":0.00321,"83":0,"84":0.00321,"85":0.01604,"86":0,"87":0,"88":0,"89":0.01283,"90":0.22128,"91":0.01604,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00321},B:{"12":0.00321,"13":0.00321,"14":0.00321,"15":0.07697,"16":0,"17":0.00962,"18":0.02245,"79":0,"80":0,"81":0,"83":0,"84":0.00321,"85":0.00321,"86":0,"87":0.00321,"88":0,"89":0.01283,"90":0.00321,"91":0,"92":0.00641,"93":0,"94":0,"95":0,"96":0.00321,"97":0,"98":0,"99":0.00641,"100":0,"101":0.00321,"102":0.00321,"103":0.00962,"104":0.11545,"105":0.40088},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00321,"14":0.00321,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00641,"14.1":0.00641,"15.1":0.00641,"15.2-15.3":0.00641,"15.4":0.00641,"15.5":0.02245,"15.6":0.05131,"16.0":0.01604,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0028,"6.0-6.1":0.00466,"7.0-7.1":0.0056,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03544,"10.0-10.2":0.00093,"10.3":0.01865,"11.0-11.2":0.0056,"11.3-11.4":0.00373,"12.0-12.1":0.01212,"12.2-12.5":1.52934,"13.0-13.1":0.02052,"13.2":0.02145,"13.3":0.29468,"13.4-13.7":0.28629,"14.0-14.4":0.33478,"14.5-14.8":1.02205,"15.0-15.1":0.2667,"15.2-15.3":0.622,"15.4":1.03417,"15.5":0.8915,"15.6":1.87065,"16.0":0.86072,"16.1":0.02984},P:{"4":0.05114,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05114,"8.2":0,"9.2":0.01023,"10.1":0.26594,"11.1-11.2":0.01023,"12.0":0,"13.0":0.01023,"14.0":0.01023,"15.0":0.01023,"16.0":0.02046,"17.0":0.18411,"18.0":0.26594},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00082,"4.2-4.3":0.0033,"4.4":0,"4.4.3-4.4.4":0.05795},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03528,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00679},O:{"0":0.54344},H:{"0":4.55327},L:{"0":73.5972},S:{"2.5":0.03397},R:{_:"0"},M:{"0":0.12227},Q:{"13.1":0.1019}}; 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 2819a8fd2897e4..f13f935b916cc9 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00298,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00298,"103":0.06861,"104":0.0179,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00298,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00597,"78":0,"79":0,"80":0,"81":0,"83":0.00895,"84":0,"85":0,"86":0,"87":0.00298,"88":0,"89":0,"90":0,"91":0.00298,"92":0.00298,"93":0,"94":0,"95":0,"96":0.00298,"97":0.00298,"98":0.00298,"99":0,"100":0.00597,"101":0.02386,"102":0.0179,"103":0.49816,"104":1.14249,"105":0.00298,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01492,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00298,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00298,"102":0.00298,"103":0.14915,"104":0.50413,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00298,"14":0.01193,"15":0.01193,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00298,"13.1":0.06563,"14.1":0.12827,"15.1":0.02685,"15.2-15.3":0.03878,"15.4":0.20284,"15.5":1.55414,"15.6":3.84509,"16.0":0.02386},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.07648,"10.0-10.2":0,"10.3":0.05099,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.0085,"12.2-12.5":0.17846,"13.0-13.1":0,"13.2":0,"13.3":0.017,"13.4-13.7":0,"14.0-14.4":0.05949,"14.5-14.8":0.43339,"15.0-15.1":0.3994,"15.2-15.3":0.8158,"15.4":1.56362,"15.5":19.84266,"15.6":60.87915,"16.0":0.61185},P:{"4":0.02056,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01028,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.04113,"12.0":0,"13.0":0.03085,"14.0":0.02056,"15.0":0.01028,"16.0":0.05141,"17.0":0.33932,"18.0":0.51412},I:{"0":0,"3":0,"4":0.04974,"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.07958},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01193,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":4.86743},S:{"2.5":0},R:{_:"0"},M:{"0":0.02105},Q:{"10.4":0},O:{"0":0},H:{"0":0.00664}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00305,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.0061,"104":0.03968,"105":0.01221,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00305,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.0061,"78":0,"79":0,"80":0,"81":0,"83":0.00305,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01526,"92":0,"93":0.00305,"94":0.00305,"95":0.00305,"96":0.0061,"97":0.00916,"98":0.0061,"99":0.00305,"100":0.00305,"101":0,"102":0.00916,"103":0.03662,"104":0.37845,"105":1.28184,"106":0.02136,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00305,"87":0,"88":0,"89":0.00305,"90":0.03662,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00305,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00305,"104":0.0763,"105":0.40286},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01831,"15":0.00916,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00305,"12.1":0.0061,"13.1":0.0824,"14.1":0.12208,"15.1":0.02136,"15.2-15.3":0.03357,"15.4":0.12513,"15.5":0.53105,"15.6":5.1121,"16.0":0.33572,"16.1":0.03662},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.02616,"10.0-10.2":0,"10.3":0.03487,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.01744,"12.2-12.5":0.13949,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.04359,"14.5-14.8":0.28771,"15.0-15.1":0.18309,"15.2-15.3":0.60157,"15.4":0.89799,"15.5":5.67564,"15.6":68.21233,"16.0":8.57885,"16.1":0.11334},P:{"4":0.0615,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0205,"12.0":0,"13.0":0.01025,"14.0":0.01025,"15.0":0,"16.0":0.03075,"17.0":0.03075,"18.0":0.87125},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01602,"4.4":0,"4.4.3-4.4.4":0.06943},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0061,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.00695},H:{"0":0.01316},L:{"0":4.60928},S:{"2.5":0},R:{_:"0"},M:{"0":0.0139},Q:{"13.1":0}}; 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 c45b2263aaca2e..a87a4f0d5996d5 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.0043,"49":0,"50":0,"51":0,"52":0.02152,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0043,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00861,"79":0,"80":0,"81":0,"82":0,"83":0.0043,"84":0.0043,"85":0,"86":0,"87":0,"88":0,"89":0.0043,"90":0,"91":0.0043,"92":0,"93":0,"94":0,"95":0.0043,"96":0,"97":0,"98":0.0043,"99":0.00861,"100":0.0043,"101":0.0043,"102":0.04733,"103":0.90363,"104":0.15491,"105":0.0043,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01291,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.01291,"48":0,"49":0.08606,"50":0.0043,"51":0,"52":0,"53":0.0043,"54":0,"55":0.00861,"56":0.0043,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.01291,"63":0,"64":0,"65":0.0043,"66":0.0043,"67":0,"68":0,"69":0.0043,"70":0.00861,"71":0.01291,"72":0.0043,"73":0.01291,"74":0,"75":0.01291,"76":0.0043,"77":0,"78":0.01291,"79":0.09897,"80":0.0043,"81":0.02152,"83":0.00861,"84":0.01291,"85":0.01721,"86":0.0043,"87":0.03012,"88":0.0043,"89":0.01291,"90":0.0043,"91":0.00861,"92":0.04303,"93":0.00861,"94":0.0043,"95":0.01291,"96":0.01291,"97":0.02582,"98":0.02152,"99":0.03012,"100":0.03442,"101":0.03442,"102":0.07315,"103":2.98628,"104":8.30479,"105":0.03442,"106":0.0043,"107":0.0043,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00861,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.0043,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.03012,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.0043,"55":0,"56":0.0043,"57":0,"58":0.0043,"60":0.02152,"62":0,"63":0.17642,"64":0.16351,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0043,"86":0,"87":0,"88":0.0043,"89":0.37436,"90":0.03012,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.0043,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.0043,"100":0,"101":0.0043,"102":0.0043,"103":0.2883,"104":0.83478,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0043,"12":0.02582,"13":0.03873,"14":0.06885,"15":0.03012,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.05594,"10.1":0,"11.1":0.0043,"12.1":0.02582,"13.1":0.07745,"14.1":0.15921,"15.1":0.07315,"15.2-15.3":0.03873,"15.4":0.142,"15.5":0.49485,"15.6":0.85199,"16.0":0.0043},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.00674,"7.0-7.1":0.03821,"8.1-8.4":0.08091,"9.0-9.2":0.02023,"9.3":0.34612,"10.0-10.2":0.00899,"10.3":0.43378,"11.0-11.2":0.01349,"11.3-11.4":0.00899,"12.0-12.1":0.08765,"12.2-12.5":1.02039,"13.0-13.1":0.03596,"13.2":0.03371,"13.3":0.02472,"13.4-13.7":0.11013,"14.0-14.4":0.34163,"14.5-14.8":0.88779,"15.0-15.1":0.49671,"15.2-15.3":0.64056,"15.4":1.21818,"15.5":4.85249,"15.6":11.66035,"16.0":0.09889},P:{"4":0.45335,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06326,"8.2":0,"9.2":0.01054,"10.1":0.01054,"11.1-11.2":0.02109,"12.0":0.01054,"13.0":0.04217,"14.0":0.02109,"15.0":0.02109,"16.0":0.09489,"17.0":0.79072,"18.0":1.00158},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01813,"4.4":0,"4.4.3-4.4.4":0.11781},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02152,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":50.91717},S:{"2.5":0},R:{_:"0"},M:{"0":0.17661},Q:{"10.4":0},O:{"0":1.40716},H:{"0":2.20596}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00431,"45":0,"46":0,"47":0,"48":0.00431,"49":0,"50":0,"51":0,"52":0.01724,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00431,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00431,"90":0,"91":0.00431,"92":0,"93":0,"94":0,"95":0.00431,"96":0,"97":0,"98":0,"99":0.00431,"100":0.00431,"101":0.00431,"102":0.00862,"103":0.0431,"104":0.69822,"105":0.24567,"106":0.00431,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01293,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00862,"48":0,"49":0.08189,"50":0.00431,"51":0,"52":0,"53":0.00431,"54":0,"55":0.00431,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.01293,"63":0,"64":0,"65":0.00431,"66":0,"67":0,"68":0.00431,"69":0.00431,"70":0.00862,"71":0.01724,"72":0.00862,"73":0.01293,"74":0,"75":0.00862,"76":0,"77":0,"78":0.00862,"79":0.11637,"80":0.00431,"81":0.02155,"83":0.01293,"84":0.00862,"85":0.01724,"86":0,"87":0.02155,"88":0.01293,"89":0.00862,"90":0,"91":0.00862,"92":0.04741,"93":0,"94":0.00431,"95":0.01293,"96":0.00862,"97":0.04741,"98":0.01724,"99":0.02155,"100":0.03017,"101":0.01724,"102":0.02586,"103":0.20688,"104":2.6722,"105":8.62862,"106":0.09482,"107":0.00431,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01293,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.02586,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00431,"55":0,"56":0,"57":0,"58":0.0862,"60":0.03017,"62":0,"63":0.02155,"64":0.31894,"65":0.01724,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00431,"86":0,"87":0,"88":0,"89":0.03879,"90":0.33618,"91":0.01724,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00431,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00431,"100":0,"101":0.00431,"102":0,"103":0.00862,"104":0.16378,"105":1.02578},E:{"4":0,"5":0,"6":0,"7":0.00862,"8":0,"9":0,"10":0,"11":0,"12":0.00431,"13":0.02155,"14":0.07327,"15":0.03879,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.06465,"10.1":0,"11.1":0.00431,"12.1":0.03448,"13.1":0.07758,"14.1":0.16809,"15.1":0.05603,"15.2-15.3":0.02586,"15.4":0.09913,"15.5":0.18533,"15.6":1.23266,"16.0":0.08189,"16.1":0.00862},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.00229,"7.0-7.1":0.0664,"8.1-8.4":0.02976,"9.0-9.2":0.01603,"9.3":0.27017,"10.0-10.2":0.00229,"10.3":0.49913,"11.0-11.2":0.01145,"11.3-11.4":0.00687,"12.0-12.1":0.06182,"12.2-12.5":1.05549,"13.0-13.1":0.03205,"13.2":0.01832,"13.3":0.0435,"13.4-13.7":0.09845,"14.0-14.4":0.36404,"14.5-14.8":0.71664,"15.0-15.1":0.48081,"15.2-15.3":0.64566,"15.4":0.97536,"15.5":1.2959,"15.6":10.94874,"16.0":4.5883,"16.1":0.0229},P:{"4":0.47865,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05318,"8.2":0,"9.2":0,"10.1":0.01064,"11.1-11.2":0.02127,"12.0":0.01064,"13.0":0.04255,"14.0":0.01064,"15.0":0.02127,"16.0":0.05318,"17.0":0.13828,"18.0":1.52105},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00304,"4.2-4.3":0.00608,"4.4":0,"4.4.3-4.4.4":0.06536},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01724,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":1.48509},H:{"0":2.17093},L:{"0":51.26196},S:{"2.5":0},R:{_:"0"},M:{"0":0.15363},Q:{"13.1":0}}; 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 09e7a6d29386db..ae8d9cf2c74719 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02759,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00394,"69":0,"70":0,"71":0,"72":0.00394,"73":0.00394,"74":0,"75":0.00394,"76":0,"77":0,"78":0.00394,"79":0,"80":0,"81":0,"82":0,"83":0.00394,"84":0,"85":0,"86":0.00394,"87":0,"88":0.00394,"89":0.00394,"90":0,"91":0.01182,"92":0,"93":0.00394,"94":0,"95":0.00394,"96":0.00394,"97":0.00394,"98":0.00394,"99":0.01971,"100":0.01576,"101":0.01576,"102":0.03941,"103":0.80002,"104":0.17735,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00788,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00394,"39":0,"40":0,"41":0.00394,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03153,"50":0.00788,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00394,"61":0,"62":0,"63":0.00394,"64":0.00394,"65":0.00394,"66":0,"67":0,"68":0.00788,"69":0.01971,"70":0.00788,"71":0,"72":0.00788,"73":0.00394,"74":0.00394,"75":0.00394,"76":0.00394,"77":0.00394,"78":0.00394,"79":0.04335,"80":0.00394,"81":0.01182,"83":0.00788,"84":0.01576,"85":0.01576,"86":0.01182,"87":0.03547,"88":0.00788,"89":0.01576,"90":0.01182,"91":0.10247,"92":0.01971,"93":0.01576,"94":0.01182,"95":0.01971,"96":0.02365,"97":0.02759,"98":0.02759,"99":0.01971,"100":0.03547,"101":0.04335,"102":0.14976,"103":2.54983,"104":7.96476,"105":0.02759,"106":0.00394,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01576,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00394,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.02365,"64":0.02365,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00788,"86":0,"87":0,"88":0.00788,"89":0.62268,"90":0.05123,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00394,"18":0.00788,"79":0,"80":0,"81":0,"83":0,"84":0.00394,"85":0,"86":0.00394,"87":0,"88":0,"89":0.00394,"90":0,"91":0.00394,"92":0.00394,"93":0,"94":0,"95":0,"96":0.00394,"97":0,"98":0.00394,"99":0.00394,"100":0.00394,"101":0.00788,"102":0.00394,"103":0.21676,"104":0.59903,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00394,"14":0.04729,"15":0.00394,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00394,"12.1":0.00394,"13.1":0.01182,"14.1":0.02365,"15.1":0.00394,"15.2-15.3":0.00394,"15.4":0.01182,"15.5":0.04335,"15.6":0.09064,"16.0":0},G:{"8":0,"3.2":0.00086,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00172,"6.0-6.1":0.00172,"7.0-7.1":0.00947,"8.1-8.4":0,"9.0-9.2":0.00474,"9.3":0.01808,"10.0-10.2":0.00043,"10.3":0.0155,"11.0-11.2":0.00603,"11.3-11.4":0.00258,"12.0-12.1":0.0043,"12.2-12.5":0.16401,"13.0-13.1":0.00387,"13.2":0.00258,"13.3":0.00775,"13.4-13.7":0.04219,"14.0-14.4":0.23891,"14.5-14.8":0.22212,"15.0-15.1":0.06758,"15.2-15.3":0.09169,"15.4":0.13474,"15.5":0.94315,"15.6":2.27759,"16.0":0.04089},P:{"4":0.39485,"5.0-5.4":0.01012,"6.2-6.4":0.02025,"7.2-7.4":0.51634,"8.2":0,"9.2":0.02025,"10.1":0.01012,"11.1-11.2":0.13162,"12.0":0.05062,"13.0":0.10124,"14.0":0.09112,"15.0":0.07087,"16.0":0.25311,"17.0":1.16429,"18.0":1.10355},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00752,"4.2-4.3":0.04134,"4.4":0,"4.4.3-4.4.4":0.24055},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02759,"5.5":0},J:{"7":0,"10":0.01818},N:{"10":0,"11":0},L:{"0":73.35397},S:{"2.5":0},R:{_:"0"},M:{"0":0.12118},Q:{"10.4":0},O:{"0":0.19389},H:{"0":0.43022}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.04848,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00404,"69":0,"70":0,"71":0,"72":0.00404,"73":0.00404,"74":0,"75":0.00404,"76":0,"77":0,"78":0.01212,"79":0.00404,"80":0,"81":0,"82":0.00808,"83":0.00404,"84":0,"85":0,"86":0.00404,"87":0,"88":0.00404,"89":0.00404,"90":0,"91":0.00808,"92":0.00404,"93":0.00404,"94":0.00404,"95":0.00404,"96":0.00404,"97":0.00404,"98":0.00404,"99":0.01616,"100":0.01212,"101":0.01212,"102":0.01616,"103":0.05252,"104":0.84032,"105":0.2626,"106":0.00404,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00404,"22":0,"23":0.00404,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00808,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01212,"50":0.00808,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00404,"65":0.00404,"66":0,"67":0,"68":0.00808,"69":0.01212,"70":0.01212,"71":0.00404,"72":0.00404,"73":0.00404,"74":0.00404,"75":0.00404,"76":0.00808,"77":0.00404,"78":0.00404,"79":0.04444,"80":0.01212,"81":0.01616,"83":0.01616,"84":0.00808,"85":0.0202,"86":0.0202,"87":0.03232,"88":0.01212,"89":0.01212,"90":0.00808,"91":0.07272,"92":0.01616,"93":0.01616,"94":0.0202,"95":0.0202,"96":0.02424,"97":0.02828,"98":0.02828,"99":0.02424,"100":0.03636,"101":0.03232,"102":0.1212,"103":0.17372,"104":2.23412,"105":8.75468,"106":0.17372,"107":0.00404,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01212,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00404,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01212,"64":0.0404,"65":0.00404,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00404,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00404,"86":0,"87":0,"88":0.00404,"89":0.0606,"90":0.57772,"91":0.0202,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00808,"16":0,"17":0,"18":0.01616,"79":0,"80":0,"81":0,"83":0,"84":0.00404,"85":0,"86":0.00404,"87":0,"88":0,"89":0.00404,"90":0,"91":0.00404,"92":0.00404,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00404,"99":0,"100":0,"101":0.00808,"102":0,"103":0.0202,"104":0.14544,"105":0.79184},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0606,"15":0.00404,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00404,"12.1":0,"13.1":0.01212,"14.1":0.02828,"15.1":0.00404,"15.2-15.3":0.00404,"15.4":0.01212,"15.5":0.02828,"15.6":0.08484,"16.0":0.01616,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00178,"6.0-6.1":0.00089,"7.0-7.1":0.01021,"8.1-8.4":0,"9.0-9.2":0.0111,"9.3":0.01687,"10.0-10.2":0.00888,"10.3":0.01288,"11.0-11.2":0.00311,"11.3-11.4":0.004,"12.0-12.1":0.00488,"12.2-12.5":0.17762,"13.0-13.1":0.00266,"13.2":0.00222,"13.3":0.00755,"13.4-13.7":0.03819,"14.0-14.4":0.25356,"14.5-14.8":0.19716,"15.0-15.1":0.05062,"15.2-15.3":0.05773,"15.4":0.08704,"15.5":0.32372,"15.6":2.27669,"16.0":0.79575,"16.1":0.00888},P:{"4":0.36652,"5.0-5.4":0.02036,"6.2-6.4":0.03054,"7.2-7.4":0.51923,"8.2":0,"9.2":0.03054,"10.1":0.04072,"11.1-11.2":0.12217,"12.0":0.05091,"13.0":0.13235,"14.0":0.08145,"15.0":0.06109,"16.0":0.18326,"17.0":0.49887,"18.0":1.69005},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00969,"4.2-4.3":0.02584,"4.4":0,"4.4.3-4.4.4":0.197},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02424,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.17284},H:{"0":0.38934},L:{"0":72.80792},S:{"2.5":0},R:{_:"0"},M:{"0":0.12516},Q:{"13.1":0}}; 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 5d69b16d4b3131..e7cad0d1204988 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00478,"48":0,"49":0,"50":0,"51":0,"52":0.00955,"53":0,"54":0.00478,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00478,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01433,"79":0.00478,"80":0.00478,"81":0.00478,"82":0.00478,"83":0.00478,"84":0.00478,"85":0,"86":0,"87":0,"88":0.00478,"89":0.00478,"90":0.00478,"91":0.03344,"92":0,"93":0,"94":0.00478,"95":0.00478,"96":0.00478,"97":0.00478,"98":0.00478,"99":0.00955,"100":0.00478,"101":0.00955,"102":0.03344,"103":0.72133,"104":0.14809,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00478,"39":0,"40":0,"41":0.00478,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00478,"48":0,"49":0.00955,"50":0,"51":0.00478,"52":0,"53":0,"54":0,"55":0.00478,"56":0,"57":0,"58":0.00478,"59":0,"60":0,"61":0,"62":0,"63":0.00478,"64":0,"65":0.00478,"66":0,"67":0.00478,"68":0.00478,"69":0.00955,"70":0.00478,"71":0.00478,"72":0.00478,"73":0.00478,"74":0.00955,"75":0.00955,"76":0.00955,"77":0.00478,"78":0.00955,"79":0.04777,"80":0.01433,"81":0.01911,"83":0.02389,"84":0.04777,"85":0.03822,"86":0.05255,"87":0.07166,"88":0.01433,"89":0.02389,"90":0.02389,"91":0.32961,"92":0.01911,"93":0.01911,"94":0.01911,"95":0.00955,"96":0.03344,"97":0.02866,"98":0.02389,"99":0.03344,"100":0.05732,"101":0.05255,"102":0.14331,"103":4.16554,"104":11.60811,"105":0.0621,"106":0.00478,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00955,"64":0.00955,"65":0,"66":0,"67":0,"68":0.00478,"69":0,"70":0,"71":0.00478,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00478,"83":0,"84":0,"85":0.00955,"86":0.00478,"87":0.00478,"88":0.01433,"89":1.47609,"90":0.05255,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.02389,"16":0,"17":0,"18":0.00955,"79":0,"80":0,"81":0,"83":0,"84":0.00478,"85":0.00478,"86":0.00478,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00478,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00478,"101":0.03344,"102":0.00478,"103":0.46337,"104":1.38533,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00478,"14":0.01433,"15":0.00478,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01433,"10.1":0,"11.1":0,"12.1":0.00478,"13.1":0.02389,"14.1":0.02866,"15.1":0.00478,"15.2-15.3":0.00478,"15.4":0.01911,"15.5":0.07166,"15.6":0.12898,"16.0":0.00478},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00119,"6.0-6.1":0,"7.0-7.1":0.00237,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04386,"10.0-10.2":0,"10.3":0.04149,"11.0-11.2":0.01423,"11.3-11.4":0.03201,"12.0-12.1":0.02134,"12.2-12.5":0.36987,"13.0-13.1":0.01185,"13.2":0.0083,"13.3":0.03556,"13.4-13.7":0.17427,"14.0-14.4":0.41374,"14.5-14.8":1.3645,"15.0-15.1":0.14463,"15.2-15.3":0.21695,"15.4":0.34854,"15.5":2.33779,"15.6":6.16812,"16.0":0.09484},P:{"4":0.10157,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.19298,"8.2":0,"9.2":0.01016,"10.1":0,"11.1-11.2":0.04063,"12.0":0.02031,"13.0":0.05079,"14.0":0.05079,"15.0":0.03047,"16.0":0.09141,"17.0":0.80241,"18.0":0.99539},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02005,"4.2-4.3":0.04678,"4.4":0,"4.4.3-4.4.4":0.20049},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00478,"9":0.00478,"10":0,"11":0.05255,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":59.57242},S:{"2.5":0},R:{_:"0"},M:{"0":0.1358},Q:{"10.4":0},O:{"0":0.08879},H:{"0":0.21757}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00492,"48":0,"49":0,"50":0,"51":0,"52":0.00983,"53":0,"54":0.00492,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00492,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01475,"79":0.00983,"80":0.00983,"81":0.00492,"82":0.00983,"83":0.00492,"84":0.00492,"85":0,"86":0,"87":0,"88":0.00492,"89":0,"90":0,"91":0.02458,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00492,"98":0.00492,"99":0.00492,"100":0.00492,"101":0.00492,"102":0.02458,"103":0.03932,"104":0.6537,"105":0.24084,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00492,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00492,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00492,"48":0,"49":0.00983,"50":0,"51":0.00983,"52":0,"53":0,"54":0,"55":0.00492,"56":0,"57":0,"58":0.00492,"59":0,"60":0,"61":0,"62":0,"63":0.00492,"64":0,"65":0.00492,"66":0,"67":0.00492,"68":0.00492,"69":0.00492,"70":0.00492,"71":0.00492,"72":0.00492,"73":0.00492,"74":0.00983,"75":0.00983,"76":0.01966,"77":0.00492,"78":0.00983,"79":0.04424,"80":0.01966,"81":0.01966,"83":0.04915,"84":0.09339,"85":0.07864,"86":0.10322,"87":0.0983,"88":0.00983,"89":0.01966,"90":0.02458,"91":0.36863,"92":0.01475,"93":0.03932,"94":0.01475,"95":0.00983,"96":0.02949,"97":0.03932,"98":0.01966,"99":0.02458,"100":0.0639,"101":0.02949,"102":0.07373,"103":0.25558,"104":3.11611,"105":12.88713,"106":0.34405,"107":0.00492,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.01475,"65":0,"66":0,"67":0,"68":0.00492,"69":0,"70":0.00492,"71":0.00492,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00492,"86":0.00492,"87":0,"88":0.00492,"89":0.17694,"90":1.42535,"91":0.05407,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00492,"13":0,"14":0,"15":0.02458,"16":0.00492,"17":0,"18":0.01475,"79":0,"80":0,"81":0,"83":0,"84":0.00492,"85":0.00492,"86":0.00492,"87":0.00492,"88":0,"89":0,"90":0,"91":0,"92":0.00492,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00492,"101":0.00983,"102":0.00492,"103":0.01475,"104":0.2949,"105":1.68585},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00492,"14":0.01966,"15":0.00492,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01966,"10.1":0,"11.1":0,"12.1":0.00492,"13.1":0.02458,"14.1":0.02949,"15.1":0.00492,"15.2-15.3":0.00492,"15.4":0.01966,"15.5":0.03932,"15.6":0.14254,"16.0":0.04424,"16.1":0.00492},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00133,"6.0-6.1":0,"7.0-7.1":0.00133,"8.1-8.4":0,"9.0-9.2":0.00133,"9.3":0.03866,"10.0-10.2":0.00133,"10.3":0.04266,"11.0-11.2":0.01733,"11.3-11.4":0.02933,"12.0-12.1":0.03199,"12.2-12.5":0.38659,"13.0-13.1":0.012,"13.2":0.01066,"13.3":0.03466,"13.4-13.7":0.17597,"14.0-14.4":0.42925,"14.5-14.8":1.37973,"15.0-15.1":0.14264,"15.2-15.3":0.1933,"15.4":0.27461,"15.5":0.74119,"15.6":7.04128,"16.0":2.06093,"16.1":0.02666},P:{"4":0.11336,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.18549,"8.2":0,"9.2":0.01031,"10.1":0,"11.1-11.2":0.04122,"12.0":0.01031,"13.0":0.05153,"14.0":0.03092,"15.0":0.02061,"16.0":0.06183,"17.0":0.2061,"18.0":1.59728},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.05372,"4.2-4.3":0.12087,"4.4":0,"4.4.3-4.4.4":0.38946},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00519,"9":0.01038,"10":0,"11":0.07782,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.09153},H:{"0":0.21664},L:{"0":57.2813},S:{"2.5":0},R:{_:"0"},M:{"0":0.13221},Q:{"13.1":0}}; 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 5a548b0471776e..ca25746d7648b0 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.01402,"49":0,"50":0,"51":0,"52":0.00467,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00467,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00467,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.02803,"92":0,"93":0,"94":0,"95":0.04205,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00934,"102":0.05606,"103":0.42982,"104":0.0841,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00467,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.08877,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00467,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00467,"65":0.00467,"66":0,"67":0,"68":0,"69":0.00467,"70":0,"71":0.00467,"72":0,"73":0,"74":0,"75":0.01869,"76":0.14483,"77":0.00934,"78":0.00467,"79":0.00467,"80":0,"81":0.00467,"83":0.01402,"84":0.00467,"85":0,"86":0.00467,"87":0.00934,"88":0.00467,"89":0.00467,"90":0.03738,"91":0.01402,"92":0.00934,"93":0.06074,"94":0.00934,"95":0.00467,"96":0.00934,"97":0.04672,"98":0.01869,"99":0.01402,"100":0.0327,"101":0.0327,"102":0.17286,"103":2.81722,"104":6.59219,"105":0.0327,"106":0.00467,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00467,"89":0.21024,"90":0.01402,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00467,"16":0.00934,"17":0.01402,"18":0.01869,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00467,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.02336,"102":0.00934,"103":0.88301,"104":2.69107,"105":0.00467},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00467,"13":0.01402,"14":0.05606,"15":0.01869,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00467,"10.1":0.00467,"11.1":0.02336,"12.1":0.05606,"13.1":0.2009,"14.1":0.2336,"15.1":0.07008,"15.2-15.3":0.06541,"15.4":0.20557,"15.5":0.7335,"15.6":1.32218,"16.0":0.01402},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.13047,"10.0-10.2":0,"10.3":0.1342,"11.0-11.2":0.01864,"11.3-11.4":0.02982,"12.0-12.1":0.02237,"12.2-12.5":0.64491,"13.0-13.1":0.01491,"13.2":0,"13.3":0.06337,"13.4-13.7":0.12302,"14.0-14.4":0.55545,"14.5-14.8":1.84527,"15.0-15.1":0.43243,"15.2-15.3":0.9916,"15.4":2.02421,"15.5":8.8834,"15.6":21.14422,"16.0":0.2013},P:{"4":0.05198,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.30148,"8.2":0,"9.2":0.03119,"10.1":0,"11.1-11.2":0.10396,"12.0":0.03119,"13.0":0.18713,"14.0":0.20792,"15.0":0.07277,"16.0":0.19752,"17.0":1.65294,"18.0":2.90045},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.66187},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06541,"5.5":0},J:{"7":0,"10":0.00533},N:{"10":0,"11":0},L:{"0":35.2161},S:{"2.5":0},R:{_:"0"},M:{"0":0.10123},Q:{"10.4":0},O:{"0":0.01066},H:{"0":0.05044}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.02824,"49":0,"50":0,"51":0,"52":0.00471,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00471,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01882,"92":0,"93":0,"94":0,"95":0.01882,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00471,"102":0.02353,"103":0.03765,"104":0.40472,"105":0.14118,"106":0.00471,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.10353,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00471,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00471,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00471,"72":0,"73":0,"74":0,"75":0.01412,"76":0.10824,"77":0.00941,"78":0.00471,"79":0.00471,"80":0,"81":0.00471,"83":0.01412,"84":0,"85":0,"86":0.00471,"87":0.01412,"88":0.00471,"89":0.00471,"90":0.02824,"91":0.01882,"92":0.00941,"93":0.06588,"94":0.00941,"95":0.00471,"96":0.00941,"97":0.03294,"98":0.01412,"99":0.00941,"100":0.01882,"101":0.02824,"102":0.05177,"103":0.45178,"104":2.39535,"105":7.20018,"106":0.12236,"107":0.00471,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.02353,"90":0.14118,"91":0.00471,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00471,"13":0.00471,"14":0,"15":0.00471,"16":0.01882,"17":0.01412,"18":0.01412,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00471,"100":0.00471,"101":0.00471,"102":0.00471,"103":0.05177,"104":0.70119,"105":3.07772},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01412,"14":0.05647,"15":0.02824,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00941,"12.1":0.06588,"13.1":0.13647,"14.1":0.22589,"15.1":0.06118,"15.2-15.3":0.09412,"15.4":0.12706,"15.5":0.34354,"15.6":1.92475,"16.0":0.13177,"16.1":0.00941},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.09286,"10.0-10.2":0,"10.3":0.13372,"11.0-11.2":0,"11.3-11.4":0.026,"12.0-12.1":0.01486,"12.2-12.5":0.66119,"13.0-13.1":0.02229,"13.2":0,"13.3":0.05943,"13.4-13.7":0.10401,"14.0-14.4":0.36031,"14.5-14.8":1.26667,"15.0-15.1":0.39003,"15.2-15.3":0.75406,"15.4":1.19981,"15.5":2.65592,"15.6":25.456,"16.0":3.33941,"16.1":0.052},P:{"4":0.07237,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.27912,"8.2":0,"9.2":0.02068,"10.1":0.06203,"11.1-11.2":0.09304,"12.0":0.02068,"13.0":0.15507,"14.0":0.15507,"15.0":0.04135,"16.0":0.14473,"17.0":0.23777,"18.0":3.93874},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.62884},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06118,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.01588},H:{"0":0.05012},L:{"0":35.61862},S:{"2.5":0},R:{_:"0"},M:{"0":0.10588},Q:{"13.1":0}}; 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 5d05b8223ca74b..260006bd001107 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,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00279,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00279,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00837,"87":0,"88":0,"89":0,"90":0,"91":0.00279,"92":0,"93":0,"94":0,"95":0.00279,"96":0,"97":0,"98":0,"99":0.01116,"100":0,"101":0.01116,"102":0.00837,"103":0.187,"104":0.02512,"105":0.00279,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00279,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.01116,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00558,"50":0,"51":0,"52":0,"53":0.00279,"54":0,"55":0,"56":0,"57":0,"58":0.00279,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00558,"66":0,"67":0.00279,"68":0,"69":0.00279,"70":0,"71":0,"72":0,"73":0.00279,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00279,"80":0,"81":0.00279,"83":0.00279,"84":0,"85":0,"86":0,"87":0.01116,"88":0.00837,"89":0,"90":0.00558,"91":0.00279,"92":0.00279,"93":0,"94":0.00279,"95":0.00279,"96":0.00837,"97":0,"98":0.02512,"99":0.01116,"100":0.01954,"101":0.02791,"102":0.05303,"103":1.39829,"104":4.16975,"105":0.06419,"106":0.00837,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.05024,"64":0.10048,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.04466,"90":0.01116,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00279,"13":0,"14":0,"15":0,"16":0.00279,"17":0,"18":0.00279,"79":0,"80":0,"81":0,"83":0,"84":0.00279,"85":0,"86":0,"87":0.00279,"88":0,"89":0,"90":0.00279,"91":0,"92":0.00279,"93":0,"94":0,"95":0,"96":0.00279,"97":0,"98":0,"99":0,"100":0,"101":0.00558,"102":0.00558,"103":0.12839,"104":0.25956,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00279,"14":0.00558,"15":0.01116,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01954,"14.1":0.04187,"15.1":0.00837,"15.2-15.3":0.00279,"15.4":0.02233,"15.5":0.05024,"15.6":0.08094,"16.0":0},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.00576,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01343,"10.0-10.2":0,"10.3":0.00863,"11.0-11.2":0.00672,"11.3-11.4":0.00672,"12.0-12.1":0.01343,"12.2-12.5":0.40292,"13.0-13.1":0.0048,"13.2":0.00192,"13.3":0.0259,"13.4-13.7":0.21777,"14.0-14.4":0.4835,"14.5-14.8":0.91808,"15.0-15.1":0.29164,"15.2-15.3":0.33481,"15.4":0.82982,"15.5":2.52112,"15.6":3.45647,"16.0":0.04701},P:{"4":0.22442,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09181,"8.2":0,"9.2":0.0408,"10.1":0.0102,"11.1-11.2":0.0204,"12.0":0.0204,"13.0":0.16321,"14.0":0.18361,"15.0":0.15301,"16.0":0.16321,"17.0":0.57124,"18.0":0.38763},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.05},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00279,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":77.37656},S:{"2.5":0},R:{_:"0"},M:{"0":0.05767},Q:{"10.4":0},O:{"0":1.88876},H:{"0":0.71663}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00292,"79":0.00292,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00583,"100":0,"101":0,"102":0,"103":0.00583,"104":0.18961,"105":0.05834,"106":0.00292,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00292,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00875,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00292,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00292,"66":0.00292,"67":0,"68":0,"69":0,"70":0,"71":0.00292,"72":0.00292,"73":0.00292,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00292,"80":0,"81":0.00583,"83":0,"84":0,"85":0,"86":0,"87":0.00875,"88":0.00292,"89":0.00292,"90":0.00583,"91":0.00292,"92":0.00292,"93":0.00292,"94":0.00292,"95":0.00875,"96":0.00583,"97":0.00583,"98":0.00875,"99":0.00292,"100":0.02334,"101":0.00583,"102":0.01167,"103":0.1721,"104":1.45558,"105":4.67595,"106":0.10793,"107":0.00583,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00292,"64":0.14585,"65":0.01167,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.05834,"91":0.00583,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00292,"13":0,"14":0.00292,"15":0,"16":0.00292,"17":0,"18":0.00583,"79":0,"80":0,"81":0,"83":0,"84":0.00292,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00583,"93":0.00292,"94":0.00292,"95":0.00292,"96":0.00583,"97":0,"98":0.00292,"99":0,"100":0.00292,"101":0.00875,"102":0.01167,"103":0.04959,"104":0.08751,"105":0.42297},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00583,"14":0.01167,"15":0.00583,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00292,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01167,"14.1":0.04667,"15.1":0.01167,"15.2-15.3":0.00292,"15.4":0.00583,"15.5":0.02625,"15.6":0.11376,"16.0":0.01167,"16.1":0},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.00691,"8.1-8.4":0.00395,"9.0-9.2":0.00296,"9.3":0.01283,"10.0-10.2":0,"10.3":0.01678,"11.0-11.2":0.00197,"11.3-11.4":0.00099,"12.0-12.1":0.02764,"12.2-12.5":0.26747,"13.0-13.1":0.00296,"13.2":0.00691,"13.3":0.01579,"13.4-13.7":0.18851,"14.0-14.4":0.39775,"14.5-14.8":0.6208,"15.0-15.1":0.19641,"15.2-15.3":0.32471,"15.4":0.59021,"15.5":1.29095,"15.6":4.18474,"16.0":1.43308,"16.1":0.0148},P:{"4":0.21261,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.12149,"8.2":0,"9.2":0.02025,"10.1":0,"11.1-11.2":0.02025,"12.0":0,"13.0":0.09112,"14.0":0.18223,"15.0":0.14174,"16.0":0.09112,"17.0":0.09112,"18.0":0.8403},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.02583},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00292,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":1.72117},H:{"0":0.65046},L:{"0":76.9638},S:{"2.5":0},R:{_:"0"},M:{"0":0.0425},Q:{"13.1":0}}; 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 32b21e03683116..927ee0f9fb40c7 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02057,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00411,"33":0,"34":0.00823,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00411,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01234,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00823,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00411,"69":0,"70":0,"71":0,"72":0.00411,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00823,"79":0,"80":0,"81":0.00823,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.04936,"92":0,"93":0,"94":0.00411,"95":0.00411,"96":0.00411,"97":0,"98":0,"99":0.00823,"100":0.00823,"101":0.00823,"102":0.03702,"103":0.80615,"104":0.09871,"105":0.00823,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00411,"39":0,"40":0.00823,"41":0,"42":0,"43":0.00823,"44":0,"45":0,"46":0.00411,"47":0,"48":0,"49":0.01234,"50":0,"51":0,"52":0,"53":0.00411,"54":0,"55":0,"56":0,"57":0.00411,"58":0.00411,"59":0,"60":0,"61":0,"62":0.00823,"63":0.00823,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00411,"70":0.01234,"71":0.00411,"72":0,"73":0.00411,"74":0.00823,"75":0.00823,"76":0.00411,"77":0.01234,"78":0.00411,"79":0.01234,"80":0.00823,"81":0.10283,"83":0.01234,"84":0.00411,"85":0.00823,"86":0.01645,"87":0.01645,"88":0.0329,"89":0.01234,"90":0.00411,"91":0.00823,"92":0.02057,"93":0.02468,"94":0.00411,"95":0.02057,"96":0.01645,"97":0.02879,"98":0.0329,"99":0.02468,"100":0.0329,"101":0.14807,"102":0.09871,"103":2.53361,"104":6.88516,"105":0.02057,"106":0.00411,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00823,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.01234,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.01234,"62":0,"63":0.11105,"64":0.06992,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00411,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00411,"80":0,"81":0,"82":0,"83":0,"84":0.00411,"85":0.00411,"86":0,"87":0.00411,"88":0.00411,"89":0.32904,"90":0.04113,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.01645,"13":0.00823,"14":0.00823,"15":0.01234,"16":0.00823,"17":0.00823,"18":0.0329,"79":0,"80":0.00411,"81":0,"83":0,"84":0.01645,"85":0,"86":0,"87":0,"88":0.00411,"89":0.00823,"90":0.00411,"91":0,"92":0.01234,"93":0,"94":0,"95":0,"96":0.00411,"97":0.00411,"98":0.00411,"99":0.00823,"100":0.00823,"101":0.01645,"102":0.01234,"103":0.46066,"104":1.32027,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00823,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00411,"13.1":0.02057,"14.1":0.01645,"15.1":0.01234,"15.2-15.3":0.02468,"15.4":0.02879,"15.5":0.0617,"15.6":0.1275,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01249,"6.0-6.1":0,"7.0-7.1":0.05066,"8.1-8.4":0.00069,"9.0-9.2":0,"9.3":0.11035,"10.0-10.2":0.00069,"10.3":0.04442,"11.0-11.2":0.0111,"11.3-11.4":0.00416,"12.0-12.1":0.00347,"12.2-12.5":0.5545,"13.0-13.1":0.00278,"13.2":0.00555,"13.3":0.09091,"13.4-13.7":0.08189,"14.0-14.4":0.2311,"14.5-14.8":0.34491,"15.0-15.1":0.18391,"15.2-15.3":0.18183,"15.4":0.47122,"15.5":1.72596,"15.6":2.74058,"16.0":0.08397},P:{"4":0.24635,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.32846,"8.2":0,"9.2":0,"10.1":0.01026,"11.1-11.2":0.05132,"12.0":0.01026,"13.0":0.06159,"14.0":0.10265,"15.0":0.05132,"16.0":0.22582,"17.0":0.89301,"18.0":0.82116},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00147,"4.2-4.3":0.00734,"4.4":0,"4.4.3-4.4.4":0.127},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00411,"10":0,"11":0.06992,"5.5":0},J:{"7":0,"10":0.00589},N:{"10":0,"11":0},L:{"0":71.65987},S:{"2.5":0.02355},R:{_:"0"},M:{"0":0.10008},Q:{"10.4":0.00589},O:{"0":1.042},H:{"0":0.83601}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01211,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00808,"33":0,"34":0.00404,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00808,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00808,"61":0,"62":0.00404,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00404,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00404,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.04846,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00808,"100":0.00404,"101":0.00808,"102":0.01211,"103":0.06461,"104":0.73088,"105":0.19382,"106":0.00404,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00404,"39":0,"40":0.00808,"41":0,"42":0,"43":0.00808,"44":0,"45":0,"46":0.00404,"47":0,"48":0,"49":0.01211,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00404,"58":0.00404,"59":0,"60":0.00404,"61":0,"62":0,"63":0.00404,"64":0,"65":0,"66":0,"67":0.00404,"68":0.00404,"69":0.00404,"70":0.00808,"71":0.00404,"72":0,"73":0.00404,"74":0.01615,"75":0.00404,"76":0.00404,"77":0.00808,"78":0.00404,"79":0.01211,"80":0.01615,"81":0.09691,"83":0.00404,"84":0.00404,"85":0.00808,"86":0.01211,"87":0.01211,"88":0.00808,"89":0.00808,"90":0.00808,"91":0.01211,"92":0.02019,"93":0.00808,"94":0.01211,"95":0.04038,"96":0.01615,"97":0.02019,"98":0.02423,"99":0.02827,"100":0.04038,"101":0.04442,"102":0.06057,"103":0.25439,"104":2.12399,"105":7.29263,"106":0.07672,"107":0.00404,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00808,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00404,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.01211,"62":0,"63":0.04038,"64":0.12114,"65":0.02019,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00404,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00808,"80":0,"81":0,"82":0,"83":0.00404,"84":0.01211,"85":0.00808,"86":0,"87":0,"88":0,"89":0.00808,"90":0.30285,"91":0.02827,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00404},B:{"12":0.01211,"13":0.01211,"14":0.01615,"15":0.01211,"16":0.01211,"17":0.00808,"18":0.02827,"79":0,"80":0,"81":0,"83":0.00404,"84":0.00808,"85":0.00404,"86":0,"87":0,"88":0.00404,"89":0.00808,"90":0.00404,"91":0,"92":0.01615,"93":0,"94":0,"95":0.00404,"96":0.00404,"97":0,"98":0,"99":0.01211,"100":0.00808,"101":0.00808,"102":0.01211,"103":0.04038,"104":0.30689,"105":1.67577},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00404,"14":0.00808,"15":0.00404,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00404,"12.1":0.00404,"13.1":0.02019,"14.1":0.02423,"15.1":0.00404,"15.2-15.3":0.02019,"15.4":0.01615,"15.5":0.0323,"15.6":0.12114,"16.0":0.02423,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00604,"6.0-6.1":0,"7.0-7.1":0.0385,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03624,"10.0-10.2":0.00151,"10.3":0.07701,"11.0-11.2":0.00302,"11.3-11.4":0.00453,"12.0-12.1":0.02944,"12.2-12.5":0.49301,"13.0-13.1":0.01132,"13.2":0.00226,"13.3":0.01963,"13.4-13.7":0.15251,"14.0-14.4":0.15251,"14.5-14.8":0.31332,"15.0-15.1":0.12382,"15.2-15.3":0.19177,"15.4":0.31483,"15.5":0.86295,"15.6":3.81796,"16.0":0.70365,"16.1":0.01887},P:{"4":0.22221,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.35351,"8.2":0.0202,"9.2":0,"10.1":0.0101,"11.1-11.2":0.101,"12.0":0.0303,"13.0":0.0505,"14.0":0.0707,"15.0":0.0606,"16.0":0.18181,"17.0":0.22221,"18.0":1.25244},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00341,"4.2-4.3":0.0111,"4.4":0,"4.4.3-4.4.4":0.1101},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06461,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.80487},H:{"0":0.75635},L:{"0":71.64201},S:{"2.5":0.01789},R:{_:"0"},M:{"0":0.23252},Q:{"13.1":0.00596}}; 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 ab697da604d28b..65c7db24ca1dc3 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.02488,"51":0,"52":0.15923,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00498,"65":0,"66":0,"67":0,"68":0.00498,"69":0,"70":0,"71":0,"72":0.00498,"73":0,"74":0,"75":0.00498,"76":0,"77":0,"78":0.00498,"79":0,"80":0.00995,"81":0,"82":0,"83":0,"84":0.00995,"85":0,"86":0.00498,"87":0,"88":0.00995,"89":0.00995,"90":0,"91":0.07962,"92":0,"93":0,"94":0.00498,"95":0.00995,"96":0.03981,"97":0.00995,"98":0.00995,"99":0.00995,"100":0.06966,"101":0.01493,"102":0.1244,"103":1.09472,"104":0.19904,"105":0.00498,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00995,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.07962,"50":0,"51":0.00498,"52":0,"53":0.05474,"54":0,"55":0.00498,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00498,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00498,"68":0.01493,"69":0.10947,"70":0.00995,"71":0.00995,"72":0.00995,"73":0.00498,"74":0.03483,"75":0.00498,"76":0.00498,"77":0.00498,"78":0.00498,"79":0.02986,"80":0.00995,"81":0.0199,"83":0.05971,"84":0.07464,"85":0.06469,"86":0.09454,"87":0.07962,"88":0.0199,"89":0.02986,"90":0.00498,"91":0.00995,"92":0.09952,"93":0.00498,"94":0.01493,"95":0.01493,"96":0.05474,"97":0.03981,"98":0.0199,"99":0.03981,"100":0.07464,"101":0.15426,"102":0.28363,"103":3.11995,"104":8.92694,"105":0.01493,"106":0.00498,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.03483,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00498,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00498,"57":0,"58":0,"60":0,"62":0,"63":0.02488,"64":0.02986,"65":0,"66":0,"67":0.00498,"68":0,"69":0.00498,"70":0.01493,"71":0.00498,"72":0.00498,"73":0,"74":0,"75":0,"76":0.00498,"77":0,"78":0,"79":0.0199,"80":0.00498,"81":0,"82":0.01493,"83":0.00995,"84":0.0199,"85":0.13435,"86":0.02488,"87":0.05971,"88":0.02986,"89":2.36858,"90":0.44784,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00995},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00995,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00498,"100":0,"101":0.00498,"102":0.00498,"103":0.20899,"104":0.67176,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01493,"14":0.02488,"15":0.00498,_:"0","3.1":0,"3.2":0,"5.1":0.02488,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00498,"12.1":0.00498,"13.1":0.02986,"14.1":0.04478,"15.1":0.03483,"15.2-15.3":0.02488,"15.4":0.07962,"15.5":0.52746,"15.6":0.91558,"16.0":0.00995},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.00481,"8.1-8.4":0,"9.0-9.2":0.00481,"9.3":0.05533,"10.0-10.2":0.00241,"10.3":0.0409,"11.0-11.2":0.03127,"11.3-11.4":0,"12.0-12.1":0.03609,"12.2-12.5":0.37048,"13.0-13.1":0.01925,"13.2":0.00481,"13.3":0.04571,"13.4-13.7":0.17802,"14.0-14.4":0.43063,"14.5-14.8":0.62549,"15.0-15.1":0.38011,"15.2-15.3":0.76262,"15.4":0.95989,"15.5":6.40166,"15.6":13.52023,"16.0":0.17081},P:{"4":0.06047,"5.0-5.4":0,"6.2-6.4":0.29226,"7.2-7.4":0.01008,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02016,"12.0":0.08062,"13.0":0.05039,"14.0":0.03023,"15.0":0.01008,"16.0":0.06047,"17.0":0.44343,"18.0":0.63491},I:{"0":0,"3":0,"4":0.00526,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00526,"4.2-4.3":0.01226,"4.4":0,"4.4.3-4.4.4":0.0622},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00995,"9":0,"10":0,"11":0.06966,"5.5":0},J:{"7":0,"10":0.00502},N:{"10":0,"11":0},L:{"0":43.70294},S:{"2.5":0.00502},R:{_:"0"},M:{"0":0.15072},Q:{"10.4":0.0201},O:{"0":0.24115},H:{"0":1.16532}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.02985,"51":0,"52":0.14925,"53":0.00498,"54":0,"55":0.03483,"56":0.00498,"57":0,"58":0,"59":0,"60":0.00498,"61":0,"62":0,"63":0,"64":0,"65":0.00995,"66":0,"67":0,"68":0.00498,"69":0,"70":0,"71":0,"72":0.00498,"73":0,"74":0.00498,"75":0,"76":0,"77":0,"78":0.01493,"79":0.01493,"80":0.00995,"81":0.00995,"82":0.00498,"83":0.00498,"84":0.00498,"85":0,"86":0.00498,"87":0,"88":0.02488,"89":0.00995,"90":0,"91":0.04478,"92":0,"93":0,"94":0.00498,"95":0.00498,"96":0.0597,"97":0.00498,"98":0.00995,"99":0.00498,"100":0.00498,"101":0.00995,"102":0.0199,"103":0.23383,"104":0.96515,"105":0.39303,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00498,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00498,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0597,"50":0,"51":0.00498,"52":0,"53":0.00995,"54":0,"55":0.00498,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00498,"62":0,"63":0.00498,"64":0.00498,"65":0.00498,"66":0,"67":0.01493,"68":0.02488,"69":0.06468,"70":0.01493,"71":0.01493,"72":0.00995,"73":0.00498,"74":0.04975,"75":0.00498,"76":0.00498,"77":0.00498,"78":0.02488,"79":0.0199,"80":0.00995,"81":0.0398,"83":0.07463,"84":0.1393,"85":0.20895,"86":0.14925,"87":0.12935,"88":0.03483,"89":0.0199,"90":0.00995,"91":0.00995,"92":0.0995,"93":0.00498,"94":0.00498,"95":0.00498,"96":0.02488,"97":0.03483,"98":0.03483,"99":0.04478,"100":0.0597,"101":0.0796,"102":0.1194,"103":0.20398,"104":2.73128,"105":9.17888,"106":0.14428,"107":0.00498,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.03483,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00498,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00498,"57":0,"58":0,"60":0,"62":0,"63":0.00995,"64":0.04975,"65":0.00498,"66":0,"67":0,"68":0.0199,"69":0.00498,"70":0.02985,"71":0.01493,"72":0.00498,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.0199,"80":0.00995,"81":0,"82":0.00995,"83":0.00995,"84":0.0199,"85":0.10448,"86":0.0199,"87":0.04478,"88":0.01493,"89":0.0796,"90":2.60193,"91":0.18408,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00995},B:{"12":0,"13":0,"14":0.00498,"15":0.00498,"16":0,"17":0,"18":0.00498,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00498,"86":0.00498,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00498,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00498,"100":0,"101":0.00498,"102":0,"103":0.00995,"104":0.1194,"105":0.69153},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00498,"12":0,"13":0.00498,"14":0.03483,"15":0.00995,_:"0","3.1":0,"3.2":0,"5.1":0.0199,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00498,"11.1":0,"12.1":0.00995,"13.1":0.02985,"14.1":0.0597,"15.1":0.02488,"15.2-15.3":0.0199,"15.4":0.05473,"15.5":0.21393,"15.6":0.8557,"16.0":0.14925,"16.1":0.00995},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.00392,"8.1-8.4":0,"9.0-9.2":0.00392,"9.3":0.05287,"10.0-10.2":0.00196,"10.3":0.03133,"11.0-11.2":0.05679,"11.3-11.4":0.01175,"12.0-12.1":0.02546,"12.2-12.5":0.38968,"13.0-13.1":0.00979,"13.2":0.00587,"13.3":0.03525,"13.4-13.7":0.10966,"14.0-14.4":0.35835,"14.5-14.8":0.67558,"15.0-15.1":0.26436,"15.2-15.3":0.49543,"15.4":0.59529,"15.5":1.57831,"15.6":11.37327,"16.0":2.96473,"16.1":0.04504},P:{"4":0.04102,"5.0-5.4":0,"6.2-6.4":0.32814,"7.2-7.4":0.01025,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01025,"12.0":0.04102,"13.0":0.02051,"14.0":0.04102,"15.0":0.01025,"16.0":0.04102,"17.0":0.07178,"18.0":1.13825},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00447,"4.2-4.3":0.01342,"4.4":0,"4.4.3-4.4.4":0.06709},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01493,"9":0,"10":0,"11":0.09453,"5.5":0},N:{"10":0.00503,"11":0},J:{"7":0,"10":0},O:{"0":0.1608},H:{"0":1.32254},L:{"0":48.42393},S:{"2.5":0},R:{_:"0"},M:{"0":0.17588},Q:{"13.1":0.00503}}; 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 3bcf1699c35ac2..6fda848d6befc5 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,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00415,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00415,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00415,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0083,"79":0,"80":0,"81":0.19085,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.0166,"92":0,"93":0.01245,"94":0,"95":0.00415,"96":0.00415,"97":0,"98":0.00415,"99":0,"100":0,"101":0.00415,"102":0.02075,"103":0.47299,"104":0.08298,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.09958,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00415,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01245,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00415,"69":0,"70":0,"71":0,"72":0,"73":0.00415,"74":0,"75":0.0166,"76":0.02904,"77":0.00415,"78":0,"79":0.02489,"80":0,"81":0.0083,"83":0,"84":0,"85":0,"86":0.00415,"87":0.01245,"88":0.0083,"89":0.00415,"90":0.00415,"91":0.0083,"92":0.0083,"93":0.07883,"94":0.00415,"95":0.01245,"96":0.0083,"97":0.0083,"98":0.0166,"99":0.0083,"100":0.02489,"101":0.97916,"102":0.24479,"103":2.22386,"104":4.88752,"105":0.0166,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00415,"79":0.0083,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.0083,"89":0.75927,"90":0.10373,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00415,"18":0.00415,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00415,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.02904,"102":0.0083,"103":0.53107,"104":1.13268,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00415,"13":0.0083,"14":0.05394,"15":0.01245,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00415,"10.1":0,"11.1":0.00415,"12.1":0.01245,"13.1":0.03734,"14.1":0.04149,"15.1":0.07883,"15.2-15.3":0.07883,"15.4":0.46469,"15.5":0.69288,"15.6":1.48119,"16.0":0.02075},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00732,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.09145,"9.0-9.2":0.03292,"9.3":0.15364,"10.0-10.2":0,"10.3":0.08414,"11.0-11.2":0.00732,"11.3-11.4":0.2707,"12.0-12.1":0.00366,"12.2-12.5":0.62187,"13.0-13.1":0.00732,"13.2":0,"13.3":0.1134,"13.4-13.7":0.04024,"14.0-14.4":0.23412,"14.5-14.8":0.62919,"15.0-15.1":0.73893,"15.2-15.3":1.77417,"15.4":3.56663,"15.5":7.97095,"15.6":19.92921,"16.0":0.28167},P:{"4":0.11679,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.14865,"8.2":0,"9.2":0.01062,"10.1":0,"11.1-11.2":0.07432,"12.0":0.01062,"13.0":0.05309,"14.0":0.10618,"15.0":0.02124,"16.0":0.06371,"17.0":0.88126,"18.0":1.2635},I:{"0":0,"3":0,"4":0.19948,"2.1":0,"2.2":0,"2.3":0,"4.1":0.04694,"4.2-4.3":0.0352,"4.4":0,"4.4.3-4.4.4":0.90351},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0166,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":42.14434},S:{"2.5":0},R:{_:"0"},M:{"0":0.10532},Q:{"10.4":0.0234},O:{"0":0.275},H:{"0":0.05539}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00442,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00442,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00442,"79":0,"80":0,"81":0.28756,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01327,"92":0,"93":0.00442,"94":0,"95":0,"96":0,"97":0,"98":0.00442,"99":0.00442,"100":0,"101":0,"102":0.00885,"103":0.04424,"104":0.62821,"105":0.23005,"106":0.00442,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00442,"36":0,"37":0,"38":0,"39":0,"40":0.12387,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00442,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00442,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00442,"75":0.0177,"76":0.07078,"77":0.00442,"78":0,"79":0.00885,"80":0,"81":0.00442,"83":0,"84":0.00442,"85":0,"86":0.00442,"87":0.00442,"88":0.00885,"89":0.00442,"90":0.00885,"91":0.00885,"92":0.00442,"93":0.07963,"94":0.00442,"95":0.02212,"96":0.00885,"97":0.00885,"98":0.03097,"99":0.00885,"100":0.03097,"101":0.01327,"102":0.0929,"103":0.50876,"104":2.18988,"105":7.13149,"106":0.0929,"107":0.00442,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00442,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00442,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00442,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.02654,"90":0.88038,"91":0.01327,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00442,"13":0,"14":0,"15":0,"16":0,"17":0.00442,"18":0.00442,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00442,"92":0.00442,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00442,"101":0.00442,"102":0.00442,"103":0.02212,"104":0.36277,"105":1.79614},E:{"4":0,"5":0,"6":0,"7":0.00442,"8":0,"9":0,"10":0,"11":0,"12":0.00442,"13":0,"14":0.07078,"15":0.01327,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00442,"10.1":0,"11.1":0.02212,"12.1":0.00442,"13.1":0.03097,"14.1":0.04866,"15.1":0.07963,"15.2-15.3":0.08406,"15.4":0.22562,"15.5":0.2035,"15.6":1.38029,"16.0":0.21235,"16.1":0.0177},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00873,"5.0-5.1":0.02329,"6.0-6.1":0,"7.0-7.1":0.05821,"8.1-8.4":0.19793,"9.0-9.2":0.09023,"9.3":0.20084,"10.0-10.2":0,"10.3":0.12516,"11.0-11.2":0.03784,"11.3-11.4":0.27942,"12.0-12.1":0.00582,"12.2-12.5":0.60251,"13.0-13.1":0.00291,"13.2":0,"13.3":0.07277,"13.4-13.7":0.03202,"14.0-14.4":0.17173,"14.5-14.8":0.62288,"15.0-15.1":0.75095,"15.2-15.3":1.61834,"15.4":1.89776,"15.5":2.22376,"15.6":15.56047,"16.0":3.79261,"16.1":0.06986},P:{"4":0.11713,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.10648,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.05324,"12.0":0.01065,"13.0":0.15973,"14.0":0.05324,"15.0":0.01065,"16.0":0.05324,"17.0":0.20232,"18.0":2.41721},I:{"0":0,"3":0,"4":0.21308,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.04262,"4.4":0,"4.4.3-4.4.4":0.90915},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00442,"9":0,"10":0,"11":0.01327,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.10594},H:{"0":0.04751},L:{"0":47.39511},S:{"2.5":0},R:{_:"0"},M:{"0":0.15055},Q:{"13.1":0.03346}}; 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 5e4cec3f09d5e4..97d2499c87eb87 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01103,"39":0,"40":0,"41":0,"42":0,"43":0.01103,"44":0.03859,"45":0.01103,"46":0,"47":0,"48":0.00551,"49":0,"50":0,"51":0,"52":0.02205,"53":0,"54":0,"55":0,"56":0,"57":0.00551,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00551,"67":0,"68":0.01103,"69":0,"70":0.00551,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00551,"78":0.03308,"79":0.00551,"80":0.00551,"81":0.00551,"82":0.00551,"83":0.00551,"84":0.00551,"85":0,"86":0,"87":0.00551,"88":0.00551,"89":0.00551,"90":0.00551,"91":0.03308,"92":0,"93":0,"94":0.00551,"95":0.00551,"96":0.00551,"97":0.00551,"98":0.00551,"99":0.01103,"100":0.01103,"101":0.01654,"102":0.07167,"103":1.65941,"104":0.34732,"105":0.00551,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00551,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.01103,"48":0.09923,"49":0.06064,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.02757,"61":0,"62":0,"63":0,"64":0,"65":0.00551,"66":0.00551,"67":0.01103,"68":0.00551,"69":0.02757,"70":0.00551,"71":0.00551,"72":0.00551,"73":0,"74":0.02205,"75":0.00551,"76":0.01654,"77":0.00551,"78":0.00551,"79":0.0441,"80":0.02757,"81":0.01654,"83":0.16539,"84":0.04962,"85":0.0441,"86":0.04962,"87":0.07167,"88":0.01103,"89":0.01103,"90":0.01103,"91":0.02205,"92":0.01654,"93":0.04962,"94":0.02205,"95":0.01103,"96":0.05513,"97":0.0441,"98":0.05513,"99":0.04962,"100":0.09372,"101":0.12129,"102":0.28116,"103":4.66951,"104":11.03151,"105":0.0441,"106":0.00551,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00551,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00551,"64":0.00551,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00551,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01103,"89":0.33078,"90":0.03308,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00551,"13":0.00551,"14":0.00551,"15":0,"16":0.00551,"17":0.00551,"18":0.01103,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00551,"86":0,"87":0,"88":0,"89":0.00551,"90":0,"91":0,"92":0.00551,"93":0,"94":0,"95":0,"96":0.00551,"97":0.00551,"98":0.00551,"99":0.00551,"100":0.00551,"101":0.04962,"102":0.02205,"103":1.07504,"104":2.86125,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00551,"9":0.01654,"10":0,"11":0,"12":0.00551,"13":0.02757,"14":0.12129,"15":0.02757,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01103,"10.1":0.01103,"11.1":0.03308,"12.1":0.06064,"13.1":0.27014,"14.1":0.39142,"15.1":0.05513,"15.2-15.3":0.06616,"15.4":0.20949,"15.5":0.79939,"15.6":1.87993,"16.0":0.01654},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00399,"6.0-6.1":0.01196,"7.0-7.1":0.01594,"8.1-8.4":0.01993,"9.0-9.2":0.01196,"9.3":0.27497,"10.0-10.2":0.01196,"10.3":0.2391,"11.0-11.2":0.05181,"11.3-11.4":0.07572,"12.0-12.1":0.06376,"12.2-12.5":1.44257,"13.0-13.1":0.09166,"13.2":0.01993,"13.3":0.12354,"13.4-13.7":0.38655,"14.0-14.4":1.25528,"14.5-14.8":3.71403,"15.0-15.1":0.86873,"15.2-15.3":1.02016,"15.4":1.21543,"15.5":7.91423,"15.6":20.73401,"16.0":0.25504},P:{"4":0.15697,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01046,"8.2":0,"9.2":0.01046,"10.1":0.01046,"11.1-11.2":0.02093,"12.0":0.01046,"13.0":0.03139,"14.0":0.02093,"15.0":0.01046,"16.0":0.07325,"17.0":1.00461,"18.0":1.75806},I:{"0":0,"3":0,"4":0.02578,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01718,"4.2-4.3":0.06874,"4.4":0,"4.4.3-4.4.4":0.34369},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01181,"9":0.01181,"10":0,"11":0.14176,"5.5":0},J:{"7":0,"10":0.00449},N:{"10":0,"11":0},L:{"0":24.8395},S:{"2.5":0},R:{_:"0"},M:{"0":0.4487},Q:{"10.4":0},O:{"0":0.07628},H:{"0":0.13594}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00545,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01091,"39":0,"40":0,"41":0,"42":0,"43":0.01091,"44":0.04362,"45":0.01091,"46":0,"47":0,"48":0.00545,"49":0,"50":0,"51":0,"52":0.02181,"53":0,"54":0,"55":0,"56":0,"57":0.01091,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.01091,"67":0,"68":0.01636,"69":0,"70":0.01091,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00545,"77":0.00545,"78":0.04362,"79":0.01091,"80":0.01091,"81":0.01091,"82":0.01091,"83":0.00545,"84":0.00545,"85":0,"86":0,"87":0.01091,"88":0.00545,"89":0.00545,"90":0,"91":0.03272,"92":0,"93":0,"94":0.00545,"95":0.00545,"96":0.00545,"97":0.00545,"98":0.00545,"99":0.00545,"100":0.00545,"101":0.01091,"102":0.02727,"103":0.0927,"104":1.66862,"105":0.41443,"106":0.00545,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00545,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00545,"46":0,"47":0.01091,"48":0.10361,"49":0.06544,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00545,"60":0.01636,"61":0,"62":0,"63":0.00545,"64":0,"65":0.01091,"66":0.01091,"67":0.01091,"68":0.00545,"69":0.01636,"70":0.00545,"71":0.00545,"72":0.01091,"73":0.00545,"74":0.03272,"75":0.00545,"76":0.01636,"77":0.00545,"78":0.01091,"79":0.03817,"80":0.02727,"81":0.02181,"83":0.23993,"84":0.10906,"85":0.10361,"86":0.11997,"87":0.13633,"88":0.01636,"89":0.01636,"90":0.01091,"91":0.01636,"92":0.01091,"93":0.04908,"94":0.02181,"95":0.01091,"96":0.04908,"97":0.03272,"98":0.03272,"99":0.03272,"100":0.07089,"101":0.07089,"102":0.1745,"103":0.67072,"104":3.44084,"105":10.58427,"106":0.19631,"107":0.00545,"108":0.00545,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00545,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.01091,"65":0,"66":0,"67":0,"68":0.00545,"69":0.00545,"70":0.00545,"71":0.00545,"72":0.00545,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.03817,"90":0.32718,"91":0.01091,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00545,"13":0.00545,"14":0,"15":0,"16":0.00545,"17":0.00545,"18":0.01636,"79":0,"80":0,"81":0,"83":0,"84":0.00545,"85":0.01091,"86":0.00545,"87":0,"88":0,"89":0.00545,"90":0,"91":0,"92":0.00545,"93":0,"94":0,"95":0,"96":0.00545,"97":0.00545,"98":0.00545,"99":0.00545,"100":0.00545,"101":0.01636,"102":0.01091,"103":0.03817,"104":0.61619,"105":2.95553},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00545,"9":0.01636,"10":0,"11":0,"12":0.00545,"13":0.02727,"14":0.11997,"15":0.02727,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01636,"10.1":0.01091,"11.1":0.03272,"12.1":0.05998,"13.1":0.28356,"14.1":0.38171,"15.1":0.05453,"15.2-15.3":0.05998,"15.4":0.15814,"15.5":0.33263,"15.6":2.39387,"16.0":0.21812,"16.1":0.01636},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00408,"6.0-6.1":0.00408,"7.0-7.1":0.01633,"8.1-8.4":0.02042,"9.0-9.2":0.04492,"9.3":0.26136,"10.0-10.2":0.01633,"10.3":0.23277,"11.0-11.2":0.06534,"11.3-11.4":0.07759,"12.0-12.1":0.05309,"12.2-12.5":1.43747,"13.0-13.1":0.06942,"13.2":0.02042,"13.3":0.13068,"13.4-13.7":0.38795,"14.0-14.4":1.28638,"14.5-14.8":3.39766,"15.0-15.1":0.50638,"15.2-15.3":0.68607,"15.4":0.77999,"15.5":2.34815,"15.6":24.61265,"16.0":3.61002,"16.1":0.05717},P:{"4":0.12725,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.02121,"11.1-11.2":0.02121,"12.0":0.0106,"13.0":0.03181,"14.0":0.02121,"15.0":0.0106,"16.0":0.05302,"17.0":0.10604,"18.0":2.66171},I:{"0":0,"3":0,"4":0.02119,"2.1":0,"2.2":0.05297,"2.3":0,"4.1":0.02119,"4.2-4.3":0.09535,"4.4":0,"4.4.3-4.4.4":0.42379},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01153,"9":0.01729,"10":0.00576,"11":0.16717,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00455},O:{"0":0.0773},H:{"0":0.15928},L:{"0":25.10412},S:{"2.5":0},R:{_:"0"},M:{"0":0.44106},Q:{"13.1":0.00455}}; 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 80629103a9f292..74ab41ee40e7f5 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00175,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00175,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00175,"66":0,"67":0,"68":0.00175,"69":0,"70":0,"71":0,"72":0.00175,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00175,"79":0,"80":0,"81":0.00175,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00175,"90":0,"91":0.00175,"92":0,"93":0,"94":0,"95":0.00175,"96":0,"97":0.00175,"98":0,"99":0.00175,"100":0.00175,"101":0.0035,"102":0.01049,"103":0.14167,"104":0.01399,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00175,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00175,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00175,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00175,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00175,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00175,"64":0.00175,"65":0.00175,"66":0,"67":0,"68":0.00525,"69":0,"70":0.00175,"71":0,"72":0,"73":0,"74":0.00175,"75":0,"76":0,"77":0,"78":0,"79":0.00175,"80":0.00175,"81":0.0035,"83":0.00175,"84":0.00175,"85":0,"86":0.0035,"87":0.0035,"88":0.00175,"89":0.00175,"90":0.00175,"91":0.00175,"92":0.00175,"93":0.00175,"94":0.00175,"95":0.00175,"96":0.0035,"97":0.00175,"98":0.0035,"99":0.0035,"100":0.0035,"101":0.00525,"102":0.01049,"103":0.22212,"104":0.47398,"105":0.00175,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.02449,"25":0,"26":0.01574,"27":0.01049,"28":0.01574,"29":0.00175,"30":0.04897,"31":0.007,"32":0.02449,"33":0.01224,"34":0.00175,"35":0.00175,"36":0,"37":0.00525,"38":0.01399,"39":0,"40":0,"41":0.00175,"42":0.07696,"43":0,"44":0,"45":0.00525,"46":0.00525,"47":0.007,"48":0,"49":0,"50":0.05247,"51":0.01574,"52":0,"53":0.00175,"54":0.01924,"55":0.06996,"56":0.007,"57":0.04023,"58":0.04547,"60":0.72409,"62":0.00875,"63":0.80804,"64":0.24836,"65":0,"66":0,"67":0.00175,"68":0.0035,"69":0.00175,"70":0.00175,"71":0.0035,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.007,"80":0,"81":0,"82":0.00175,"83":0,"84":0.00175,"85":0.00175,"86":0.00175,"87":0.00175,"88":0.0035,"89":0.12068,"90":0.01749,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.007},B:{"12":0.00525,"13":0.0035,"14":0.00175,"15":0.007,"16":0.00175,"17":0.0035,"18":0.00875,"79":0,"80":0,"81":0,"83":0,"84":0.00175,"85":0.00175,"86":0,"87":0,"88":0,"89":0.00175,"90":0.00175,"91":0,"92":0.0035,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00175,"99":0.00175,"100":0.00175,"101":0.00175,"102":0.0035,"103":0.07171,"104":0.11194,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00175,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00175,"13.1":0.00525,"14.1":0.00525,"15.1":0,"15.2-15.3":0,"15.4":0.0035,"15.5":0.00875,"15.6":0.01399,"16.0":0},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.01539,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.09884,"10.0-10.2":0,"10.3":0.14907,"11.0-11.2":0.03241,"11.3-11.4":0.0162,"12.0-12.1":0.03808,"12.2-12.5":1.83345,"13.0-13.1":0.04861,"13.2":0.04618,"13.3":0.18391,"13.4-13.7":0.19606,"14.0-14.4":0.87257,"14.5-14.8":0.83287,"15.0-15.1":0.48125,"15.2-15.3":0.64248,"15.4":0.60197,"15.5":1.07268,"15.6":0.82396,"16.0":0.11181},P:{"4":0.23177,"5.0-5.4":0.04031,"6.2-6.4":0.01008,"7.2-7.4":0.09069,"8.2":0,"9.2":0.07054,"10.1":0,"11.1-11.2":0.05039,"12.0":0.01008,"13.0":0.05039,"14.0":0.04031,"15.0":0.03023,"16.0":0.08062,"17.0":0.34262,"18.0":0.18139},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00241,"4.2-4.3":0.01138,"4.4":0,"4.4.3-4.4.4":0.08895},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00875,"5.5":0},J:{"7":0,"10":0.00825},N:{"10":0,"11":0},L:{"0":51.03308},S:{"2.5":0.07426},R:{_:"0"},M:{"0":0.11551},Q:{"10.4":0.02475},O:{"0":0.56932},H:{"0":29.65251}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00133,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00133,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00133,"100":0,"101":0,"102":0.00266,"103":0.00666,"104":0.06123,"105":0.0173,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00266,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00133,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00399,"41":0,"42":0,"43":0.00133,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00266,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.01331,"65":0,"66":0,"67":0,"68":0.00399,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00133,"78":0,"79":0.00133,"80":0.00133,"81":0.00799,"83":0,"84":0,"85":0,"86":0.00133,"87":0.00133,"88":0.00399,"89":0,"90":0,"91":0.00266,"92":0,"93":0,"94":0.00133,"95":0.00133,"96":0.00133,"97":0.00133,"98":0.00133,"99":0.00133,"100":0.00133,"101":0.00133,"102":0.00266,"103":0.01597,"104":0.08918,"105":0.25821,"106":0.00399,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0.00133,"17":0,"18":0,"19":0,"20":0.00133,"21":0,"22":0,"23":0,"24":0.0173,"25":0,"26":0.01331,"27":0.00666,"28":0.00932,"29":0.00266,"30":0.02795,"31":0.00532,"32":0.01331,"33":0.00932,"34":0,"35":0.00399,"36":0.00133,"37":0.00399,"38":0.00799,"39":0,"40":0,"41":0.00133,"42":0.05191,"43":0,"44":0,"45":0.00532,"46":0.00399,"47":0.00266,"48":0,"49":0,"50":0.03061,"51":0.01198,"52":0,"53":0.00133,"54":0.00799,"55":0.04792,"56":0.00399,"57":0.02396,"58":0.0386,"60":0.48715,"62":0.01198,"63":0.45387,"64":0.34606,"65":0.02529,"66":0,"67":0,"68":0.00133,"69":0,"70":0,"71":0.00399,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00266,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00266,"90":0.05191,"91":0.00266,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00666},B:{"12":0.00399,"13":0.00266,"14":0.00133,"15":0.00266,"16":0.00133,"17":0.00266,"18":0.00532,"79":0,"80":0,"81":0,"83":0,"84":0.00133,"85":0.00133,"86":0,"87":0,"88":0,"89":0.00133,"90":0.00133,"91":0,"92":0.00133,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00133,"102":0.00133,"103":0.00399,"104":0.02396,"105":0.08918},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00133,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00532,"14.1":0.00266,"15.1":0,"15.2-15.3":0,"15.4":0.00133,"15.5":0.00266,"15.6":0.00532,"16.0":0.00266,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00227,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00909,"8.1-8.4":0.00151,"9.0-9.2":0,"9.3":0.04166,"10.0-10.2":0,"10.3":0.16133,"11.0-11.2":0.01439,"11.3-11.4":0.01439,"12.0-12.1":0.07498,"12.2-12.5":1.57542,"13.0-13.1":0.03484,"13.2":0.03408,"13.3":0.08786,"13.4-13.7":0.22192,"14.0-14.4":0.72257,"14.5-14.8":0.93237,"15.0-15.1":0.39385,"15.2-15.3":0.58699,"15.4":0.45975,"15.5":0.67864,"15.6":1.03463,"16.0":0.42491,"16.1":0.00454},P:{"4":0.16182,"5.0-5.4":0.05057,"6.2-6.4":0.02023,"7.2-7.4":0.09102,"8.2":0,"9.2":0.09102,"10.1":0,"11.1-11.2":0.09102,"12.0":0.01011,"13.0":0.02023,"14.0":0.03034,"15.0":0.02023,"16.0":0.06068,"17.0":0.13148,"18.0":0.25285},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00221,"4.2-4.3":0.01516,"4.4":0,"4.4.3-4.4.4":0.07328},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00532,"5.5":0},N:{"10":0,"11":0.00867},J:{"7":0,"10":0},O:{"0":0.40744},H:{"0":33.45275},L:{"0":49.67342},S:{"2.5":0.04335},R:{_:"0"},M:{"0":0.04335},Q:{"13.1":0.01734}}; 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 874cabc1f069f2..8c9992a7c0022a 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00185,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00185,"44":0,"45":0.00185,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0037,"53":0,"54":0,"55":0,"56":0.00185,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.02408,"92":0,"93":0,"94":0.00185,"95":0.01667,"96":0,"97":0,"98":0,"99":0.00185,"100":0.0037,"101":0,"102":0.00741,"103":0.12779,"104":0.01296,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00185,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00556,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.05186,"41":0,"42":0,"43":0.00185,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0037,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00185,"60":0,"61":0,"62":0,"63":0.0037,"64":0,"65":0,"66":0,"67":0.00185,"68":0.00185,"69":0.00185,"70":0.00185,"71":0.00185,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.01296,"81":0.0037,"83":0.00556,"84":0,"85":0,"86":0.00741,"87":0.00185,"88":0.00185,"89":0,"90":0,"91":0,"92":0,"93":0.00556,"94":0,"95":0,"96":0.00185,"97":0.00185,"98":0.00185,"99":0.0037,"100":0.0037,"101":0.00185,"102":0.0037,"103":0.40374,"104":0.96489,"105":0,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00185,"25":0,"26":0.00185,"27":0.0037,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00185,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00185,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00185,"57":0.00185,"58":0,"60":0.03519,"62":0,"63":0.06852,"64":0.03704,"65":0,"66":0.00185,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.0037,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0037,"86":0.0037,"87":0,"88":0,"89":0.03889,"90":0.00741,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00926},B:{"12":0.00185,"13":0.0037,"14":0.00556,"15":0.0037,"16":0.01111,"17":0.00556,"18":0.01296,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00185,"86":0,"87":0,"88":0,"89":0,"90":0.0037,"91":0,"92":0.0037,"93":0,"94":0,"95":0,"96":0,"97":0.00185,"98":0.00185,"99":0,"100":0.00185,"101":0.00185,"102":0.00185,"103":0.05371,"104":0.09445,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01296,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0037,"13.1":0,"14.1":0.0037,"15.1":0,"15.2-15.3":0,"15.4":0.00185,"15.5":0.0037,"15.6":0.00185,"16.0":0},G:{"8":0.00316,"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.00144,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08307,"10.0-10.2":0,"10.3":0.01236,"11.0-11.2":0.0092,"11.3-11.4":0.0138,"12.0-12.1":0.01063,"12.2-12.5":0.26415,"13.0-13.1":0.0046,"13.2":0.00316,"13.3":0.00316,"13.4-13.7":0.05202,"14.0-14.4":0.35957,"14.5-14.8":0.15694,"15.0-15.1":0.12302,"15.2-15.3":0.10606,"15.4":0.27823,"15.5":0.76686,"15.6":0.58089,"16.0":0.04139},P:{"4":0.2037,"5.0-5.4":0.02037,"6.2-6.4":0,"7.2-7.4":0.03056,"8.2":0,"9.2":0.0713,"10.1":0,"11.1-11.2":0.01019,"12.0":0,"13.0":0.03056,"14.0":0.05093,"15.0":0.02037,"16.0":0.02037,"17.0":0.22407,"18.0":0.58055},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00539,"4.2-4.3":0.01617,"4.4":0,"4.4.3-4.4.4":0.24253},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02222,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":81.868},S:{"2.5":0.51332},R:{_:"0"},M:{"0":0.12222},Q:{"10.4":0.00815},O:{"0":0.48073},H:{"0":8.02256}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00197,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00197,"57":0.00197,"58":0,"59":0,"60":0.00395,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00395,"73":0,"74":0,"75":0,"76":0,"77":0.00395,"78":0,"79":0,"80":0,"81":0,"82":0.00197,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00789,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00197,"99":0.00197,"100":0,"101":0.00592,"102":0.00592,"103":0.00987,"104":0.07103,"105":0.02368,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00987,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00197,"59":0.00395,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00197,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00197,"78":0,"79":0,"80":0,"81":0,"83":0.00592,"84":0.00197,"85":0,"86":0.00197,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00197,"94":0.00197,"95":0,"96":0.00197,"97":0,"98":0.00197,"99":0.00197,"100":0.00592,"101":0.00197,"102":0.01381,"103":0.01776,"104":0.40841,"105":1.49948,"106":0.00395,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00197,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00197,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00197,"56":0,"57":0.00197,"58":0.00395,"60":0.0217,"62":0,"63":0.0513,"64":0.04538,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00197,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01184,"90":0.01973,"91":0.00987,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00197},B:{"12":0.00789,"13":0.00395,"14":0.00197,"15":0.00197,"16":0,"17":0.00197,"18":0.00592,"79":0,"80":0,"81":0,"83":0,"84":0.00197,"85":0.00197,"86":0,"87":0,"88":0,"89":0,"90":0.00197,"91":0,"92":0.00197,"93":0,"94":0,"95":0,"96":0.00592,"97":0.00197,"98":0.00592,"99":0.00197,"100":0.00197,"101":0,"102":0,"103":0.01184,"104":0.03551,"105":0.13614},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.01578,"15.1":0.00197,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.00197,"16.0":0,"16.1":0},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.00736,"10.0-10.2":0,"10.3":0.01736,"11.0-11.2":0.20748,"11.3-11.4":0.01736,"12.0-12.1":0.00147,"12.2-12.5":0.51091,"13.0-13.1":0,"13.2":0.00147,"13.3":0.01148,"13.4-13.7":0.01913,"14.0-14.4":0.3252,"14.5-14.8":0.20042,"15.0-15.1":0.27988,"15.2-15.3":0.06504,"15.4":0.30607,"15.5":0.20454,"15.6":0.63716,"16.0":0.1189,"16.1":0.00441},P:{"4":0.14312,"5.0-5.4":0.05112,"6.2-6.4":0.43959,"7.2-7.4":0.01022,"8.2":0,"9.2":0.01022,"10.1":0,"11.1-11.2":0.01022,"12.0":0.02045,"13.0":0.04089,"14.0":0.06134,"15.0":0,"16.0":0.02045,"17.0":0.06134,"18.0":0.21468},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02956,"4.2-4.3":0.04774,"4.4":0,"4.4.3-4.4.4":0.68206},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00987,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.2087},H:{"0":11.20158},L:{"0":77.46351},S:{"2.5":0.48162},R:{_:"0"},M:{"0":0.04816},Q:{"13.1":0}}; 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 1d831a320973b7..8ef63b3c713095 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.0133,"37":0.04433,"43":0.00887,"45":0.0133,"47":0.03103,"56":0.0133,"57":0.00887,"68":0.12856,"72":0.0133,"78":0.00443,"84":0.00443,"91":0.00887,"100":0.00887,"101":0.00887,"102":0.17289,"103":3.56413,"104":0.43443,_:"2 3 4 5 6 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 38 39 40 41 42 44 46 48 49 50 51 52 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 85 86 87 88 89 90 92 93 94 95 96 97 98 99 105 106 3.5 3.6"},D:{"29":0.00443,"34":0.00887,"42":0.00443,"43":0.00443,"49":0.01773,"50":0.01773,"58":0.00887,"60":0.00443,"63":0.00443,"65":0.01773,"69":0.0266,"75":0.00887,"76":0.00887,"77":0.00887,"79":0.04876,"80":0.03546,"81":0.0133,"83":0.00887,"84":0.03103,"85":0.0266,"86":0.04433,"87":0.0133,"88":0.0399,"89":0.0399,"90":0.0133,"91":0.01773,"92":0.02217,"94":0.0133,"95":0.00887,"96":0.03546,"97":0.64722,"98":0.0266,"99":0.07536,"100":0.09753,"101":0.0665,"102":0.10639,"103":4.59259,"104":13.05075,"105":0.04876,_:"4 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 44 45 46 47 48 51 52 53 54 55 56 57 59 61 62 64 66 67 68 70 71 72 73 74 78 93 106 107 108"},F:{"34":0.02217,"73":0.00443,"78":0.00443,"79":0.07979,"81":0.03103,"82":0.02217,"83":0.00443,"84":0.00443,"85":0.07093,"86":0.03546,"87":0.0133,"88":0.03103,"89":3.04547,"90":0.29258,_:"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 74 75 76 77 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.02217,"13":0.0266,"14":0.00887,"16":0.0133,"17":0.01773,"18":0.15516,"84":0.00887,"85":0.00443,"89":0.00443,"90":0.00887,"92":0.03103,"97":0.00887,"98":0.02217,"99":0.00887,"101":0.01773,"102":0.0266,"103":1.71557,"104":3.83011,_:"15 79 80 81 83 86 87 88 91 93 94 95 96 100 105"},E:{"4":0,_:"0 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 15.1 15.2-15.3 15.4","10.1":0.10639,"12.1":0.0133,"13.1":0.12412,"14.1":0.01773,"15.5":0.03103,"15.6":0.05763,"16.0":0.00443},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.00749,"7.0-7.1":0.20223,"8.1-8.4":0,"9.0-9.2":0.00374,"9.3":0.02472,"10.0-10.2":0.0015,"10.3":0.31982,"11.0-11.2":0.02921,"11.3-11.4":0.01648,"12.0-12.1":0.06516,"12.2-12.5":2.41323,"13.0-13.1":0.00225,"13.2":0.00374,"13.3":0.00674,"13.4-13.7":0.08164,"14.0-14.4":0.28387,"14.5-14.8":0.33704,"15.0-15.1":0.23518,"15.2-15.3":0.22245,"15.4":0.22245,"15.5":1.11749,"15.6":1.6268,"16.0":0.26439},P:{"4":0.47581,"5.0-5.4":0.02115,"6.2-6.4":0.01057,"7.2-7.4":0.39122,"8.2":0,"9.2":0.01057,"10.1":0,"11.1-11.2":0.05039,"12.0":0.01008,"13.0":0.02115,"14.0":0.04031,"15.0":0.03023,"16.0":0.12688,"17.0":0.3595,"18.0":0.1586},I:{"0":0,"3":0,"4":0.00017,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00315,"4.2-4.3":0.01144,"4.4":0,"4.4.3-4.4.4":0.08545},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.03103,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.00557},N:{"10":0,"11":0},L:{"0":52.34314},S:{"2.5":0.22268},R:{_:"0"},M:{"0":0.09464},Q:{"10.4":0.0167},O:{"0":0.62907},H:{"0":1.39668}}; +module.exports={C:{"4":0.00386,"37":0.01546,"47":0.00386,"52":0.01932,"60":0.01159,"68":0.09274,"88":0.00386,"91":0.01159,"99":0.00773,"102":0.06569,"103":0.05023,"104":2.83231,"105":0.69166,_:"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 38 39 40 41 42 43 44 45 46 48 49 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 92 93 94 95 96 97 98 100 101 106 107 3.5 3.6"},D:{"11":0.00773,"43":0.00773,"49":0.00386,"56":0.00386,"58":0.01159,"63":0.00386,"65":0.01159,"67":0.00386,"69":0.03864,"75":0.00773,"76":0.00773,"79":0.03478,"81":0.00386,"83":0.02705,"84":0.01932,"86":0.03478,"88":0.01159,"89":0.01932,"90":0.00773,"91":0.01159,"92":0.01932,"94":0.00773,"95":0.00773,"96":0.03478,"97":0.25116,"98":0.01932,"99":0.08887,"100":0.00773,"101":0.03091,"102":0.01546,"103":0.1391,"104":2.898,"105":11.11286,"106":0.10046,_:"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 50 51 52 53 54 55 57 59 60 61 62 64 66 68 70 71 72 73 74 77 78 80 85 87 93 107 108 109"},F:{"21":0.00386,"37":0.01159,"40":0.00386,"78":0.01159,"79":0.03864,"82":0.04637,"85":0.03864,"86":0.00773,"89":0.05023,"90":2.57342,"91":0.02318,_:"9 11 12 15 16 17 18 19 20 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 74 75 76 77 80 81 83 84 87 88 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.03864,"13":0.00386,"14":0.00773,"15":0.00773,"16":0.01546,"17":0.01159,"18":0.18934,"84":0.01159,"89":0.01159,"90":0.00773,"92":0.01546,"97":0.01159,"99":0.00386,"101":0.00386,"102":0.00386,"103":0.06569,"104":0.9119,"105":3.381,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 98 100"},E:{"4":0,_:"0 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 15.1 15.4 16.1","10.1":0.14297,"12.1":0.01159,"13.1":0.13138,"14.1":0.04637,"15.2-15.3":0.00773,"15.5":0.00773,"15.6":0.04637,"16.0":0.01159},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00302,"6.0-6.1":0,"7.0-7.1":0.25102,"8.1-8.4":0,"9.0-9.2":0.00403,"9.3":0.0615,"10.0-10.2":0,"10.3":0.43551,"11.0-11.2":0.03024,"11.3-11.4":0.00907,"12.0-12.1":0.0625,"12.2-12.5":4.07886,"13.0-13.1":0.00302,"13.2":0.00101,"13.3":0.03327,"13.4-13.7":0.14315,"14.0-14.4":0.19558,"14.5-14.8":0.45769,"15.0-15.1":0.20465,"15.2-15.3":0.13307,"15.4":0.10384,"15.5":1.09482,"15.6":2.04246,"16.0":0.45668,"16.1":0.00806},P:{"4":0.65156,"5.0-5.4":0.01051,"6.2-6.4":0.01051,"7.2-7.4":0.28375,"8.2":0,"9.2":0.04204,"10.1":0,"11.1-11.2":0.09102,"12.0":0.01011,"13.0":0.02102,"14.0":0.01051,"15.0":0.02023,"16.0":0.16815,"17.0":0.14713,"18.0":0.26273},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00306,"4.2-4.3":0.0157,"4.4":0,"4.4.3-4.4.4":0.10397},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0425,_:"6 7 8 9 10 5.5"},N:{"10":0,"11":0.00867},J:{"7":0,"10":0.00614},O:{"0":0.4971},H:{"0":1.26661},L:{"0":57.74702},S:{"2.5":0.26389},R:{_:"0"},M:{"0":0.03069},Q:{"13.1":0.05523}}; 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 0c0776e22f15ae..e10adb79d09eb8 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00709,"49":0,"50":0,"51":0,"52":0.01417,"53":0,"54":0.00709,"55":0.00709,"56":0,"57":0.00709,"58":0,"59":0,"60":0.00709,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00709,"69":0,"70":0,"71":0.01417,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.06377,"79":0.00709,"80":0.00709,"81":0.00709,"82":0,"83":0.00709,"84":0.00709,"85":0,"86":0,"87":0,"88":0.00709,"89":0.00709,"90":0.00709,"91":0.15587,"92":0,"93":0,"94":0.00709,"95":0.00709,"96":0.00709,"97":0.00709,"98":0.00709,"99":0.00709,"100":0.02126,"101":0.03543,"102":0.12753,"103":2.62145,"104":0.46761,"105":0.00709,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00709,"39":0,"40":0,"41":0.00709,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02126,"50":0,"51":0,"52":0.1417,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00709,"66":0.0496,"67":0,"68":0.00709,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00709,"75":0.00709,"76":0.01417,"77":0.00709,"78":0.01417,"79":0.12045,"80":0.01417,"81":0.01417,"83":0.02834,"84":0.05668,"85":0.0496,"86":0.05668,"87":0.12045,"88":0.01417,"89":0.02834,"90":0.01417,"91":0.02126,"92":0.06377,"93":0.02126,"94":0.01417,"95":0.00709,"96":0.21255,"97":0.0496,"98":0.03543,"99":0.0496,"100":0.09211,"101":0.14879,"102":0.36842,"103":6.61031,"104":21.26917,"105":0.06377,"106":0.00709,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00709,"64":0.00709,"65":0,"66":0,"67":0,"68":0,"69":0.00709,"70":0,"71":0.00709,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01417,"89":0.48178,"90":0.05668,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.02834,"79":0,"80":0,"81":0,"83":0.00709,"84":0.01417,"85":0.00709,"86":0,"87":0,"88":0.00709,"89":0.00709,"90":0.00709,"91":0.01417,"92":0.01417,"93":0,"94":0.00709,"95":0.00709,"96":0.01417,"97":0.03543,"98":0.02126,"99":0.02834,"100":0.02834,"101":0.06377,"102":0.09211,"103":3.33704,"104":6.95747,"105":0.00709},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00709,"13":0.02834,"14":0.13462,"15":0.04251,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01417,"10.1":0.01417,"11.1":0.03543,"12.1":0.06377,"13.1":0.29757,"14.1":0.40385,"15.1":0.06377,"15.2-15.3":0.07794,"15.4":0.23381,"15.5":0.82895,"15.6":1.68623,"16.0":0.01417},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.01556,"8.1-8.4":0.00259,"9.0-9.2":0.33707,"9.3":0.12964,"10.0-10.2":0.00519,"10.3":0.11927,"11.0-11.2":0.03371,"11.3-11.4":0.12186,"12.0-12.1":0.03111,"12.2-12.5":0.5082,"13.0-13.1":0.02074,"13.2":0.01556,"13.3":0.04926,"13.4-13.7":0.17631,"14.0-14.4":0.5445,"14.5-14.8":1.53756,"15.0-15.1":0.43301,"15.2-15.3":0.7234,"15.4":1.1227,"15.5":6.82696,"15.6":12.98238,"16.0":0.17372},P:{"4":0.12398,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01033,"10.1":0.01033,"11.1-11.2":0,"12.0":0.02066,"13.0":0.03099,"14.0":0.03099,"15.0":0.02066,"16.0":0.06199,"17.0":1.03313,"18.0":1.58068},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02013,"4.2-4.3":0.00671,"4.4":0,"4.4.3-4.4.4":0.04025},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00741,"9":0.00741,"10":0,"11":0.14814,"5.5":0},J:{"7":0,"10":0.00292},N:{"10":0,"11":0},L:{"0":18.65346},S:{"2.5":0},R:{_:"0"},M:{"0":0.48098},Q:{"10.4":0},O:{"0":0.03498},H:{"0":0.1573}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00621,"49":0,"50":0,"51":0,"52":0.03107,"53":0,"54":0,"55":0.00621,"56":0,"57":0.01243,"58":0,"59":0,"60":0.00621,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00621,"69":0,"70":0,"71":0.00621,"72":0.00621,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.08698,"79":0.00621,"80":0,"81":0,"82":0,"83":0,"84":0.00621,"85":0.00621,"86":0,"87":0.00621,"88":0.00621,"89":0.00621,"90":0.00621,"91":0.14911,"92":0.00621,"93":0.00621,"94":0.00621,"95":0.01243,"96":0.00621,"97":0.01243,"98":0.00621,"99":0.01243,"100":0.01243,"101":0.01864,"102":0.06834,"103":0.16775,"104":2.42928,"105":0.90089,"106":0.00621,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00621,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01864,"50":0,"51":0,"52":0.13047,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00621,"64":0,"65":0.00621,"66":0.04349,"67":0,"68":0.01243,"69":0.00621,"70":0,"71":0,"72":0,"73":0,"74":0.00621,"75":0,"76":0,"77":0,"78":0.00621,"79":0.11183,"80":0.00621,"81":0.00621,"83":0.01864,"84":0.06213,"85":0.06213,"86":0.04349,"87":0.0932,"88":0.01864,"89":0.02485,"90":0.01243,"91":0.01864,"92":0.04349,"93":0.01243,"94":0.00621,"95":0.01864,"96":0.36035,"97":0.01864,"98":0.03107,"99":0.02485,"100":0.06213,"101":0.09941,"102":0.10562,"103":0.7642,"104":4.4423,"105":12.17127,"106":0.19882,"107":0.00621,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00621,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00621,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00621,"65":0,"66":0,"67":0,"68":0,"69":0.00621,"70":0,"71":0.00621,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.05592,"90":0.68343,"91":0.03107,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01243,"79":0,"80":0,"81":0.00621,"83":0,"84":0,"85":0.00621,"86":0.00621,"87":0,"88":0,"89":0.00621,"90":0.00621,"91":0.01243,"92":0.00621,"93":0,"94":0.00621,"95":0.00621,"96":0.01243,"97":0.01243,"98":0.01864,"99":0.01864,"100":0.02485,"101":0.03107,"102":0.03107,"103":0.16775,"104":1.74585,"105":6.24407},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00621,"13":0.02485,"14":0.17396,"15":0.04349,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01243,"10.1":0.01864,"11.1":0.03107,"12.1":0.11183,"13.1":0.3355,"14.1":0.4784,"15.1":0.08698,"15.2-15.3":0.09941,"15.4":0.22367,"15.5":0.52189,"15.6":2.41686,"16.0":0.35414,"16.1":0.01243},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.01044,"8.1-8.4":0.00348,"9.0-9.2":0.45937,"9.3":0.15312,"10.0-10.2":0.00348,"10.3":0.12876,"11.0-11.2":0.03132,"11.3-11.4":0.12528,"12.0-12.1":0.02784,"12.2-12.5":0.58466,"13.0-13.1":0.02088,"13.2":0.01392,"13.3":0.0696,"13.4-13.7":0.20533,"14.0-14.4":0.58118,"14.5-14.8":1.68437,"15.0-15.1":0.41761,"15.2-15.3":0.65426,"15.4":0.87699,"15.5":2.75972,"15.6":19.29718,"16.0":5.9475,"16.1":0.06612},P:{"4":0.18496,"5.0-5.4":0.01028,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01028,"10.1":0.01028,"11.1-11.2":0.01028,"12.0":0.01028,"13.0":0.03083,"14.0":0.0411,"15.0":0.01028,"16.0":0.06165,"17.0":0.19524,"18.0":2.85666},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01036,"4.2-4.3":0.00518,"4.4":0,"4.4.3-4.4.4":0.09067},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.16775,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00379},O:{"0":0.03787},H:{"0":0.22229},L:{"0":21.15868},S:{"2.5":0},R:{_:"0"},M:{"0":0.52639},Q:{"13.1":0}}; 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 72a61e6ca98f11..a2b04bcd9ad0ec 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00358,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00358,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.03933,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00358,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00358,"67":0.00358,"68":0.00358,"69":0,"70":0.00358,"71":0.00358,"72":0.01073,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00358,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.01073,"85":0,"86":0,"87":0,"88":0.00358,"89":0.00358,"90":0,"91":0.0143,"92":0.00358,"93":0.00358,"94":0.00358,"95":0.00715,"96":0.00358,"97":0.00715,"98":0.00358,"99":0.00358,"100":0.01788,"101":0.0143,"102":0.05363,"103":0.84728,"104":0.12513,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00358,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00715,"50":0,"51":0,"52":0,"53":0.00358,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00358,"61":0.00358,"62":0.00358,"63":0.00715,"64":0.00358,"65":0.00358,"66":0.01073,"67":0.00358,"68":0.00358,"69":0.00358,"70":0.00715,"71":0.00358,"72":0.00715,"73":0.00715,"74":0.03218,"75":0,"76":0.01073,"77":0.00715,"78":0.0143,"79":0.01788,"80":0.01073,"81":0.02145,"83":0.00715,"84":0.0143,"85":0.00358,"86":0.01788,"87":0.17518,"88":0.00715,"89":0.03218,"90":0.01788,"91":0.0143,"92":0.03218,"93":0.02145,"94":0.01788,"95":0.0143,"96":0.0572,"97":0.02145,"98":0.03575,"99":0.0429,"100":0.06435,"101":0.05005,"102":0.10368,"103":1.96983,"104":4.73688,"105":0.0143,"106":0.00358,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00358,"51":0,"52":0,"53":0,"54":0.00358,"55":0,"56":0,"57":0,"58":0.00358,"60":0.0286,"62":0,"63":0.1573,"64":0.04648,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00358,"77":0,"78":0,"79":0.01073,"80":0,"81":0,"82":0.00358,"83":0,"84":0.00358,"85":0.00715,"86":0.00358,"87":0.00358,"88":0.00715,"89":0.3146,"90":0.0286,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00358,"13":0.00358,"14":0.00358,"15":0.0286,"16":0,"17":0.00358,"18":0.01073,"79":0,"80":0,"81":0,"83":0,"84":0.00715,"85":0,"86":0,"87":0,"88":0,"89":0.00358,"90":0.00358,"91":0,"92":0.00715,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00358,"100":0.00358,"101":0.00715,"102":0.01073,"103":0.25383,"104":0.60418,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01788,"14":0.00715,"15":0.00358,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00358,"12.1":0.01073,"13.1":0.01788,"14.1":0.01788,"15.1":0.00358,"15.2-15.3":0,"15.4":0.00715,"15.5":0.0286,"15.6":0.04648,"16.0":0.00358},G:{"8":0.00929,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00186,"6.0-6.1":0,"7.0-7.1":0.01486,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03158,"10.0-10.2":0,"10.3":0.19506,"11.0-11.2":0.35853,"11.3-11.4":0.07617,"12.0-12.1":0.21549,"12.2-12.5":5.18854,"13.0-13.1":0.03901,"13.2":0.10032,"13.3":0.29166,"13.4-13.7":0.3734,"14.0-14.4":1.0143,"14.5-14.8":1.18707,"15.0-15.1":0.83596,"15.2-15.3":0.97715,"15.4":0.93256,"15.5":2.87571,"15.6":3.19152,"16.0":0.6632},P:{"4":0.07056,"5.0-5.4":0.02016,"6.2-6.4":0.01008,"7.2-7.4":0.20161,"8.2":0,"9.2":0.06048,"10.1":0,"11.1-11.2":0.07056,"12.0":0.01008,"13.0":0.02016,"14.0":0.07056,"15.0":0.0504,"16.0":0.12097,"17.0":0.625,"18.0":0.42339},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00666,"4.2-4.3":0.00778,"4.4":0,"4.4.3-4.4.4":0.11774},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01073,"5.5":0},J:{"7":0,"10":0.01285},N:{"10":0,"11":0},L:{"0":65.1265},S:{"2.5":0.00643},R:{_:"0"},M:{"0":0.35338},Q:{"10.4":0.00643},O:{"0":0.30198},H:{"0":1.55111}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00302,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0453,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.01812,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00302,"68":0.00302,"69":0.00302,"70":0,"71":0,"72":0.01208,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00302,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00906,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00906,"92":0,"93":0,"94":0.00302,"95":0.00302,"96":0,"97":0,"98":0.00302,"99":0.00604,"100":0.0453,"101":0.00302,"102":0.00906,"103":0.06946,"104":0.52548,"105":0.15704,"106":0.00302,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00604,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00302,"41":0,"42":0,"43":0.00302,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00604,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00302,"59":0,"60":0,"61":0,"62":0.00302,"63":0,"64":0.00302,"65":0,"66":0.01812,"67":0.00302,"68":0,"69":0.00604,"70":0.00604,"71":0,"72":0.00302,"73":0.00302,"74":0.02114,"75":0.00302,"76":0.01208,"77":0.00906,"78":0.01208,"79":0.01208,"80":0.01812,"81":0.03624,"83":0.00906,"84":0.00604,"85":0.00604,"86":0.0151,"87":0.12382,"88":0.00906,"89":0.0151,"90":0.01208,"91":0.00906,"92":0.01812,"93":0.0302,"94":0.0151,"95":0.0453,"96":0.06342,"97":0.0151,"98":0.02114,"99":0.0302,"100":0.04228,"101":0.03322,"102":0.05134,"103":0.15402,"104":1.00868,"105":3.5938,"106":0.06644,"107":0.00604,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00302,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00302,"51":0,"52":0,"53":0,"54":0.00302,"55":0,"56":0,"57":0,"58":0.00302,"60":0.02718,"62":0,"63":0.10872,"64":0.06644,"65":0.00604,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00302,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00604,"80":0,"81":0,"82":0,"83":0,"84":0.00302,"85":0,"86":0,"87":0,"88":0.00302,"89":0.00302,"90":0.1359,"91":0.01208,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00302,"13":0.00302,"14":0.00302,"15":0.02416,"16":0,"17":0.00302,"18":0.00604,"79":0,"80":0,"81":0,"83":0,"84":0.00302,"85":0.00302,"86":0,"87":0,"88":0,"89":0,"90":0.00302,"91":0,"92":0.00604,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00302,"102":0.00302,"103":0.0151,"104":0.12684,"105":0.50434},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00604,"14":0.0151,"15":0.00302,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00302,"12.1":0,"13.1":0.00604,"14.1":0.01208,"15.1":0.00302,"15.2-15.3":0.00302,"15.4":0.00604,"15.5":0.01208,"15.6":0.03322,"16.0":0.0151,"16.1":0},G:{"8":0.01284,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00214,"6.0-6.1":0,"7.0-7.1":0.02354,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05564,"10.0-10.2":0,"10.3":0.33599,"11.0-11.2":0.18618,"11.3-11.4":0.05136,"12.0-12.1":0.34241,"12.2-12.5":7.15199,"13.0-13.1":0.0535,"13.2":0.13268,"13.3":0.50077,"13.4-13.7":0.40233,"14.0-14.4":0.97371,"14.5-14.8":1.2883,"15.0-15.1":0.89453,"15.2-15.3":0.87099,"15.4":0.64629,"15.5":1.63712,"15.6":3.44973,"16.0":2.03089,"16.1":0.0749},P:{"4":0.05141,"5.0-5.4":0,"6.2-6.4":0.01028,"7.2-7.4":0.20564,"8.2":0,"9.2":0.06169,"10.1":0,"11.1-11.2":0.08226,"12.0":0.01028,"13.0":0.03085,"14.0":0.08226,"15.0":0.04113,"16.0":0.10282,"17.0":0.24677,"18.0":0.79171},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00255,"4.2-4.3":0.0102,"4.4":0,"4.4.3-4.4.4":0.15047},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00906,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.02094},O:{"0":0.12564},H:{"0":1.59258},L:{"0":65.62616},S:{"2.5":0.02094},R:{_:"0"},M:{"0":0.47464},Q:{"13.1":0.00698}}; 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 f72952423a38bf..95c7567fb75d84 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.004,"48":0,"49":0,"50":0,"51":0,"52":0.004,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00801,"89":0.00801,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.004,"98":0,"99":0,"100":0.004,"101":0.01201,"102":0.07205,"103":0.45234,"104":0.07606,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03603,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.03603,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.004,"77":0,"78":0,"79":1.6012,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00801,"88":0,"89":0.004,"90":0,"91":0,"92":0,"93":0,"94":0.00801,"95":0,"96":0,"97":0,"98":0,"99":0.04003,"100":0,"101":0.01601,"102":0.02802,"103":3.51063,"104":7.75781,"105":0.03202,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.004,"89":0.004,"90":0.004,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.004,"18":0.01601,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.004,"101":0,"102":0.004,"103":0.20816,"104":0.47235,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.004,"14":0.04804,"15":0.1321,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.004,"13.1":0.09607,"14.1":0.14411,"15.1":0.00801,"15.2-15.3":0.004,"15.4":0.04003,"15.5":0.27621,"15.6":0.43232,"16.0":0},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.00664,"11.0-11.2":0,"11.3-11.4":0.03983,"12.0-12.1":0.00332,"12.2-12.5":0.64067,"13.0-13.1":0.05643,"13.2":0,"13.3":0.0166,"13.4-13.7":0.07303,"14.0-14.4":1.3245,"14.5-14.8":2.95107,"15.0-15.1":0.88632,"15.2-15.3":1.51039,"15.4":2.09131,"15.5":8.92624,"15.6":14.65244,"16.0":0.01328},P:{"4":0.03038,"5.0-5.4":0,"6.2-6.4":0.01013,"7.2-7.4":0.08102,"8.2":0,"9.2":0.02025,"10.1":0,"11.1-11.2":0.13165,"12.0":0.02025,"13.0":0.1114,"14.0":0.13165,"15.0":0.1114,"16.0":0.30381,"17.0":2.09629,"18.0":2.31909},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.46997},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.10808,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":41.80551},S:{"2.5":0},R:{_:"0"},M:{"0":0.31784},Q:{"10.4":0},O:{"0":0.50375},H:{"0":0.07381}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02715,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00453,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.02715,"98":0,"99":0,"100":0.00453,"101":0,"102":0,"103":0.04073,"104":0.55658,"105":0.13123,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01358,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00453,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00453,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":1.82358,"80":0,"81":0,"83":0.00453,"84":0,"85":0,"86":0,"87":0.04525,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.0181,"95":0.03168,"96":0.02263,"97":0,"98":0,"99":0.00453,"100":0.00905,"101":0,"102":0.0181,"103":0.4706,"104":3.2037,"105":10.3351,"106":0.1267,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.09503,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.0181,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00905,"18":0.00453,"79":0,"80":0,"81":0,"83":0,"84":0.00453,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00905,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00453,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00905,"104":0.15385,"105":0.72853},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00453,"14":0.06788,"15":0.03168,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00453,"13.1":0.07693,"14.1":0.19005,"15.1":0.0181,"15.2-15.3":0.00905,"15.4":0.06788,"15.5":0.09955,"15.6":0.68328,"16.0":0.01358,"16.1":0},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.00598,"10.0-10.2":0,"10.3":0.01793,"11.0-11.2":0.00897,"11.3-11.4":0.00897,"12.0-12.1":0,"12.2-12.5":0.60367,"13.0-13.1":0.04483,"13.2":0,"13.3":0.0269,"13.4-13.7":0.14942,"14.0-14.4":1.06987,"14.5-14.8":2.68963,"15.0-15.1":0.76804,"15.2-15.3":1.15654,"15.4":1.00114,"15.5":3.46663,"15.6":17.115,"16.0":1.44941,"16.1":0},P:{"4":0.01014,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.15205,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.1115,"12.0":0.02027,"13.0":0.05068,"14.0":0.13177,"15.0":0.02027,"16.0":0.12164,"17.0":0.44601,"18.0":3.23354},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.08548},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.73305,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.5475},H:{"0":0.24362},L:{"0":40.92298},S:{"2.5":0},R:{_:"0"},M:{"0":0.90885},Q:{"13.1":0}}; 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 0fcf584c060978..f21a50c9072c6a 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00429,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00429,"74":0,"75":0,"76":0,"77":0,"78":0.00857,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00429,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.01714,"91":0.00857,"92":0,"93":0,"94":0.00857,"95":0.00429,"96":0,"97":0,"98":0.00429,"99":0.00857,"100":0.00429,"101":0.00857,"102":0.02143,"103":0.54432,"104":0.10715,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00857,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00429,"49":0.01714,"50":0,"51":0,"52":0,"53":0.00429,"54":0,"55":0,"56":0.00429,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00429,"66":0,"67":0.00857,"68":0.00429,"69":0.03429,"70":0.00429,"71":0,"72":0,"73":0,"74":0.00857,"75":0,"76":0.00429,"77":0.00429,"78":0.00429,"79":0.03857,"80":0.00429,"81":0.00857,"83":0.00857,"84":0.01714,"85":0.01286,"86":0.02143,"87":0.04715,"88":0.00857,"89":0.00857,"90":0.00857,"91":0.01286,"92":0.02572,"93":0.00429,"94":0.00429,"95":0.00857,"96":0.02143,"97":0.01714,"98":0.02143,"99":0.07286,"100":0.06429,"101":0.03857,"102":0.09858,"103":3.24022,"104":8.85488,"105":0.03,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00429,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00857,"86":0,"87":0,"88":0.01714,"89":1.5601,"90":0.07715,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00429,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00429,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00429,"99":0.00429,"100":0.00429,"101":0.01714,"102":0.00429,"103":0.33002,"104":0.96435,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00857,"14":0.02143,"15":0.00857,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00429,"10.1":0,"11.1":0.00429,"12.1":0.00857,"13.1":0.03857,"14.1":0.09001,"15.1":0.01714,"15.2-15.3":0.01714,"15.4":0.04286,"15.5":0.1543,"15.6":0.23573,"16.0":0.00429},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00491,"6.0-6.1":0.00491,"7.0-7.1":0.00246,"8.1-8.4":0.00123,"9.0-9.2":0,"9.3":0.05526,"10.0-10.2":0.00246,"10.3":0.02701,"11.0-11.2":0.0086,"11.3-11.4":0.00982,"12.0-12.1":0.01965,"12.2-12.5":0.31804,"13.0-13.1":0.0086,"13.2":0.00982,"13.3":0.03193,"13.4-13.7":0.12157,"14.0-14.4":0.27752,"14.5-14.8":0.8522,"15.0-15.1":0.14735,"15.2-15.3":0.30576,"15.4":0.46908,"15.5":2.72359,"15.6":6.75986,"16.0":0.10683},P:{"4":0.08232,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05145,"8.2":0,"9.2":0.01029,"10.1":0,"11.1-11.2":0.08232,"12.0":0.01029,"13.0":0.05145,"14.0":0.09262,"15.0":0.04116,"16.0":0.1132,"17.0":0.72034,"18.0":0.91586},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01029,"4.4":0,"4.4.3-4.4.4":0.07972},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00902,"9":0.00451,"10":0.00451,"11":0.06767,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":66.39188},S:{"2.5":0},R:{_:"0"},M:{"0":0.18856},Q:{"10.4":0},O:{"0":0.02857},H:{"0":0.19475}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00446,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00446,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00446,"74":0,"75":0,"76":0,"77":0,"78":0.00893,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00446,"91":0.07141,"92":0,"93":0,"94":0.00893,"95":0,"96":0,"97":0.00446,"98":0,"99":0.00446,"100":0.00446,"101":0.00446,"102":0.00446,"103":0.0357,"104":0.50878,"105":0.19191,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00893,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00446,"49":0.02232,"50":0,"51":0,"52":0,"53":0.00446,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00446,"66":0,"67":0.00893,"68":0.00446,"69":0.01339,"70":0.00446,"71":0,"72":0,"73":0,"74":0.00446,"75":0,"76":0,"77":0.00446,"78":0,"79":0.04017,"80":0.00446,"81":0.01339,"83":0.00893,"84":0.02232,"85":0.01785,"86":0.01785,"87":0.04463,"88":0.00446,"89":0.00893,"90":0.00446,"91":0.01785,"92":0.02232,"93":0.00446,"94":0.00446,"95":0.00893,"96":0.02232,"97":0.01785,"98":0.01785,"99":0.0357,"100":0.0357,"101":0.02678,"102":0.04017,"103":0.241,"104":2.70012,"105":10.28275,"106":0.22315,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00446,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00446,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00893,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00893,"86":0,"87":0,"88":0,"89":0.22761,"90":1.68701,"91":0.04463,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00893,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00446,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00893,"102":0.00446,"103":0.01339,"104":0.21422,"105":1.18716},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02678,"14":0.02232,"15":0.00893,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00446,"12.1":0.00446,"13.1":0.0357,"14.1":0.0848,"15.1":0.01339,"15.2-15.3":0.01339,"15.4":0.0357,"15.5":0.09372,"15.6":0.29456,"16.0":0.05802,"16.1":0.00446},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00397,"6.0-6.1":0.00265,"7.0-7.1":0.00132,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05697,"10.0-10.2":0,"10.3":0.0265,"11.0-11.2":0.00662,"11.3-11.4":0.00927,"12.0-12.1":0.01722,"12.2-12.5":0.31003,"13.0-13.1":0.00662,"13.2":0.00795,"13.3":0.02915,"13.4-13.7":0.09937,"14.0-14.4":0.24379,"14.5-14.8":0.81086,"15.0-15.1":0.12057,"15.2-15.3":0.23981,"15.4":0.34183,"15.5":0.94865,"15.6":7.65943,"16.0":2.06689,"16.1":0.03312},P:{"4":0.1132,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05145,"8.2":0,"9.2":0.01029,"10.1":0,"11.1-11.2":0.06174,"12.0":0.01029,"13.0":0.05145,"14.0":0.07203,"15.0":0.04116,"16.0":0.09261,"17.0":0.19552,"18.0":1.48183},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00833,"4.4":0,"4.4.3-4.4.4":0.07291},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0097,"9":0.00485,"10":0.00485,"11":0.09217,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.02769},H:{"0":0.18871},L:{"0":63.76048},S:{"2.5":0},R:{_:"0"},M:{"0":0.1938},Q:{"13.1":0}}; 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 a235d2f14f004e..31fd69c94d0d06 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00285,"37":0.00285,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00285,"44":0,"45":0,"46":0,"47":0.00285,"48":0,"49":0.00285,"50":0.00285,"51":0.00285,"52":0.01711,"53":0,"54":0,"55":0,"56":0.00285,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00285,"69":0,"70":0.02282,"71":0,"72":0.00856,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00285,"79":0,"80":0,"81":0.00285,"82":0.00285,"83":0,"84":0.00285,"85":0,"86":0.00285,"87":0,"88":0.00285,"89":0.00285,"90":0,"91":0.01996,"92":0,"93":0.00285,"94":0.00285,"95":0.00856,"96":0.00856,"97":0.00285,"98":0.0057,"99":0.02852,"100":0.0057,"101":0.01711,"102":0.10267,"103":0.73582,"104":0.077,"105":0.0057,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.0057,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.01141,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00285,"39":0,"40":0.0057,"41":0,"42":0.00285,"43":0.00285,"44":0.00285,"45":0,"46":0,"47":0,"48":0,"49":0.00285,"50":0.00285,"51":0,"52":0,"53":0,"54":0,"55":0.00285,"56":0.01141,"57":0.00285,"58":0.00285,"59":0,"60":0.00285,"61":0,"62":0,"63":0,"64":0.00285,"65":0,"66":0,"67":0,"68":0.01426,"69":0.00285,"70":0.00285,"71":0,"72":0.0057,"73":0.00285,"74":0.0057,"75":0.00285,"76":0.00285,"77":0.0057,"78":0,"79":0.00856,"80":0.00856,"81":0.01426,"83":0.00285,"84":0.00285,"85":0.03137,"86":0.00856,"87":0.00856,"88":0.0057,"89":0.0057,"90":0.01426,"91":0.0057,"92":0.0057,"93":0.0057,"94":0.00856,"95":0.01996,"96":0.01141,"97":0.01711,"98":0.01996,"99":0.00856,"100":0.02282,"101":0.01996,"102":0.05704,"103":0.90408,"104":1.95077,"105":0.0057,"106":0.00285,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00285,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00285,"38":0,"39":0,"40":0,"41":0,"42":0.0057,"43":0,"44":0,"45":0,"46":0.00285,"47":0,"48":0,"49":0,"50":0.00285,"51":0.00285,"52":0,"53":0,"54":0,"55":0.01711,"56":0,"57":0.0057,"58":0.02282,"60":0.08556,"62":0.00285,"63":0.1369,"64":0.06845,"65":0,"66":0,"67":0.00285,"68":0,"69":0,"70":0.00285,"71":0.0057,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01426,"80":0,"81":0.00285,"82":0,"83":0.00285,"84":0.00285,"85":0.00856,"86":0.00285,"87":0.00285,"88":0.0057,"89":0.26238,"90":0.02282,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00285},B:{"12":0.00856,"13":0.00285,"14":0.01711,"15":0.00856,"16":0.00285,"17":0.0057,"18":0.01426,"79":0,"80":0,"81":0,"83":0,"84":0.00285,"85":0.00285,"86":0,"87":0,"88":0,"89":0.00285,"90":0.00285,"91":0,"92":0.01141,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.0057,"99":0.00285,"100":0.00856,"101":0.0057,"102":0.0057,"103":0.1369,"104":0.29376,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00285,"11":0,"12":0,"13":0.00285,"14":0.00285,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.0057,"14.1":0.00285,"15.1":0.00856,"15.2-15.3":0.00285,"15.4":0.0057,"15.5":0.0057,"15.6":0.01141,"16.0":0},G:{"8":0.00339,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00226,"6.0-6.1":0.01016,"7.0-7.1":0.01128,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08689,"10.0-10.2":0.02257,"10.3":0.67708,"11.0-11.2":0.19748,"11.3-11.4":0.08463,"12.0-12.1":0.24262,"12.2-12.5":2.52663,"13.0-13.1":0.04062,"13.2":0.18394,"13.3":0.33177,"13.4-13.7":0.40963,"14.0-14.4":1.04157,"14.5-14.8":1.19279,"15.0-15.1":0.83281,"15.2-15.3":0.82942,"15.4":0.47621,"15.5":1.1815,"15.6":0.81701,"16.0":0.08012},P:{"4":0.28537,"5.0-5.4":0.02038,"6.2-6.4":0.01019,"7.2-7.4":0.09172,"8.2":0.06115,"9.2":0.07134,"10.1":0,"11.1-11.2":0.06115,"12.0":0.02038,"13.0":0.04077,"14.0":0.1223,"15.0":0.02038,"16.0":0.10192,"17.0":0.44843,"18.0":0.22422},I:{"0":0,"3":0,"4":0.00092,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00322,"4.2-4.3":0.01196,"4.4":0,"4.4.3-4.4.4":0.12098},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04848,"5.5":0},J:{"7":0,"10":0.04289},N:{"10":0,"11":0},L:{"0":74.38023},S:{"2.5":0.02859},R:{_:"0"},M:{"0":0.40744},Q:{"10.4":0.00715},O:{"0":0.84346},H:{"0":3.64756}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00482,"38":0.00241,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00241,"48":0,"49":0.00241,"50":0.00241,"51":0.00241,"52":0.01205,"53":0,"54":0,"55":0,"56":0.00482,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00241,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00241,"69":0,"70":0.00482,"71":0,"72":0.00482,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00241,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00241,"85":0,"86":0.00241,"87":0,"88":0,"89":0.00241,"90":0,"91":0.01205,"92":0.00241,"93":0.00241,"94":0,"95":0.00723,"96":0.00482,"97":0.00241,"98":0.00241,"99":0.00482,"100":0.00241,"101":0.00482,"102":0.04818,"103":0.04095,"104":0.32762,"105":0.08432,"106":0.00241,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00241,"39":0,"40":0.00482,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00241,"50":0.00241,"51":0,"52":0,"53":0,"54":0,"55":0.00241,"56":0.00964,"57":0.00241,"58":0.00241,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00241,"67":0,"68":0.01927,"69":0.00241,"70":0.00241,"71":0,"72":0.00482,"73":0.00241,"74":0.00482,"75":0,"76":0.00241,"77":0.00241,"78":0,"79":0.02168,"80":0.00482,"81":0.00964,"83":0.00241,"84":0.00482,"85":0.02409,"86":0.00723,"87":0.00482,"88":0.00241,"89":0.00241,"90":0.00723,"91":0.00723,"92":0.00482,"93":0.00241,"94":0.00482,"95":0.00723,"96":0.00723,"97":0.00964,"98":0.00964,"99":0.00723,"100":0.00964,"101":0.00964,"102":0.01686,"103":0.06745,"104":0.47939,"105":1.30086,"106":0.01686,"107":0.00241,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00241,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00482,"38":0,"39":0,"40":0,"41":0,"42":0.00241,"43":0,"44":0,"45":0,"46":0.00241,"47":0,"48":0,"49":0,"50":0.00241,"51":0.00241,"52":0,"53":0,"54":0.00241,"55":0.00482,"56":0,"57":0.00241,"58":0.01445,"60":0.04818,"62":0,"63":0.06263,"64":0.08672,"65":0.00482,"66":0,"67":0.00241,"68":0,"69":0,"70":0.01686,"71":0.00723,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00241,"80":0,"81":0,"82":0,"83":0,"84":0.00241,"85":0.00241,"86":0,"87":0,"88":0.00241,"89":0.00482,"90":0.11322,"91":0.00723,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00241},B:{"12":0.00723,"13":0.00241,"14":0.01205,"15":0.00723,"16":0.00241,"17":0.00241,"18":0.01686,"79":0,"80":0,"81":0,"83":0,"84":0.00241,"85":0.00241,"86":0,"87":0,"88":0,"89":0.00241,"90":0.00241,"91":0,"92":0.00964,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00241,"99":0,"100":0.00241,"101":0.00482,"102":0.00241,"103":0.01445,"104":0.05782,"105":0.18308},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00241,"11":0,"12":0,"13":0.00241,"14":0.00241,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0.00241,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00241,"14.1":0.00482,"15.1":0,"15.2-15.3":0.00241,"15.4":0.00241,"15.5":0.00241,"15.6":0.00964,"16.0":0.00241,"16.1":0},G:{"8":0.00115,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00115,"6.0-6.1":0,"7.0-7.1":0.0287,"8.1-8.4":0,"9.0-9.2":0.0023,"9.3":0.10448,"10.0-10.2":0.01952,"10.3":0.65556,"11.0-11.2":0.12973,"11.3-11.4":0.07807,"12.0-12.1":0.20436,"12.2-12.5":2.7577,"13.0-13.1":0.09414,"13.2":0.1217,"13.3":0.30424,"13.4-13.7":0.39035,"14.0-14.4":0.9024,"14.5-14.8":1.25601,"15.0-15.1":0.73592,"15.2-15.3":0.57175,"15.4":0.66359,"15.5":0.93225,"15.6":1.08035,"16.0":0.35017,"16.1":0.01148},P:{"4":0.21076,"5.0-5.4":0.05018,"6.2-6.4":0.02007,"7.2-7.4":0.09033,"8.2":0.06022,"9.2":0.09033,"10.1":0.02007,"11.1-11.2":0.08029,"12.0":0.02007,"13.0":0.03011,"14.0":0.10036,"15.0":0.03011,"16.0":0.08029,"17.0":0.25091,"18.0":0.36131},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00294,"4.2-4.3":0.02158,"4.4":0,"4.4.3-4.4.4":0.15402},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.13009,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.04555},O:{"0":0.6756},H:{"0":3.90236},L:{"0":76.63828},S:{"2.5":0.02277},R:{_:"0"},M:{"0":0.334},Q:{"13.1":0.00759}}; 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 bb3cda63e54c79..64f9eb9a6df44f 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01923,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.28076,"44":0,"45":0.00769,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00769,"53":0,"54":0,"55":0,"56":0,"57":0.00385,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00385,"64":0,"65":0,"66":0,"67":0,"68":0.00385,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00769,"79":0.00385,"80":0.00385,"81":0.00385,"82":0.00385,"83":0.00385,"84":0,"85":0,"86":0,"87":0,"88":0.00385,"89":0.00385,"90":0.00769,"91":0.00769,"92":0,"93":0.00385,"94":0.00385,"95":0.00385,"96":0.00385,"97":0.00385,"98":0.00385,"99":0.00385,"100":0.00385,"101":0.00769,"102":0.03846,"103":0.34614,"104":0.04615,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00385,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00385,"32":0,"33":0,"34":0.00385,"35":0,"36":0,"37":0,"38":0,"39":0.00385,"40":0.00385,"41":0.00385,"42":0.00385,"43":0.00769,"44":0.00385,"45":0.00769,"46":0.00385,"47":0.00769,"48":0.05,"49":0.03461,"50":0.00385,"51":0.00385,"52":0.00385,"53":0.01154,"54":0.00769,"55":0.02692,"56":0.00769,"57":0.03461,"58":0.00385,"59":0.00769,"60":0.00385,"61":0.00385,"62":0.02308,"63":0.02308,"64":0,"65":0.01154,"66":0.00385,"67":0.00769,"68":0.00769,"69":0.58075,"70":0.26922,"71":0.00769,"72":0.31922,"73":0.04615,"74":0.2423,"75":0.04615,"76":0.01154,"77":0.03461,"78":0.1923,"79":0.10384,"80":0.04231,"81":0.04615,"83":0.08461,"84":0.04231,"85":0.03846,"86":0.16153,"87":0.0923,"88":0.02308,"89":0.01923,"90":0.03461,"91":0.01923,"92":0.21922,"93":0.00769,"94":0.02308,"95":0.03461,"96":0.10384,"97":0.11538,"98":0.07692,"99":0.06923,"100":0.08461,"101":0.06538,"102":0.0923,"103":0.6269,"104":1.08842,"105":0.01538,"106":0.00769,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00385,"86":0,"87":0,"88":0,"89":0.01538,"90":0.00385,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00385,"17":0.00385,"18":0.03846,"79":0,"80":0,"81":0,"83":0,"84":0.00385,"85":0.00385,"86":0.00385,"87":0.00385,"88":0,"89":0.00385,"90":0.00385,"91":0,"92":0.01154,"93":0.00385,"94":0,"95":0.00385,"96":0.00385,"97":0.00385,"98":0.01154,"99":0.01154,"100":0.01538,"101":0.03461,"102":0.03077,"103":0.71536,"104":1.54225,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00385,"10":0,"11":0,"12":0,"13":0.01154,"14":0.03846,"15":0.00769,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00385,"12.1":0.00769,"13.1":0.03846,"14.1":0.04615,"15.1":0.01154,"15.2-15.3":0.01154,"15.4":0.04231,"15.5":0.10769,"15.6":0.16153,"16.0":0.00385},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.08208,"5.0-5.1":0.02592,"6.0-6.1":0.03744,"7.0-7.1":0.00864,"8.1-8.4":0.01728,"9.0-9.2":0.13391,"9.3":0.05184,"10.0-10.2":0.036,"10.3":0.23471,"11.0-11.2":0.61485,"11.3-11.4":0.09503,"12.0-12.1":0.16847,"12.2-12.5":0.44494,"13.0-13.1":0.05904,"13.2":0.03888,"13.3":0.15263,"13.4-13.7":0.91435,"14.0-14.4":1.22249,"14.5-14.8":1.31033,"15.0-15.1":0.7574,"15.2-15.3":0.91003,"15.4":1.44568,"15.5":1.97845,"15.6":3.58396,"16.0":0.07344},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0.12067,"15.0":0,"16.0":0.02194,"17.0":0.35105,"18.0":0.01097},I:{"0":0,"3":0,"4":0.02252,"2.1":0,"2.2":0,"2.3":0,"4.1":0.2365,"4.2-4.3":0.07883,"4.4":0,"4.4.3-4.4.4":0.38291},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.03295,"7":0,"8":0.16476,"9":0.56019,"10":0.03295,"11":3.32821,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":44.79493},S:{"2.5":0},R:{_:"0"},M:{"0":0.17231},Q:{"10.4":4.86166},O:{"0":12.29569},H:{"0":0.1107}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00411,"33":0,"34":0,"35":0,"36":0.02463,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.17652,"44":0,"45":0.00821,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00821,"53":0,"54":0,"55":0,"56":0.00411,"57":0.00411,"58":0,"59":0.00411,"60":0,"61":0,"62":0,"63":0.00411,"64":0,"65":0,"66":0,"67":0,"68":0.00821,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00821,"79":0.00411,"80":0.00411,"81":0.00411,"82":0.00411,"83":0.00411,"84":0,"85":0,"86":0,"87":0.00411,"88":0,"89":0.00411,"90":0.00821,"91":0.00821,"92":0,"93":0.00411,"94":0.00411,"95":0.00411,"96":0.00411,"97":0.00411,"98":0.00411,"99":0.00411,"100":0.00411,"101":0.00821,"102":0.02053,"103":0.02874,"104":0.3243,"105":0.09442,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00411,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00411,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00411,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00821,"40":0.00821,"41":0.00821,"42":0.00821,"43":0.01642,"44":0.00821,"45":0.01232,"46":0.00821,"47":0.01232,"48":0.05747,"49":0.04105,"50":0.00821,"51":0.00821,"52":0.00821,"53":0.01642,"54":0.00821,"55":0.03695,"56":0.01232,"57":0.04105,"58":0.00821,"59":0.01232,"60":0.00821,"61":0.00411,"62":0.02463,"63":0.03284,"64":0,"65":0.01232,"66":0.00411,"67":0.00821,"68":0.00411,"69":0.54597,"70":0.1601,"71":0.00821,"72":0.17241,"73":0.02053,"74":0.19294,"75":0.05337,"76":0.01232,"77":0.01642,"78":0.26272,"79":0.11494,"80":0.04926,"81":0.06158,"83":0.09852,"84":0.05337,"85":0.04516,"86":0.19704,"87":0.14368,"88":0.01642,"89":0.02463,"90":0.03284,"91":0.078,"92":0.19704,"93":0.01232,"94":0.02463,"95":0.03695,"96":0.07389,"97":0.11905,"98":0.08621,"99":0.06979,"100":0.078,"101":0.06568,"102":0.078,"103":0.21757,"104":0.56649,"105":1.35465,"106":0.03695,"107":0.00411,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.02053,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00411,"15":0,"16":0.00411,"17":0.00821,"18":0.04926,"79":0,"80":0,"81":0,"83":0,"84":0.00411,"85":0.00411,"86":0.00821,"87":0.00821,"88":0,"89":0.00411,"90":0.00411,"91":0,"92":0.01232,"93":0,"94":0,"95":0,"96":0.00411,"97":0.00411,"98":0.00411,"99":0.00411,"100":0.01232,"101":0.05747,"102":0.02463,"103":0.14778,"104":0.47208,"105":2.04429},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00821,"10":0,"11":0,"12":0,"13":0.00821,"14":0.03695,"15":0.00821,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00411,"10.1":0,"11.1":0.00411,"12.1":0.00821,"13.1":0.04105,"14.1":0.04516,"15.1":0.01232,"15.2-15.3":0.01232,"15.4":0.03695,"15.5":0.06158,"15.6":0.20115,"16.0":0.03284,"16.1":0.00411},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.08849,"5.0-5.1":0.0295,"6.0-6.1":0.03982,"7.0-7.1":0.00885,"8.1-8.4":0.01475,"9.0-9.2":0.14011,"9.3":0.04719,"10.0-10.2":0.03687,"10.3":0.17698,"11.0-11.2":0.4159,"11.3-11.4":0.09291,"12.0-12.1":0.17255,"12.2-12.5":0.46604,"13.0-13.1":0.06047,"13.2":0.0354,"13.3":0.15928,"13.4-13.7":0.93209,"14.0-14.4":1.29194,"14.5-14.8":1.25802,"15.0-15.1":0.70054,"15.2-15.3":0.76543,"15.4":1.28899,"15.5":1.14299,"15.6":4.05576,"16.0":1.07662,"16.1":0.02212},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0.01029,"13.0":0.01029,"14.0":0.10287,"15.0":0,"16.0":0.02057,"17.0":0.29833,"18.0":0.0823},I:{"0":0,"3":0,"4":0.03835,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03835,"4.2-4.3":0.07671,"4.4":0,"4.4.3-4.4.4":0.40911},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.02539,"7":0.02539,"8":0.17773,"9":1.1933,"10":0.05078,"11":3.6053,"5.5":0},N:{"10":0.0059,"11":0},J:{"7":0,"10":0},O:{"0":12.82752},H:{"0":0.10604},L:{"0":41.42497},S:{"2.5":0},R:{_:"0"},M:{"0":0.16506},Q:{"13.1":4.98128}}; 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 bd03ce4ffd0972..f43fed54e87f95 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00471,"51":0,"52":0.00471,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00471,"74":0,"75":0,"76":0,"77":0,"78":0.00471,"79":0,"80":0.00471,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00471,"89":0,"90":0.02354,"91":0.00941,"92":0,"93":0,"94":0,"95":0.00471,"96":0,"97":0,"98":0,"99":0.00471,"100":0.00471,"101":0.00471,"102":0.01883,"103":0.45658,"104":0.09885,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00471,"23":0,"24":0,"25":0,"26":0.00471,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00941,"39":0,"40":0,"41":0,"42":0.00471,"43":0,"44":0,"45":0,"46":0,"47":0.00471,"48":0,"49":0.01412,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00471,"63":0,"64":0,"65":0,"66":0,"67":0.00471,"68":0.01412,"69":0.03766,"70":0.00471,"71":0.00471,"72":0.00471,"73":0.00471,"74":0.00471,"75":0.00471,"76":0.00941,"77":0.00471,"78":0.00941,"79":0.07531,"80":0.00941,"81":0.01412,"83":0.01412,"84":0.01883,"85":0.01412,"86":0.01883,"87":0.03766,"88":0.01412,"89":0.02354,"90":0.00941,"91":0.03295,"92":0.02824,"93":0.01412,"94":0.01412,"95":0.02354,"96":0.03766,"97":0.04707,"98":0.04707,"99":0.0659,"100":0.06119,"101":0.06119,"102":0.12238,"103":4.02919,"104":11.8334,"105":0.04236,"106":0.00471,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00471,"64":0.00471,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00471,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00471,"83":0,"84":0,"85":0.00941,"86":0.00471,"87":0,"88":0.01412,"89":0.92728,"90":0.05178,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00941,"79":0,"80":0,"81":0,"83":0,"84":0.00471,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00471,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00471,"100":0.00471,"101":0.02354,"102":0.00941,"103":0.32949,"104":1.03083,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00471,"14":0.02354,"15":0.00471,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00471,"10.1":0,"11.1":0.00471,"12.1":0.00471,"13.1":0.03295,"14.1":0.06119,"15.1":0.01883,"15.2-15.3":0.01412,"15.4":0.03766,"15.5":0.12709,"15.6":0.19769,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00426,"6.0-6.1":0.00085,"7.0-7.1":0.01362,"8.1-8.4":0,"9.0-9.2":0.00085,"9.3":0.05703,"10.0-10.2":0,"10.3":0.06299,"11.0-11.2":0.01107,"11.3-11.4":0.00596,"12.0-12.1":0.00426,"12.2-12.5":0.33794,"13.0-13.1":0.00596,"13.2":0.0034,"13.3":0.01873,"13.4-13.7":0.0681,"14.0-14.4":0.16258,"14.5-14.8":0.49542,"15.0-15.1":0.10896,"15.2-15.3":0.20855,"15.4":0.31751,"15.5":1.91271,"15.6":4.6409,"16.0":0.06384},P:{"4":0.17039,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.08018,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03007,"12.0":0.01002,"13.0":0.03007,"14.0":0.04009,"15.0":0.03007,"16.0":0.07016,"17.0":0.45103,"18.0":0.50115},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00714,"4.2-4.3":0.01905,"4.4":0,"4.4.3-4.4.4":0.12146},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02354,"5.5":0},J:{"7":0,"10":0.00529},N:{"10":0,"11":0},L:{"0":67.12104},S:{"2.5":0},R:{_:"0"},M:{"0":0.1535},Q:{"10.4":0},O:{"0":0.04234},H:{"0":0.13029}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00484,"51":0,"52":0.00484,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00484,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00484,"74":0,"75":0,"76":0,"77":0,"78":0.00484,"79":0,"80":0,"81":0,"82":0.00484,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00484,"89":0,"90":0.00484,"91":0.00969,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00484,"100":0,"101":0.00484,"102":0.00969,"103":0.0339,"104":0.45524,"105":0.15982,"106":0.00484,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00484,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00969,"39":0,"40":0,"41":0,"42":0.00484,"43":0,"44":0,"45":0,"46":0,"47":0.00484,"48":0,"49":0.01453,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00484,"63":0,"64":0,"65":0.00484,"66":0,"67":0.00484,"68":0.00969,"69":0.01937,"70":0.00484,"71":0.00484,"72":0.00484,"73":0.00484,"74":0.00484,"75":0.00484,"76":0.00969,"77":0.00484,"78":0.00484,"79":0.0678,"80":0.00969,"81":0.00969,"83":0.01937,"84":0.02906,"85":0.01937,"86":0.02422,"87":0.0339,"88":0.01453,"89":0.01937,"90":0.00969,"91":0.03874,"92":0.02422,"93":0.01453,"94":0.00969,"95":0.02422,"96":0.03874,"97":0.04359,"98":0.04359,"99":0.03874,"100":0.05327,"101":0.04843,"102":0.06296,"103":0.27605,"104":3.26903,"105":13.73959,"106":0.27605,"107":0.00484,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00484,"64":0.00969,"65":0,"66":0,"67":0,"68":0,"69":0.00484,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00484,"86":0,"87":0,"88":0.00484,"89":0.11623,"90":0.89596,"91":0.02906,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00484,"79":0,"80":0,"81":0,"83":0,"84":0.00484,"85":0.00484,"86":0,"87":0.00484,"88":0,"89":0,"90":0,"91":0,"92":0.00484,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00484,"100":0,"101":0.00969,"102":0.00484,"103":0.01453,"104":0.20825,"105":1.24465},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00484,"14":0.02422,"15":0.00969,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00484,"10.1":0,"11.1":0,"12.1":0.00484,"13.1":0.0339,"14.1":0.06296,"15.1":0.01453,"15.2-15.3":0.01453,"15.4":0.0339,"15.5":0.0678,"15.6":0.24215,"16.0":0.05327,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00344,"6.0-6.1":0,"7.0-7.1":0.01033,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04477,"10.0-10.2":0,"10.3":0.05769,"11.0-11.2":0.00344,"11.3-11.4":0.00603,"12.0-12.1":0.00603,"12.2-12.5":0.32117,"13.0-13.1":0.00431,"13.2":0.00344,"13.3":0.01464,"13.4-13.7":0.06458,"14.0-14.4":0.13088,"14.5-14.8":0.40297,"15.0-15.1":0.08094,"15.2-15.3":0.15671,"15.4":0.20751,"15.5":0.61823,"15.6":4.78829,"16.0":1.48617,"16.1":0.01292},P:{"4":0.17603,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.07248,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02071,"12.0":0.01035,"13.0":0.02071,"14.0":0.03106,"15.0":0.02071,"16.0":0.05177,"17.0":0.13461,"18.0":0.7766},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00532,"4.2-4.3":0.05673,"4.4":0,"4.4.3-4.4.4":0.08154},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00484,"10":0,"11":0.02906,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00516},O:{"0":0.02579},H:{"0":0.1367},L:{"0":65.72334},S:{"2.5":0},R:{_:"0"},M:{"0":0.13408},Q:{"13.1":0}}; 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 a07e6768025c11..70c06b50e607d6 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00436,"53":0,"54":0,"55":0,"56":0.00873,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01745,"74":0,"75":0,"76":0,"77":0,"78":0.00436,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00873,"85":0,"86":0,"87":0,"88":0.07417,"89":0,"90":0.04363,"91":0.02182,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00436,"100":0.00436,"101":0.00873,"102":0.02618,"103":0.75916,"104":0.14834,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00873,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00436,"66":0,"67":0.00436,"68":0,"69":0.00436,"70":0,"71":0,"72":0,"73":0.00436,"74":0,"75":0,"76":0.00436,"77":0.02182,"78":0.00436,"79":0.01309,"80":0.00436,"81":0.01309,"83":0.00873,"84":0.01309,"85":0.00436,"86":0.02618,"87":0.01745,"88":0.00873,"89":0.00873,"90":0.00436,"91":0.01309,"92":0.03927,"93":0.00873,"94":0.02182,"95":0.00873,"96":0.02182,"97":0.02618,"98":0.01309,"99":0.02618,"100":0.02618,"101":0.0349,"102":0.15707,"103":3.21553,"104":8.68237,"105":0.03054,"106":0.00436,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00436,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00436,"60":0,"62":0,"63":0.01309,"64":0.01309,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00436,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01309,"89":0.84206,"90":0.0349,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00873,"18":0.00436,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00436,"91":0,"92":0.01309,"93":0,"94":0,"95":0,"96":0,"97":0.00436,"98":0,"99":0.00436,"100":0,"101":0.01745,"102":0.00873,"103":0.47557,"104":1.37871,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00873,"14":0.0349,"15":0.00873,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01309,"12.1":0.00873,"13.1":0.07853,"14.1":0.09599,"15.1":0.01745,"15.2-15.3":0.03054,"15.4":0.08726,"15.5":0.30105,"15.6":0.53665,"16.0":0.00873},G:{"8":0,"3.2":0.00162,"4.0-4.1":0.00162,"4.2-4.3":0,"5.0-5.1":0.00324,"6.0-6.1":0.00811,"7.0-7.1":0.02757,"8.1-8.4":0,"9.0-9.2":0.00162,"9.3":0.10219,"10.0-10.2":0.00487,"10.3":0.03244,"11.0-11.2":0.00487,"11.3-11.4":0.0146,"12.0-12.1":0.00487,"12.2-12.5":0.38443,"13.0-13.1":0.00324,"13.2":0.00162,"13.3":0.02757,"13.4-13.7":0.06002,"14.0-14.4":0.23195,"14.5-14.8":0.72992,"15.0-15.1":0.12976,"15.2-15.3":0.32765,"15.4":0.48824,"15.5":3.37387,"15.6":10.05673,"16.0":0.1914},P:{"4":0.11231,"5.0-5.4":0,"6.2-6.4":0.01021,"7.2-7.4":0.11231,"8.2":0,"9.2":0.01021,"10.1":0,"11.1-11.2":0.08168,"12.0":0.01021,"13.0":0.05105,"14.0":0.05105,"15.0":0.03063,"16.0":0.09189,"17.0":1.00055,"18.0":1.35789},I:{"0":0,"3":0,"4":0.04335,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01084,"4.2-4.3":0.02168,"4.4":0,"4.4.3-4.4.4":0.26012},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02618,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":56.44023},S:{"2.5":0},R:{_:"0"},M:{"0":0.29876},Q:{"10.4":0},O:{"0":0.02819},H:{"0":0.22948}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0045,"53":0,"54":0,"55":0,"56":0.0045,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.02699,"74":0,"75":0,"76":0,"77":0,"78":0.009,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.05849,"89":0,"90":0.009,"91":0.0135,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.0045,"99":0.0045,"100":0,"101":0.0045,"102":0.009,"103":0.03149,"104":0.70184,"105":0.24745,"106":0.0045,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.0045,"48":0,"49":0.0045,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.0045,"66":0,"67":0.0045,"68":0.0045,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.04049,"78":0.0045,"79":0.0135,"80":0.0135,"81":0.0225,"83":0.018,"84":0.0045,"85":0.0045,"86":0.0135,"87":0.018,"88":0.009,"89":0.009,"90":0.0045,"91":0.0135,"92":0.03599,"93":0.0045,"94":0.018,"95":0.0045,"96":0.02699,"97":0.02699,"98":0.0135,"99":0.018,"100":0.0135,"101":0.06299,"102":0.03599,"103":0.27894,"104":2.63641,"105":10.07776,"106":0.21595,"107":0.0045,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0045,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0045,"64":0.0135,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.0045,"89":0.11248,"90":0.81882,"91":0.0225,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.0135,"18":0.0045,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0045,"93":0,"94":0,"95":0,"96":0,"97":0.0045,"98":0,"99":0.0045,"100":0,"101":0.009,"102":0.0045,"103":0.0135,"104":0.27894,"105":1.55216},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0045,"14":0.04049,"15":0.009,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.009,"12.1":0.009,"13.1":0.06749,"14.1":0.08998,"15.1":0.018,"15.2-15.3":0.03149,"15.4":0.06749,"15.5":0.15747,"15.6":0.70634,"16.0":0.13047,"16.1":0.009},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00676,"6.0-6.1":0.00676,"7.0-7.1":0.01689,"8.1-8.4":0,"9.0-9.2":0.00169,"9.3":0.03716,"10.0-10.2":0,"10.3":0.03378,"11.0-11.2":0.00338,"11.3-11.4":0.01351,"12.0-12.1":0.00676,"12.2-12.5":0.41722,"13.0-13.1":0.00845,"13.2":0.00338,"13.3":0.02534,"13.4-13.7":0.07263,"14.0-14.4":0.20776,"14.5-14.8":0.61485,"15.0-15.1":0.13006,"15.2-15.3":0.21959,"15.4":0.28715,"15.5":0.89018,"15.6":10.3291,"16.0":3.16376,"16.1":0.05405},P:{"4":0.1231,"5.0-5.4":0,"6.2-6.4":0.01026,"7.2-7.4":0.10259,"8.2":0,"9.2":0.01026,"10.1":0,"11.1-11.2":0.07181,"12.0":0.01026,"13.0":0.06155,"14.0":0.04103,"15.0":0.03078,"16.0":0.08207,"17.0":0.28724,"18.0":2.19535},I:{"0":0,"3":0,"4":0.03413,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0128,"4.2-4.3":0.0512,"4.4":0,"4.4.3-4.4.4":0.22185},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02699,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.03301},H:{"0":0.22394},L:{"0":57.57269},S:{"2.5":0},R:{_:"0"},M:{"0":0.28055},Q:{"13.1":0}}; 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 56af97bc91abaa..eb1f54dcbfc226 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00428,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00643,"33":0,"34":0.00428,"35":0.00214,"36":0.00214,"37":0,"38":0,"39":0.00214,"40":0.00214,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00214,"47":0.00214,"48":0.00214,"49":0.00214,"50":0.00428,"51":0,"52":0.01285,"53":0,"54":0.03213,"55":0,"56":0.00428,"57":0.01285,"58":0.00214,"59":0.00214,"60":0.00428,"61":0.00214,"62":0.00214,"63":0.00214,"64":0.00428,"65":0.00428,"66":0.00214,"67":0.00428,"68":0.03427,"69":0.00214,"70":0.00428,"71":0.00428,"72":0.01928,"73":0.00214,"74":0,"75":0.00214,"76":0,"77":0.00214,"78":0.00643,"79":0,"80":0.00214,"81":0.00428,"82":0.00428,"83":0.00428,"84":0.00428,"85":0.00214,"86":0.00214,"87":0.00428,"88":0.00857,"89":0.01071,"90":0.00643,"91":0.03427,"92":0.00428,"93":0.01071,"94":0.01285,"95":0.00857,"96":0.01285,"97":0.01499,"98":0.01714,"99":0.04927,"100":0.04284,"101":0.05141,"102":0.10924,"103":0.90178,"104":0.11995,"105":0.00428,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00214,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00214,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00214,"61":0,"62":0.00214,"63":0.00214,"64":0,"65":0,"66":0,"67":0.00214,"68":0.00214,"69":0.01285,"70":0.01071,"71":0.00428,"72":0.00214,"73":0.00214,"74":0.00428,"75":0.00214,"76":0.00428,"77":0.00857,"78":0,"79":0.00643,"80":0.00643,"81":0.00857,"83":0.00214,"84":0,"85":0.00643,"86":0.00643,"87":0.00643,"88":0.02142,"89":0.01071,"90":0.01071,"91":0.00428,"92":0.00643,"93":0.00428,"94":0.00857,"95":0.00428,"96":0.0257,"97":0.02785,"98":0.01499,"99":0.02356,"100":0.0257,"101":0.02785,"102":0.0407,"103":0.35343,"104":0.67473,"105":0.00214,"106":0,"107":0,_:"108"},F:{"9":0,"11":0.00214,"12":0,"15":0,"16":0,"17":0.00214,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00214,"32":0,"33":0.00428,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00214,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00214,"60":0.01499,"62":0,"63":0.02356,"64":0.00857,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00643,"80":0.00214,"81":0,"82":0.00428,"83":0,"84":0.00214,"85":0.00428,"86":0.00214,"87":0.00214,"88":0.01285,"89":0.10282,"90":0.01285,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00214},B:{"12":0.00214,"13":0.00214,"14":0.00214,"15":0.00214,"16":0.00214,"17":0.00214,"18":0.01071,"79":0,"80":0,"81":0,"83":0,"84":0.00428,"85":0.00214,"86":0,"87":0,"88":0,"89":0.00214,"90":0.00643,"91":0,"92":0.00643,"93":0,"94":0,"95":0.00214,"96":0.00428,"97":0.00214,"98":0.01499,"99":0.00214,"100":0.00214,"101":0.01285,"102":0.00857,"103":0.07069,"104":0.12852,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00214,"14":0.00214,"15":0.00214,_:"0","3.1":0,"3.2":0,"5.1":0.00214,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00214,"14.1":0.00214,"15.1":0.00214,"15.2-15.3":0.00214,"15.4":0.00214,"15.5":0.00643,"15.6":0.00857,"16.0":0},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.04544,"8.1-8.4":0.06777,"9.0-9.2":0.00231,"9.3":0.04005,"10.0-10.2":0.00231,"10.3":0.05006,"11.0-11.2":0.03851,"11.3-11.4":0.01617,"12.0-12.1":0.01771,"12.2-12.5":0.90649,"13.0-13.1":0.04544,"13.2":0.06161,"13.3":0.14479,"13.4-13.7":0.32963,"14.0-14.4":0.96194,"14.5-14.8":0.70162,"15.0-15.1":0.60073,"15.2-15.3":0.79712,"15.4":0.4259,"15.5":1.25152,"15.6":1.1437,"16.0":0.04852},P:{"4":0.32145,"5.0-5.4":0.03014,"6.2-6.4":0.02009,"7.2-7.4":0.45204,"8.2":0.01005,"9.2":0.06027,"10.1":0.03014,"11.1-11.2":0.13059,"12.0":0.02009,"13.0":0.1105,"14.0":0.16072,"15.0":0.05023,"16.0":0.41186,"17.0":0.79358,"18.0":0.32145},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00414,"4.2-4.3":0.04143,"4.4":0,"4.4.3-4.4.4":0.24441},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00643,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":82.64192},S:{"2.5":0},R:{_:"0"},M:{"0":0.59721},Q:{"10.4":0.00786},O:{"0":0.0943},H:{"0":1.06384}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00223,"25":0,"26":0,"27":0,"28":0.00223,"29":0,"30":0,"31":0,"32":0.00223,"33":0,"34":0.00446,"35":0.00223,"36":0.00223,"37":0,"38":0,"39":0,"40":0.00223,"41":0.00223,"42":0.00223,"43":0,"44":0,"45":0,"46":0.00223,"47":0.00223,"48":0.00223,"49":0.00223,"50":0.00446,"51":0,"52":0.02005,"53":0,"54":0.04456,"55":0,"56":0.00223,"57":0.0156,"58":0.00223,"59":0.00446,"60":0.00668,"61":0.00223,"62":0.00223,"63":0,"64":0.00223,"65":0.00668,"66":0.00223,"67":0.01114,"68":0.02228,"69":0.00446,"70":0.00223,"71":0.01114,"72":0.0156,"73":0.00223,"74":0,"75":0.00223,"76":0,"77":0.00223,"78":0.00668,"79":0.00223,"80":0.00446,"81":0.00446,"82":0.00446,"83":0.00223,"84":0.00446,"85":0.00446,"86":0.00446,"87":0.00446,"88":0.01337,"89":0.00891,"90":0.00668,"91":0.04679,"92":0.00223,"93":0.00891,"94":0.01337,"95":0.00891,"96":0.02228,"97":0.01782,"98":0.01782,"99":0.04456,"100":0.03565,"101":0.06238,"102":0.05347,"103":0.14928,"104":0.98478,"105":0.18938,"106":0.00223,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00223,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00223,"52":0,"53":0,"54":0,"55":0.00223,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00223,"63":0,"64":0,"65":0.00223,"66":0,"67":0.00223,"68":0.00223,"69":0.02005,"70":0.0156,"71":0.00223,"72":0.00223,"73":0.00223,"74":0.00223,"75":0.00223,"76":0,"77":0.00891,"78":0,"79":0.00668,"80":0.00446,"81":0.00668,"83":0.00223,"84":0.00891,"85":0.00223,"86":0.00891,"87":0.02896,"88":0.03119,"89":0.00668,"90":0.0156,"91":0.00668,"92":0.00446,"93":0.00223,"94":0.01114,"95":0.00668,"96":0.02674,"97":0.02896,"98":0.02451,"99":0.01337,"100":0.02451,"101":0.01337,"102":0.02451,"103":0.07575,"104":0.30746,"105":0.7397,"106":0.00446,"107":0.00223,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00223,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00223,"48":0,"49":0,"50":0.00223,"51":0,"52":0,"53":0,"54":0.00223,"55":0,"56":0,"57":0,"58":0.00223,"60":0.0401,"62":0,"63":0.00446,"64":0.02674,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00223,"71":0.00223,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00446,"80":0,"81":0,"82":0,"83":0,"84":0.00223,"85":0.00223,"86":0,"87":0.00446,"88":0.00446,"89":0.00891,"90":0.11363,"91":0.00446,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00223},B:{"12":0.00223,"13":0.00446,"14":0.00223,"15":0.00446,"16":0.00446,"17":0.00446,"18":0.0156,"79":0,"80":0,"81":0,"83":0,"84":0.00446,"85":0.00446,"86":0,"87":0,"88":0,"89":0.00446,"90":0.01782,"91":0,"92":0.01337,"93":0,"94":0,"95":0.00223,"96":0.00223,"97":0,"98":0.00223,"99":0.00223,"100":0.00668,"101":0.00446,"102":0.00446,"103":0.0156,"104":0.06238,"105":0.17378},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00223,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00223,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00223,"14.1":0.00223,"15.1":0,"15.2-15.3":0,"15.4":0.00223,"15.5":0.00891,"15.6":0.01114,"16.0":0.00223,"16.1":0},G:{"8":0.00078,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00544,"6.0-6.1":0,"7.0-7.1":0.0334,"8.1-8.4":0.13903,"9.0-9.2":0.00233,"9.3":0.01553,"10.0-10.2":0.00078,"10.3":0.04272,"11.0-11.2":0.02097,"11.3-11.4":0.0101,"12.0-12.1":0.02019,"12.2-12.5":1.16195,"13.0-13.1":0.03573,"13.2":0.07689,"13.3":0.14602,"13.4-13.7":0.34408,"14.0-14.4":0.90641,"14.5-14.8":0.74486,"15.0-15.1":0.44738,"15.2-15.3":0.76661,"15.4":0.35651,"15.5":0.6936,"15.6":1.33593,"16.0":0.38758,"16.1":0.00233},P:{"4":0.33191,"5.0-5.4":0.03017,"6.2-6.4":0.04023,"7.2-7.4":0.41237,"8.2":0.01006,"9.2":0.05029,"10.1":0.03017,"11.1-11.2":0.09052,"12.0":0.02012,"13.0":0.10058,"14.0":0.20116,"15.0":0.07041,"16.0":0.33191,"17.0":0.4526,"18.0":0.73423},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01306,"4.2-4.3":0.04985,"4.4":0,"4.4.3-4.4.4":0.30388},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00891,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00777},O:{"0":0.09326},H:{"0":1.14049},L:{"0":81.99893},S:{"2.5":0},R:{_:"0"},M:{"0":0.54404},Q:{"13.1":0.00777}}; 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 e16746266e49bb..68bb22fddf0989 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00367,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01468,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00734,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00367,"78":0.00367,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00367,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00367,"92":0,"93":0,"94":0,"95":0.00367,"96":0.00367,"97":0.00367,"98":0,"99":0.00367,"100":0,"101":0.01101,"102":0.03669,"103":0.3669,"104":0.06971,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00367,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01101,"41":0,"42":0.00367,"43":0.01835,"44":0,"45":0,"46":0.00367,"47":0,"48":0,"49":0.03302,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00367,"64":0.00367,"65":0.00367,"66":0,"67":0.00367,"68":0,"69":0.01468,"70":0.00367,"71":0,"72":0.00367,"73":0,"74":0.00367,"75":0,"76":0.00734,"77":0.00367,"78":0.03669,"79":0.02935,"80":0.01468,"81":0.16877,"83":0.00734,"84":0.00734,"85":0.01101,"86":0.00734,"87":0.01101,"88":0.01101,"89":0.02935,"90":0.01835,"91":0.01101,"92":0.00734,"93":0.01835,"94":0.00734,"95":0.00734,"96":0.01835,"97":0.01101,"98":0.01468,"99":0.01468,"100":0.02201,"101":0.02935,"102":0.07338,"103":2.13169,"104":6.41708,"105":0.02568,"106":0.00367,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00734,"64":0.00367,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.04403,"80":0,"81":0,"82":0,"83":0,"84":0.00367,"85":0.00367,"86":0,"87":0,"88":0.02201,"89":0.70078,"90":0.02568,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00734,"16":0,"17":0,"18":0.00734,"79":0,"80":0,"81":0,"83":0,"84":0.00367,"85":0.00367,"86":0,"87":0,"88":0.00367,"89":0.00367,"90":0.00367,"91":0.00367,"92":0.00734,"93":0,"94":0.00367,"95":0,"96":0,"97":0,"98":0.00367,"99":0.00367,"100":0,"101":0.00367,"102":0.01101,"103":0.66776,"104":0.85855,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00367,"14":0.06604,"15":0.01835,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00734,"12.1":0.00367,"13.1":0.02935,"14.1":0.02568,"15.1":0.00367,"15.2-15.3":0,"15.4":0.03669,"15.5":0.06971,"15.6":0.13575,"16.0":0.01468},G:{"8":0.00301,"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.01959,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02412,"10.0-10.2":0.01055,"10.3":0.4356,"11.0-11.2":0.21102,"11.3-11.4":0.01055,"12.0-12.1":0.19896,"12.2-12.5":1.98208,"13.0-13.1":0.01206,"13.2":0.02562,"13.3":0.05275,"13.4-13.7":0.22308,"14.0-14.4":1.04756,"14.5-14.8":1.05962,"15.0-15.1":0.34215,"15.2-15.3":0.95109,"15.4":0.65115,"15.5":2.87288,"15.6":4.79466,"16.0":0.13566},P:{"4":0.72141,"5.0-5.4":0,"6.2-6.4":0.03092,"7.2-7.4":0.15459,"8.2":0,"9.2":0.06183,"10.1":0,"11.1-11.2":0.16489,"12.0":0,"13.0":0.12367,"14.0":0.07214,"15.0":0.22673,"16.0":0.15459,"17.0":0.84508,"18.0":0.62865},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0203,"4.2-4.3":0.02706,"4.4":0,"4.4.3-4.4.4":0.47134},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01468,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":66.04348},S:{"2.5":0},R:{_:"0"},M:{"0":0.10763},Q:{"10.4":0},O:{"0":0.09497},H:{"0":0.40758}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01087,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00362,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00362,"79":0,"80":0,"81":0.00362,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00362,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00362,"103":0.02537,"104":0.32254,"105":0.10872,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00362,"35":0.00362,"36":0,"37":0,"38":0,"39":0,"40":0.03624,"41":0,"42":0.00362,"43":0.0145,"44":0.00362,"45":0,"46":0.05074,"47":0,"48":0,"49":0.01087,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00362,"56":0.00725,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00362,"64":0,"65":0.01087,"66":0,"67":0,"68":0,"69":0.01812,"70":0.00725,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.01087,"77":0,"78":0.0145,"79":0.03986,"80":0.00362,"81":0.15221,"83":0.0145,"84":0.01087,"85":0.00725,"86":0.00725,"87":0.0145,"88":0.01812,"89":0.02899,"90":0.02174,"91":0.03262,"92":0.01812,"93":0.00725,"94":0.01087,"95":0.01087,"96":0.03986,"97":0.06523,"98":0.02174,"99":0.02537,"100":0.01812,"101":0.03624,"102":0.06161,"103":0.1812,"104":2.10192,"105":6.1753,"106":0.13409,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00725,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.02174,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00362,"86":0,"87":0,"88":0.00362,"89":0.02174,"90":0.18482,"91":0.01812,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00362,"13":0,"14":0.01087,"15":0.00362,"16":0,"17":0,"18":0.00725,"79":0,"80":0,"81":0,"83":0,"84":0.00362,"85":0.00362,"86":0.00362,"87":0,"88":0.00362,"89":0.00725,"90":0.00362,"91":0.00362,"92":0.00725,"93":0.00362,"94":0,"95":0.00362,"96":0.00362,"97":0.00362,"98":0.00362,"99":0.00362,"100":0.00362,"101":0.00725,"102":0.01812,"103":0.0761,"104":0.19207,"105":1.00747},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00725,"14":0.07248,"15":0.00725,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.02537,"14.1":0.02537,"15.1":0.00725,"15.2-15.3":0.00725,"15.4":0.01812,"15.5":0.02174,"15.6":0.15946,"16.0":0.02537,"16.1":0.00725},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00282,"6.0-6.1":0.00282,"7.0-7.1":0.06066,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01411,"10.0-10.2":0,"10.3":0.02539,"11.0-11.2":0.04091,"11.3-11.4":0.01693,"12.0-12.1":0.31743,"12.2-12.5":2.01603,"13.0-13.1":0.00988,"13.2":0.01552,"13.3":0.06631,"13.4-13.7":0.1566,"14.0-14.4":1.03552,"14.5-14.8":0.76324,"15.0-15.1":0.34565,"15.2-15.3":0.97486,"15.4":0.40913,"15.5":1.46159,"15.6":5.38642,"16.0":0.73503,"16.1":0.00423},P:{"4":0.36597,"5.0-5.4":0.01017,"6.2-6.4":0.01017,"7.2-7.4":0.17282,"8.2":0,"9.2":0.02033,"10.1":0,"11.1-11.2":0.13216,"12.0":0,"13.0":0.22365,"14.0":0.08133,"15.0":0.18299,"16.0":0.15249,"17.0":0.30498,"18.0":1.25041},I:{"0":0,"3":0,"4":0.00273,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00957,"4.2-4.3":0.01913,"4.4":0,"4.4.3-4.4.4":0.36353},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00725,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.01275},O:{"0":0.08926},H:{"0":0.40444},L:{"0":68.61956},S:{"2.5":0},R:{_:"0"},M:{"0":0.05738},Q:{"13.1":0}}; 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 d677bb150153a1..f9eca39c9c8315 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.74438,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.74438,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":59.99663,"104":37.03018,"105":0,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0},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":1.49438,"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":0,"16.0":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":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 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":0},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":1.28,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":1.28,"103":0,"104":3.85,"105":0,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":1.28,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":3.85,"105":84.62,"106":0,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":2.56,"90":0,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0},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":0,"16.0":0,"16.1":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":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 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":1.28,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":0},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"13.1":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 39c5cfe60641e4..c33a90b1ea519c 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.08388,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00466,"79":0.00466,"80":0.00932,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00466,"89":0,"90":0,"91":0.01864,"92":0,"93":0,"94":0.00466,"95":0,"96":0,"97":0,"98":0,"99":0.00466,"100":0,"101":0.00466,"102":0.02796,"103":0.54988,"104":0.0932,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00466,"36":0,"37":0,"38":0.00466,"39":0,"40":0,"41":0,"42":0.69434,"43":0.00466,"44":0,"45":0,"46":0,"47":0.00466,"48":0,"49":0.00932,"50":0,"51":0.00466,"52":0,"53":0.00466,"54":0,"55":0,"56":0.00466,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00466,"69":0.00466,"70":0.7223,"71":0.70832,"72":0,"73":0.00466,"74":0,"75":0.00466,"76":0.00466,"77":0,"78":0.00466,"79":0.0699,"80":0,"81":0.00932,"83":0.01864,"84":0.00932,"85":0.01398,"86":0.01864,"87":0.02796,"88":0.00466,"89":0.02796,"90":0,"91":0.02796,"92":0.01864,"93":0.00932,"94":0.00466,"95":0.00932,"96":0.00932,"97":0.0233,"98":0.0466,"99":0.01398,"100":0.03262,"101":0.05126,"102":0.13048,"103":3.73266,"104":9.52038,"105":0.0233,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01864,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00466,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00466,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00466,"62":0,"63":0.0233,"64":0.01864,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01864,"86":0,"87":0,"88":0.01864,"89":0.87608,"90":0.05592,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00466,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00932,"102":0.00932,"103":0.48464,"104":1.26286,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00466,"13":0.01398,"14":0.04194,"15":0.00466,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00932,"12.1":0.00466,"13.1":0.22834,"14.1":0.1165,"15.1":0.0466,"15.2-15.3":0.0233,"15.4":0.03728,"15.5":0.19572,"15.6":0.31688,"16.0":0.00466},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.01777,"8.1-8.4":0,"9.0-9.2":0.00592,"9.3":0.07554,"10.0-10.2":0.00592,"10.3":0.11998,"11.0-11.2":0.01333,"11.3-11.4":0.03851,"12.0-12.1":0.01926,"12.2-12.5":0.5525,"13.0-13.1":0.01333,"13.2":0.00592,"13.3":0.03555,"13.4-13.7":0.1659,"14.0-14.4":0.40734,"14.5-14.8":1.13462,"15.0-15.1":0.24292,"15.2-15.3":0.35105,"15.4":0.5599,"15.5":3.07798,"15.6":7.84454,"16.0":0.11554},P:{"4":0.24612,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.08204,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02051,"12.0":0.01025,"13.0":0.04102,"14.0":0.06153,"15.0":0.02051,"16.0":0.08204,"17.0":1.46644,"18.0":2.34835},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00806,"4.2-4.3":0.01611,"4.4":0,"4.4.3-4.4.4":0.14903},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.10252,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":53.89656},S:{"2.5":0},R:{_:"0"},M:{"0":0.20826},Q:{"10.4":0},O:{"0":0.3738},H:{"0":0.41456}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.03261,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00932,"79":0.01398,"80":0,"81":0,"82":0.01398,"83":0,"84":0.00466,"85":0,"86":0,"87":0,"88":0.00466,"89":0,"90":0,"91":0.01398,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00932,"103":0.0233,"104":0.47988,"105":0.18636,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00466,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00466,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.64294,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01398,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00466,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00466,"67":0.00466,"68":0.00466,"69":0.00466,"70":0.59169,"71":0.72215,"72":0.00466,"73":0.00466,"74":0,"75":0.00466,"76":0.00466,"77":0.00466,"78":0,"79":0.05125,"80":0,"81":0.00466,"83":0.02795,"84":0.00466,"85":0.06057,"86":0.03727,"87":0.03727,"88":0.00466,"89":0.01864,"90":0,"91":0.00466,"92":0.03261,"93":0.00932,"94":0.01864,"95":0.00932,"96":0.00932,"97":0.01864,"98":0.00466,"99":0.01398,"100":0.01864,"101":0.01864,"102":0.06523,"103":0.20966,"104":2.75813,"105":10.4548,"106":0.20034,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00932,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00466,"62":0,"63":0.00932,"64":0.04193,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00466,"86":0,"87":0,"88":0.00466,"89":0.06523,"90":0.73612,"91":0.00932,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00466,"16":0,"17":0,"18":0.01864,"79":0,"80":0,"81":0,"83":0,"84":0.01398,"85":0,"86":0.00466,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00466,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00466,"102":0.00466,"103":0.00932,"104":0.22363,"105":1.61201},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00466,"14":0.03727,"15":0.00932,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00466,"12.1":0.00466,"13.1":0.20034,"14.1":0.11648,"15.1":0.04193,"15.2-15.3":0.01398,"15.4":0.02795,"15.5":0.07454,"15.6":0.45658,"16.0":0.04659,"16.1":0.00466},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00155,"6.0-6.1":0.00774,"7.0-7.1":0.0062,"8.1-8.4":0,"9.0-9.2":0.01084,"9.3":0.05731,"10.0-10.2":0.00155,"10.3":0.10997,"11.0-11.2":0.01394,"11.3-11.4":0.02633,"12.0-12.1":0.02013,"12.2-12.5":0.52506,"13.0-13.1":0.01084,"13.2":0.00774,"13.3":0.03407,"13.4-13.7":0.11926,"14.0-14.4":0.57772,"14.5-14.8":0.96028,"15.0-15.1":0.17967,"15.2-15.3":0.26795,"15.4":0.37017,"15.5":0.88904,"15.6":8.54962,"16.0":2.39761,"16.1":0.02943},P:{"4":0.14389,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03083,"8.2":0,"9.2":0.02056,"10.1":0.01028,"11.1-11.2":0.01028,"12.0":0.01028,"13.0":0.04111,"14.0":0.03083,"15.0":0.02056,"16.0":0.06167,"17.0":0.17472,"18.0":3.38133},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01699,"4.4":0,"4.4.3-4.4.4":0.1529},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00466,"10":0,"11":0.0792,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.34182},H:{"0":0.41969},L:{"0":54.07553},S:{"2.5":0},R:{_:"0"},M:{"0":0.18159},Q:{"13.1":0}}; 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 76111011d63be2..67bd888139ef34 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00515,"51":0,"52":0.10302,"53":0.00515,"54":0,"55":0,"56":0.01545,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00515,"66":0.00515,"67":0,"68":0.0103,"69":0,"70":0,"71":0,"72":0.00515,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02576,"79":0,"80":0,"81":0.00515,"82":0,"83":0,"84":0.0103,"85":0,"86":0.00515,"87":0,"88":0.0103,"89":0.00515,"90":0,"91":0.13393,"92":0.00515,"93":0.00515,"94":0.00515,"95":0.00515,"96":0.00515,"97":0.0103,"98":0.00515,"99":0.0206,"100":0.02576,"101":0.05666,"102":0.10302,"103":2.46218,"104":0.45844,"105":0.00515,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00515,"39":0,"40":0,"41":0.00515,"42":0.00515,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01545,"50":0,"51":0,"52":0,"53":0.00515,"54":0,"55":0,"56":0.00515,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00515,"69":0,"70":0.00515,"71":0.00515,"72":0.00515,"73":0.00515,"74":0.00515,"75":0.00515,"76":0.00515,"77":0.00515,"78":0.00515,"79":0.05151,"80":0.00515,"81":0.03091,"83":0.01545,"84":0.01545,"85":0.01545,"86":0.0206,"87":0.02576,"88":0.0103,"89":0.05666,"90":0.03091,"91":0.01545,"92":0.02576,"93":0.0103,"94":0.0103,"95":0.02576,"96":0.04121,"97":0.02576,"98":0.01545,"99":0.04121,"100":1.18988,"101":0.05666,"102":0.22149,"103":3.56964,"104":10.10626,"105":0.02576,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00515,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0103,"64":0.01545,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00515,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00515,"80":0,"81":0.00515,"82":0,"83":0,"84":0,"85":0.07211,"86":0.00515,"87":0.00515,"88":0.01545,"89":1.25169,"90":0.07727,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01545},B:{"12":0,"13":0,"14":0,"15":0.00515,"16":0,"17":0.00515,"18":0.00515,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00515,"92":0.00515,"93":0,"94":0.00515,"95":0,"96":0.00515,"97":0.00515,"98":0.01545,"99":0.00515,"100":0.00515,"101":0.02576,"102":0.04121,"103":0.87052,"104":2.60126,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00515,"14":0.04121,"15":0.0103,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01545,"10.1":0,"11.1":0.00515,"12.1":0.00515,"13.1":0.06696,"14.1":0.11847,"15.1":0.03091,"15.2-15.3":0.03091,"15.4":0.08242,"15.5":0.28846,"15.6":0.5048,"16.0":0.0103},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00161,"6.0-6.1":0,"7.0-7.1":0.00644,"8.1-8.4":0.00322,"9.0-9.2":0.00161,"9.3":0.05632,"10.0-10.2":0.00322,"10.3":0.06919,"11.0-11.2":0.01609,"11.3-11.4":0.01287,"12.0-12.1":0.01931,"12.2-12.5":0.34113,"13.0-13.1":0.00483,"13.2":0.00965,"13.3":0.01609,"13.4-13.7":0.06758,"14.0-14.4":0.21079,"14.5-14.8":0.671,"15.0-15.1":0.18183,"15.2-15.3":0.32665,"15.4":0.58572,"15.5":3.8313,"15.6":9.3956,"16.0":0.2478},P:{"4":0.11335,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.0103,"11.1-11.2":0.02061,"12.0":0.0103,"13.0":0.04122,"14.0":0.04122,"15.0":0.03091,"16.0":0.07213,"17.0":0.93768,"18.0":1.52501},I:{"0":0,"3":0,"4":0.00727,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03273,"4.2-4.3":0.02909,"4.4":0,"4.4.3-4.4.4":0.22546},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.02634,"9":0,"10":0.01054,"11":0.19492,"5.5":0},J:{"7":0,"10":0.00485},N:{"10":0,"11":0},L:{"0":50.47216},S:{"2.5":0},R:{_:"0"},M:{"0":0.44126},Q:{"10.4":0.00485},O:{"0":0.10183},H:{"0":0.53711}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.09352,"53":0,"54":0,"55":0,"56":0.011,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.0055,"67":0,"68":0.011,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.022,"79":0.011,"80":0,"81":0,"82":0,"83":0.0055,"84":0.0055,"85":0,"86":0,"87":0,"88":0.011,"89":0.0055,"90":0,"91":0.11552,"92":0,"93":0.0055,"94":0.0055,"95":0.011,"96":0.0055,"97":0.0055,"98":0.0055,"99":0.0165,"100":0.02751,"101":0.022,"102":0.07151,"103":0.17053,"104":2.38193,"105":0.81415,"106":0.0055,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.011,"39":0,"40":0,"41":0,"42":0.0055,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0165,"50":0,"51":0,"52":0,"53":0.0055,"54":0,"55":0,"56":0.0055,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.011,"67":0.0055,"68":0.0055,"69":0,"70":0.0055,"71":0.0055,"72":0.0055,"73":0.0055,"74":0.0055,"75":0.0055,"76":0.0055,"77":0.0055,"78":0.0055,"79":0.06051,"80":0.011,"81":0.03301,"83":0.0055,"84":0.022,"85":0.022,"86":0.03301,"87":0.03301,"88":0.011,"89":0.04951,"90":0.011,"91":0.011,"92":0.022,"93":0.011,"94":0.011,"95":0.04401,"96":0.03851,"97":0.022,"98":0.022,"99":0.02751,"100":1.06719,"101":0.04401,"102":0.19804,"103":0.25855,"104":3.11357,"105":12.58629,"106":0.18703,"107":0.0055,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.0055,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0055,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.0165,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.0055,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.0055,"80":0,"81":0.0055,"82":0,"83":0.0055,"84":0,"85":0.02751,"86":0,"87":0,"88":0.0055,"89":0.14853,"90":1.35875,"91":0.06601,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0055},B:{"12":0,"13":0,"14":0,"15":0.0055,"16":0,"17":0.0055,"18":0.0055,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.011,"86":0.0055,"87":0,"88":0,"89":0,"90":0,"91":0.0055,"92":0.0055,"93":0,"94":0,"95":0,"96":0.0055,"97":0.0055,"98":0.0055,"99":0.0055,"100":0,"101":0.011,"102":0.03301,"103":0.04401,"104":0.58861,"105":3.49864},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0055,"14":0.04401,"15":0.011,_:"0","3.1":0,"3.2":0,"5.1":0.0055,"6.1":0,"7.1":0,"9.1":0.022,"10.1":0.0055,"11.1":0.0055,"12.1":0.011,"13.1":0.08252,"14.1":0.11002,"15.1":0.02751,"15.2-15.3":0.02751,"15.4":0.08252,"15.5":0.17603,"15.6":0.68212,"16.0":0.15403,"16.1":0.011},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0017,"6.0-6.1":0,"7.0-7.1":0.00681,"8.1-8.4":0.00511,"9.0-9.2":0.0017,"9.3":0.05959,"10.0-10.2":0.0017,"10.3":0.07322,"11.0-11.2":0.01703,"11.3-11.4":0.01192,"12.0-12.1":0.01703,"12.2-12.5":0.3201,"13.0-13.1":0.00511,"13.2":0.00511,"13.3":0.01532,"13.4-13.7":0.06981,"14.0-14.4":0.1907,"14.5-14.8":0.65724,"15.0-15.1":0.13111,"15.2-15.3":0.24689,"15.4":0.40183,"15.5":1.13399,"15.6":9.78701,"16.0":3.41388,"16.1":0.08003},P:{"4":0.14283,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.0102,"11.1-11.2":0.0204,"12.0":0,"13.0":0.04081,"14.0":0.03061,"15.0":0.0204,"16.0":0.06121,"17.0":0.13263,"18.0":2.13231},I:{"0":0,"3":0,"4":0.00382,"2.1":0,"2.2":0,"2.3":0.01146,"4.1":0.0191,"4.2-4.3":0.03055,"4.4":0,"4.4.3-4.4.4":0.25207},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.03922,"9":0.0056,"10":0.01121,"11":0.24653,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.0045},O:{"0":0.08548},H:{"0":0.48983},L:{"0":46.36526},S:{"2.5":0},R:{_:"0"},M:{"0":0.4319},Q:{"13.1":0.0045}}; 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 9d1b091255b6bb..30b7ebb6b579f4 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00476,"49":0,"50":0.00476,"51":0,"52":0.05713,"53":0,"54":0,"55":0.00476,"56":0.00476,"57":0,"58":0,"59":0.00952,"60":0.00476,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00476,"67":0,"68":0.01428,"69":0,"70":0.00476,"71":0,"72":0.00476,"73":0,"74":0.00952,"75":0,"76":0,"77":0.06665,"78":0.05237,"79":0.00952,"80":0.00952,"81":0.00952,"82":0.00476,"83":0.01428,"84":0.01428,"85":0.00476,"86":0.02857,"87":0.00476,"88":0.01428,"89":0.00952,"90":0.00476,"91":0.17616,"92":0.00476,"93":0.00476,"94":0.00952,"95":0.01428,"96":0.00952,"97":0.02381,"98":0.01428,"99":0.02381,"100":0.02381,"101":0.04285,"102":0.23805,"103":3.68501,"104":0.71415,"105":0.00476,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.01428,"36":0,"37":0,"38":0,"39":0,"40":0.00476,"41":0.00952,"42":0,"43":0.02857,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01428,"50":0,"51":0,"52":0.01904,"53":0,"54":0,"55":0,"56":0.00476,"57":0,"58":0,"59":0,"60":0.00952,"61":0.01904,"62":0,"63":0.00476,"64":0.00476,"65":0.0857,"66":0.04285,"67":0.00952,"68":0.01428,"69":0.06189,"70":0.00952,"71":0.00952,"72":0.01428,"73":0.00476,"74":0.00476,"75":0.59513,"76":0.00476,"77":0.00952,"78":0.01904,"79":0.03809,"80":0.31423,"81":0.02857,"83":0.03333,"84":0.06189,"85":0.07142,"86":0.06189,"87":0.07618,"88":0.00952,"89":0.02381,"90":0.01904,"91":0.01428,"92":0.02381,"93":0.00952,"94":0.00952,"95":0.01428,"96":0.03333,"97":0.01904,"98":0.01428,"99":0.03809,"100":0.08094,"101":0.06189,"102":0.1095,"103":2.01866,"104":5.17521,"105":0.01904,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00476,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00952,"64":0.00952,"65":0,"66":0,"67":0,"68":0.00476,"69":0.00476,"70":0.00476,"71":0.00952,"72":0.00476,"73":0.00476,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00476,"83":0,"84":0,"85":0.00476,"86":0.00476,"87":0.00476,"88":0.01904,"89":1.13788,"90":0.1095,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00476,"15":0.00476,"16":0,"17":0.00476,"18":0.00952,"79":0,"80":0,"81":0,"83":0,"84":0.00476,"85":0.00476,"86":0.00476,"87":0.00476,"88":0,"89":0.00476,"90":0.00476,"91":0.00476,"92":0.00476,"93":0,"94":0.00476,"95":0.00476,"96":0.00476,"97":0.00476,"98":0.00476,"99":0.00952,"100":0.00952,"101":0.02857,"102":0.03809,"103":0.80937,"104":2.2948,"105":0},E:{"4":0,"5":0,"6":0,"7":0.00476,"8":0,"9":0,"10":0,"11":0,"12":0.00476,"13":0.01428,"14":0.06665,"15":0.01904,_:"0","3.1":0,"3.2":0,"5.1":0.00476,"6.1":0,"7.1":0,"9.1":0.01904,"10.1":0.00476,"11.1":0.01904,"12.1":0.01904,"13.1":0.12855,"14.1":0.18092,"15.1":0.03809,"15.2-15.3":0.04285,"15.4":0.13331,"15.5":0.53323,"15.6":1.0617,"16.0":0.01428},G:{"8":0.0052,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0104,"6.0-6.1":0.0052,"7.0-7.1":0.0078,"8.1-8.4":0.01299,"9.0-9.2":0.03119,"9.3":0.12734,"10.0-10.2":0.0104,"10.3":0.11695,"11.0-11.2":0.05198,"11.3-11.4":0.08836,"12.0-12.1":0.07277,"12.2-12.5":0.73287,"13.0-13.1":0.02859,"13.2":0.01299,"13.3":0.07017,"13.4-13.7":0.2209,"14.0-14.4":0.55355,"14.5-14.8":1.45015,"15.0-15.1":0.33785,"15.2-15.3":0.61852,"15.4":0.99015,"15.5":5.64206,"15.6":14.51447,"16.0":0.26508},P:{"4":0.10318,"5.0-5.4":0.01032,"6.2-6.4":0,"7.2-7.4":0.03095,"8.2":0,"9.2":0.01032,"10.1":0.01032,"11.1-11.2":0.05159,"12.0":0.02064,"13.0":0.07223,"14.0":0.06191,"15.0":1.74375,"16.0":0.13413,"17.0":1.69216,"18.0":2.81682},I:{"0":0,"3":0,"4":0.00889,"2.1":0,"2.2":0.00889,"2.3":0,"4.1":0.09479,"4.2-4.3":0.0474,"4.4":0,"4.4.3-4.4.4":0.14811},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00489,"9":0.00489,"10":0.00489,"11":0.16625,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":37.8597},S:{"2.5":0},R:{_:"0"},M:{"0":1.10543},Q:{"10.4":0.00524},O:{"0":0.13621},H:{"0":0.59023}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00524,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00524,"49":0,"50":0.00524,"51":0,"52":0.05238,"53":0,"54":0,"55":0,"56":0.00524,"57":0,"58":0,"59":0.00524,"60":0.00524,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00524,"67":0,"68":0.01571,"69":0,"70":0.00524,"71":0.00524,"72":0.00524,"73":0,"74":0,"75":0.00524,"76":0,"77":0.04714,"78":0.05762,"79":0.01048,"80":0.01048,"81":0.01048,"82":0.01048,"83":0.01571,"84":0.01048,"85":0.00524,"86":0.03143,"87":0.00524,"88":0.01048,"89":0.00524,"90":0.00524,"91":0.16238,"92":0.00524,"93":0.00524,"94":0.01048,"95":0.01048,"96":0.00524,"97":0.01048,"98":0.01048,"99":0.01571,"100":0.02619,"101":0.02619,"102":0.1519,"103":0.23047,"104":3.10613,"105":1.43521,"106":0.00524,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00524,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.01571,"42":0,"43":0.02619,"44":0.00524,"45":0.00524,"46":0,"47":0.00524,"48":0.00524,"49":0.01571,"50":0,"51":0,"52":0.01571,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00524,"59":0,"60":0.00524,"61":0,"62":0,"63":0.00524,"64":0,"65":0.06286,"66":0.0419,"67":0.00524,"68":0.02095,"69":0.03667,"70":0.00524,"71":0.01048,"72":0.01571,"73":0,"74":0.00524,"75":0.6338,"76":0.00524,"77":0.01048,"78":0.01048,"79":0.03667,"80":0.02619,"81":0.02095,"83":0.04714,"84":0.09428,"85":0.09428,"86":0.11,"87":0.09952,"88":0.01048,"89":0.02095,"90":0.01571,"91":0.03143,"92":0.02619,"93":0.01048,"94":0.01048,"95":0.01571,"96":0.02619,"97":0.01571,"98":0.01571,"99":0.03667,"100":0.07857,"101":0.03667,"102":0.06809,"103":0.21476,"104":1.56092,"105":7.94081,"106":0.20428,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00524,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00524,"64":0.01571,"65":0,"66":0,"67":0,"68":0,"69":0.00524,"70":0.00524,"71":0.01048,"72":0.00524,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00524,"81":0,"82":0,"83":0,"84":0,"85":0.00524,"86":0.00524,"87":0,"88":0.00524,"89":0.09952,"90":1.7914,"91":0.06809,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00524,"18":0.02095,"79":0,"80":0,"81":0,"83":0,"84":0.01048,"85":0.00524,"86":0.00524,"87":0.00524,"88":0,"89":0.00524,"90":0.00524,"91":0,"92":0.00524,"93":0,"94":0.00524,"95":0.00524,"96":0.00524,"97":0.00524,"98":0.00524,"99":0.00524,"100":0.00524,"101":0.01571,"102":0.02095,"103":0.05238,"104":0.48713,"105":3.24232},E:{"4":0,"5":0,"6":0,"7":0.00524,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01048,"14":0.08905,"15":0.02095,_:"0","3.1":0,"3.2":0,"5.1":0.00524,"6.1":0,"7.1":0,"9.1":0.01048,"10.1":0.00524,"11.1":0.02095,"12.1":0.02095,"13.1":0.14143,"14.1":0.20952,"15.1":0.05238,"15.2-15.3":0.05238,"15.4":0.14143,"15.5":0.32476,"15.6":1.63949,"16.0":0.23047,"16.1":0.01571},G:{"8":0.00568,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00284,"6.0-6.1":0,"7.0-7.1":0.00852,"8.1-8.4":0.01136,"9.0-9.2":0.0284,"9.3":0.10225,"10.0-10.2":0.00568,"10.3":0.09089,"11.0-11.2":0.03408,"11.3-11.4":0.06817,"12.0-12.1":0.05397,"12.2-12.5":0.59647,"13.0-13.1":0.02556,"13.2":0.01704,"13.3":0.04829,"13.4-13.7":0.17042,"14.0-14.4":0.44025,"14.5-14.8":1.23555,"15.0-15.1":0.26983,"15.2-15.3":0.44877,"15.4":0.62488,"15.5":1.70137,"15.6":15.20436,"16.0":6.4845,"16.1":0.06817},P:{"4":0.10296,"5.0-5.4":0.0103,"6.2-6.4":0,"7.2-7.4":0.02059,"8.2":0,"9.2":0.0103,"10.1":0.0103,"11.1-11.2":0.02059,"12.0":0.02059,"13.0":0.05148,"14.0":0.04118,"15.0":1.009,"16.0":0.09266,"17.0":0.20592,"18.0":3.66536},I:{"0":0,"3":0,"4":0.0083,"2.1":0,"2.2":0.0083,"2.3":0,"4.1":0.0332,"4.2-4.3":0.05395,"4.4":0,"4.4.3-4.4.4":0.18673},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00539,"9":0.00539,"10":0,"11":0.17255,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.11429},H:{"0":0.48239},L:{"0":33.75309},S:{"2.5":0},R:{_:"0"},M:{"0":0.87145},Q:{"13.1":0.00476}}; 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 853b3c7161aad9..d1b2a9abf6b4b9 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00324,"78":0.00324,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00971,"90":0,"91":0.01618,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00647,"98":0,"99":0,"100":0.00324,"101":0.00647,"102":0.08411,"103":0.4529,"104":0.08735,"105":0.00324,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00324,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00324,"50":0,"51":0,"52":0,"53":0.00324,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00647,"71":0,"72":0,"73":0,"74":0.00324,"75":0.00324,"76":0.00324,"77":0,"78":0,"79":0.00647,"80":0.00324,"81":0.00971,"83":0,"84":0,"85":0,"86":0,"87":0.00324,"88":0,"89":0.00324,"90":0.00324,"91":0.00324,"92":0,"93":0,"94":0,"95":0,"96":0.00647,"97":0.00324,"98":0.03235,"99":0.02265,"100":0.00324,"101":0.01941,"102":0.09058,"103":2.02511,"104":5.40892,"105":0.00647,"106":0.00971,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.03882,"64":0.03235,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.02912,"89":0.09058,"90":0.02265,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00324,"10.6":0.00324,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00324,"17":0,"18":0.00324,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00324,"90":0,"91":0,"92":0.00647,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00647,"100":0.00324,"101":0.00324,"102":0.00324,"103":0.4432,"104":0.69553,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01941,"15":0.00647,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00647,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01294,"14.1":0.01941,"15.1":0.00971,"15.2-15.3":0.00324,"15.4":0.04529,"15.5":0.04853,"15.6":0.12293,"16.0":0},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.00338,"8.1-8.4":0,"9.0-9.2":0.00113,"9.3":0.00451,"10.0-10.2":0.00113,"10.3":0.00338,"11.0-11.2":0,"11.3-11.4":0.00451,"12.0-12.1":0.04394,"12.2-12.5":0.23658,"13.0-13.1":0.00563,"13.2":0.00676,"13.3":0.01577,"13.4-13.7":0.07098,"14.0-14.4":0.51034,"14.5-14.8":1.2798,"15.0-15.1":0.69285,"15.2-15.3":0.55991,"15.4":1.05899,"15.5":2.94603,"15.6":3.74703,"16.0":0.0721},P:{"4":0.39263,"5.0-5.4":0,"6.2-6.4":0.02014,"7.2-7.4":1.63094,"8.2":0,"9.2":0.07047,"10.1":0.04027,"11.1-11.2":0.65439,"12.0":0.04027,"13.0":0.11074,"14.0":1.79202,"15.0":0.20135,"16.0":0.31209,"17.0":1.61081,"18.0":1.63094},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02128,"4.4":0,"4.4.3-4.4.4":0.0946},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01618,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":64.93218},S:{"2.5":0},R:{_:"0"},M:{"0":0.23001},Q:{"10.4":0.01353},O:{"0":0.92004},H:{"0":0.46114}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00359,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00359,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00359,"87":0,"88":0.00719,"89":0,"90":0,"91":0.00719,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00359,"100":0.00359,"101":0.03953,"102":0.01438,"103":0.04313,"104":0.5391,"105":0.26955,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00359,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00719,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00359,"65":0.00719,"66":0,"67":0.00719,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00719,"74":0,"75":0,"76":0,"77":0,"78":0.00359,"79":0.00359,"80":0,"81":0.00719,"83":0.01078,"84":0.01078,"85":0,"86":0.00359,"87":0.00719,"88":0,"89":0.00359,"90":0,"91":0,"92":0.01078,"93":0.00719,"94":0,"95":0,"96":0.00719,"97":0.00359,"98":0,"99":0.02156,"100":0.01438,"101":0.02516,"102":0.02875,"103":0.11501,"104":2.01264,"105":6.43685,"106":0.1222,"107":0.01078,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.03594,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00359,"62":0,"63":0.01797,"64":0.05391,"65":0.00359,"66":0,"67":0,"68":0,"69":0,"70":0.00359,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00719,"87":0,"88":0,"89":0,"90":0.12938,"91":0.00359,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0.02156,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00359},B:{"12":0.01438,"13":0,"14":0.01438,"15":0,"16":0,"17":0.00359,"18":0.02516,"79":0,"80":0,"81":0,"83":0,"84":0.00719,"85":0,"86":0,"87":0.00359,"88":0,"89":0.00359,"90":0.00359,"91":0,"92":0.00359,"93":0,"94":0.00359,"95":0.00719,"96":0,"97":0.00359,"98":0.00359,"99":0,"100":0.00359,"101":0.00719,"102":0.00719,"103":0.02516,"104":0.26596,"105":1.13211},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01438,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00359,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00719,"14.1":0.02516,"15.1":0.00359,"15.2-15.3":0,"15.4":0.01078,"15.5":0.01438,"15.6":0.13657,"16.0":0.00719,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00373,"6.0-6.1":0,"7.0-7.1":0.00498,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04606,"10.0-10.2":0.00124,"10.3":0.00498,"11.0-11.2":0.0112,"11.3-11.4":0.00622,"12.0-12.1":0.00498,"12.2-12.5":0.19297,"13.0-13.1":0.00622,"13.2":0,"13.3":0.01992,"13.4-13.7":0.03984,"14.0-14.4":0.18301,"14.5-14.8":1.38438,"15.0-15.1":0.55151,"15.2-15.3":0.15313,"15.4":0.5677,"15.5":1.47153,"15.6":6.25212,"16.0":1.43293,"16.1":0},P:{"4":0.23238,"5.0-5.4":0.0101,"6.2-6.4":0.03031,"7.2-7.4":1.05078,"8.2":0,"9.2":0.03031,"10.1":0.02021,"11.1-11.2":0.36373,"12.0":0.0101,"13.0":0.14145,"14.0":0.8083,"15.0":0.29301,"16.0":0.42436,"17.0":0.59612,"18.0":2.4552},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00614,"4.4":0,"4.4.3-4.4.4":0.0798},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00719,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.71107},H:{"0":0.6368},L:{"0":64.72595},S:{"2.5":0},R:{_:"0"},M:{"0":0.15374},Q:{"13.1":0}}; 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 2141e9de87c481..fa537dd871678b 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00636,"48":0.00636,"49":0,"50":0,"51":0,"52":0.01907,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00636,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02543,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.01907,"88":0.00636,"89":0,"90":0,"91":0.03814,"92":0,"93":0.01907,"94":0.26064,"95":0,"96":0.00636,"97":0.00636,"98":0,"99":0.01271,"100":0.00636,"101":0.01907,"102":0.05721,"103":1.46211,"104":0.26699,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00636,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03179,"50":0,"51":0,"52":0.00636,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00636,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.01907,"67":0.00636,"68":0,"69":0.15257,"70":0.00636,"71":0,"72":0.00636,"73":0,"74":0,"75":0,"76":0.01907,"77":0.00636,"78":0.00636,"79":0.05086,"80":0.00636,"81":0.00636,"83":0.01271,"84":0.02543,"85":0.00636,"86":0.00636,"87":0.05086,"88":0.00636,"89":0.02543,"90":0.01271,"91":0.02543,"92":0.03179,"93":0.03814,"94":0.03179,"95":0.05721,"96":0.0445,"97":0.05086,"98":0.03814,"99":0.08264,"100":0.15257,"101":0.28607,"102":0.69291,"103":6.56042,"104":17.55803,"105":0.03814,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00636,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00636,"87":0.00636,"88":0.01271,"89":0.77555,"90":0.0445,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00636,"16":0,"17":0,"18":0.00636,"79":0,"80":0,"81":0,"83":0,"84":0.00636,"85":0.00636,"86":0.00636,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00636,"93":0,"94":0,"95":0.00636,"96":0.00636,"97":0.00636,"98":0.00636,"99":0.00636,"100":0.01271,"101":0.0445,"102":0.0445,"103":1.08705,"104":3.19757,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.01271,"13":0.02543,"14":0.23521,"15":0.07628,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01271,"12.1":0.03814,"13.1":0.22885,"14.1":0.69291,"15.1":0.12714,"15.2-15.3":0.089,"15.4":0.36235,"15.5":1.15697,"15.6":2.03424,"16.0":0.01271},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.00696,"8.1-8.4":0,"9.0-9.2":0.11491,"9.3":0.13929,"10.0-10.2":0,"10.3":0.20545,"11.0-11.2":0.02786,"11.3-11.4":0.0383,"12.0-12.1":0.02786,"12.2-12.5":0.77651,"13.0-13.1":0.02089,"13.2":0.00696,"13.3":0.03134,"13.4-13.7":0.195,"14.0-14.4":0.51884,"14.5-14.8":1.99178,"15.0-15.1":0.41786,"15.2-15.3":0.76955,"15.4":1.20133,"15.5":8.38496,"15.6":19.74713,"16.0":0.17062},P:{"4":0.08276,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.02069,"10.1":0,"11.1-11.2":0.04138,"12.0":0,"13.0":0.01034,"14.0":0.02069,"15.0":0.01034,"16.0":0.0931,"17.0":0.77586,"18.0":1.13792},I:{"0":0,"3":0,"4":0.00887,"2.1":0,"2.2":0.01109,"2.3":0.00444,"4.1":0.01996,"4.2-4.3":0.0244,"4.4":0,"4.4.3-4.4.4":0.1486},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00636,"8":0.01907,"9":0.00636,"10":0.05721,"11":0.24157,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":20.60227},S:{"2.5":0},R:{_:"0"},M:{"0":0.40437},Q:{"10.4":0},O:{"0":0.01457},H:{"0":0.169}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.0072,"48":0,"49":0,"50":0,"51":0,"52":0.01439,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.0072,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.0072,"78":0.02878,"79":0,"80":0,"81":0,"82":0,"83":0.0072,"84":0,"85":0,"86":0,"87":0.02159,"88":0,"89":0,"90":0,"91":0.02159,"92":0,"93":0.01439,"94":0.16549,"95":0,"96":0,"97":0,"98":0,"99":0.0072,"100":0,"101":0.0072,"102":0.0072,"103":0.06476,"104":0.98572,"105":0.41012,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0072,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02159,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.0072,"57":0,"58":0,"59":0.0072,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.0072,"66":0.01439,"67":0,"68":0,"69":0.04317,"70":0,"71":0,"72":0.0072,"73":0,"74":0,"75":0.0072,"76":0.01439,"77":0.0072,"78":0,"79":0.03598,"80":0.0072,"81":0.0072,"83":0.0072,"84":0.02878,"85":0.01439,"86":0.02878,"87":0.07915,"88":0.0072,"89":0.02878,"90":0.01439,"91":0.02159,"92":0.03598,"93":0.05756,"94":0.02159,"95":0.04317,"96":0.05037,"97":0.05037,"98":0.04317,"99":0.07915,"100":0.12951,"101":0.21585,"102":0.26622,"103":1.05047,"104":5.56893,"105":27.54966,"106":0.53243,"107":0.0072,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.07915,"90":0.76267,"91":0.02878,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.0072,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.0072,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.0072,"97":0.0072,"98":0.0072,"99":0.0072,"100":0.0072,"101":0.02878,"102":0.03598,"103":0.04317,"104":0.52524,"105":4.23066},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.0072,"13":0.02878,"14":0.35975,"15":0.10073,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01439,"12.1":0.03598,"13.1":0.30939,"14.1":0.94255,"15.1":0.20146,"15.2-15.3":0.15829,"15.4":0.41012,"15.5":0.69792,"15.6":2.75569,"16.0":0.53963,"16.1":0.01439},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.00316,"8.1-8.4":0,"9.0-9.2":0.09808,"9.3":0.08226,"10.0-10.2":0,"10.3":0.14554,"11.0-11.2":0.02215,"11.3-11.4":0.02215,"12.0-12.1":0.02531,"12.2-12.5":0.51572,"13.0-13.1":0.01266,"13.2":0.00316,"13.3":0.02215,"13.4-13.7":0.11074,"14.0-14.4":0.36385,"14.5-14.8":1.55667,"15.0-15.1":0.28476,"15.2-15.3":0.43979,"15.4":0.61697,"15.5":1.84775,"15.6":19.32544,"16.0":5.46099,"16.1":0.06012},P:{"4":0.05124,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01025,"10.1":0,"11.1-11.2":0.02049,"12.0":0,"13.0":0,"14.0":0.01025,"15.0":0.01025,"16.0":0.02049,"17.0":0.05124,"18.0":1.09646},I:{"0":0,"3":0,"4":0.00882,"2.1":0,"2.2":0.00353,"2.3":0.00529,"4.1":0.00882,"4.2-4.3":0.01764,"4.4":0,"4.4.3-4.4.4":0.08114},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.0072,"8":0.02159,"9":0.01439,"10":0.03598,"11":0.17988,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.00842},H:{"0":0.09826},L:{"0":14.8192},S:{"2.5":0},R:{_:"0"},M:{"0":0.25245},Q:{"13.1":0}}; 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 08e431bcc90cd6..f74b4e91663b27 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:{"2":0.00497,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00497,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00497,"65":0,"66":0,"67":0,"68":0.00497,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00497,"77":0,"78":0.00497,"79":0.00994,"80":0,"81":0,"82":0.00497,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00994,"100":0.01988,"101":0,"102":0.04474,"103":0.4971,"104":0.04474,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00994,"50":0.00497,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00497,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.03977,"70":0,"71":0,"72":0,"73":0,"74":0.00497,"75":0.00497,"76":0.68103,"77":0.1193,"78":0,"79":0.03977,"80":0,"81":0,"83":0,"84":0,"85":0.0348,"86":0.00497,"87":0.00994,"88":0.00994,"89":0,"90":0.01491,"91":0.03977,"92":0.00497,"93":0.0348,"94":0.00994,"95":0.00497,"96":0.00497,"97":0.04474,"98":0.29329,"99":0.00994,"100":0.02486,"101":0.09445,"102":0.18393,"103":3.95692,"104":9.20629,"105":0.17896,"106":0.05965,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00497,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00497,"64":0.00994,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00497,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00994,"89":0.32809,"90":0.00994,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00994,"16":0.21872,"17":0.00497,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.01988,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0348,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00497,"101":0.01491,"102":0.02486,"103":0.62138,"104":1.48136,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00497,"14":0.01491,"15":0.00497,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0.00497,"9.1":0.00497,"10.1":0,"11.1":0.01491,"12.1":0,"13.1":0.01491,"14.1":0.06959,"15.1":0.00497,"15.2-15.3":0.00994,"15.4":0.01988,"15.5":0.31814,"15.6":0.4971,"16.0":0},G:{"8":0,"3.2":0.00185,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01945,"6.0-6.1":0,"7.0-7.1":0.03334,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07224,"10.0-10.2":0.01389,"10.3":0.02408,"11.0-11.2":0.01482,"11.3-11.4":0.03427,"12.0-12.1":0,"12.2-12.5":0.72053,"13.0-13.1":0.00648,"13.2":0.0176,"13.3":0.01019,"13.4-13.7":0.07687,"14.0-14.4":0.13892,"14.5-14.8":0.46491,"15.0-15.1":0.40379,"15.2-15.3":0.09632,"15.4":0.30377,"15.5":2.19306,"15.6":4.54727,"16.0":0.06575},P:{"4":0.20515,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.18355,"8.2":0,"9.2":0,"10.1":0.0108,"11.1-11.2":0.04319,"12.0":0.03239,"13.0":0.07558,"14.0":0.06478,"15.0":0.02159,"16.0":0.07558,"17.0":2.12705,"18.0":2.00828},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.08677,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":1.90887},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00994,"5.5":0},J:{"7":0,"10":0.01006},N:{"10":0,"11":0},L:{"0":60.62241},S:{"2.5":0},R:{_:"0"},M:{"0":0.18607},Q:{"10.4":0},O:{"0":0.53307},H:{"0":0.06666}}; +module.exports={C:{"2":0,"3":0,"4":0.01066,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01066,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00533,"83":0,"84":0.00533,"85":0,"86":0,"87":0,"88":0.01066,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00533,"98":0.00533,"99":0,"100":0.06926,"101":0,"102":0,"103":0.01598,"104":0.666,"105":0.09058,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00533,"50":0,"51":0,"52":0,"53":0.00533,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.02131,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00533,"76":0.5328,"77":0.10656,"78":0.00533,"79":0.0373,"80":0.00533,"81":0.01066,"83":0,"84":0,"85":0.00533,"86":0,"87":0.01066,"88":0.01598,"89":0,"90":0.02131,"91":0.05328,"92":0,"93":0.04262,"94":0.00533,"95":0.00533,"96":0.02664,"97":0.02664,"98":0.12254,"99":0,"100":0.02131,"101":0.02131,"102":0.04262,"103":0.34099,"104":3.60173,"105":11.83349,"106":0.21845,"107":0.02664,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.03197,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.01598,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01066,"90":0.24509,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.03197,"17":0,"18":0.01066,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00533,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.0373,"103":0.0959,"104":0.68731,"105":3.14885},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.03197,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00533,"10.1":0,"11.1":0,"12.1":0.00533,"13.1":0.00533,"14.1":0.04262,"15.1":0,"15.2-15.3":0,"15.4":0.04262,"15.5":0.05861,"15.6":0.41026,"16.0":0.0373,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00372,"6.0-6.1":0,"7.0-7.1":0.02697,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07068,"10.0-10.2":0,"10.3":0.03999,"11.0-11.2":0.00651,"11.3-11.4":0.00837,"12.0-12.1":0,"12.2-12.5":0.41661,"13.0-13.1":0.01674,"13.2":0,"13.3":0.01488,"13.4-13.7":0.03906,"14.0-14.4":0.13949,"14.5-14.8":0.31246,"15.0-15.1":0.71699,"15.2-15.3":0.16553,"15.4":0.06696,"15.5":0.65654,"15.6":4.3326,"16.0":1.8822,"16.1":0.07719},P:{"4":0.14028,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.1079,"8.2":0,"9.2":0.01079,"10.1":0,"11.1-11.2":0.03237,"12.0":0,"13.0":0.20502,"14.0":0.11869,"15.0":0.01079,"16.0":0.02158,"17.0":0.52873,"18.0":2.30915},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0338,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":2.04476},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01066,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.18688},H:{"0":0.06192},L:{"0":59.85811},S:{"2.5":0},R:{_:"0"},M:{"0":0.07008},Q:{"13.1":0}}; 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 e6d568a3521b30..35bfebb1bfbc39 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00434,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01301,"74":0,"75":0,"76":0,"77":0,"78":0.00434,"79":0.00434,"80":0.01734,"81":0,"82":0.00434,"83":0.00434,"84":0.00867,"85":0,"86":0,"87":0,"88":0.00434,"89":0,"90":0.11271,"91":0.00434,"92":0,"93":0.00434,"94":0,"95":0,"96":0,"97":0.00434,"98":0,"99":0.01301,"100":0.00434,"101":0.00434,"102":0.02168,"103":0.40316,"104":0.07803,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00434,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00434,"48":0.00867,"49":0.02601,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00434,"64":0.00434,"65":0.00867,"66":0,"67":0,"68":0.00434,"69":0,"70":0.00867,"71":0,"72":0,"73":0.00434,"74":0.00434,"75":0.00434,"76":0.01301,"77":0.00434,"78":0.00434,"79":0.02601,"80":0.00434,"81":0.03468,"83":0.04769,"84":0.03902,"85":0.03902,"86":0.03035,"87":0.06069,"88":0.00867,"89":0.02168,"90":0.01734,"91":0.01734,"92":0.01301,"93":0.03902,"94":0.01301,"95":0.02601,"96":0.02601,"97":0.03468,"98":0.02168,"99":0.03902,"100":0.03902,"101":0.05636,"102":0.17774,"103":3.13854,"104":8.59197,"105":0.03035,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01301,"64":0.00434,"65":0,"66":0,"67":0,"68":0,"69":0.01301,"70":0.01301,"71":0.00867,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00434,"85":0.00434,"86":0.00434,"87":0,"88":0.00867,"89":0.75863,"90":0.05202,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00434,"16":0,"17":0,"18":0.04769,"79":0,"80":0,"81":0,"83":0,"84":0.00434,"85":0.00434,"86":0,"87":0,"88":0,"89":0.00867,"90":0,"91":0,"92":0.01301,"93":0,"94":0.00434,"95":0,"96":0.00434,"97":0,"98":0,"99":0.00434,"100":0.00434,"101":0.01734,"102":0.00867,"103":0.39449,"104":1.09676,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00867,"14":0.03468,"15":0.01301,_:"0","3.1":0,"3.2":0,"5.1":0.00434,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00434,"12.1":0.00867,"13.1":0.04769,"14.1":0.09971,"15.1":0.03035,"15.2-15.3":0.01734,"15.4":0.04769,"15.5":0.20808,"15.6":0.31212,"16.0":0.00434},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00492,"6.0-6.1":0,"7.0-7.1":0.08616,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05662,"10.0-10.2":0,"10.3":0.0517,"11.0-11.2":0.01231,"11.3-11.4":0.02216,"12.0-12.1":0.03447,"12.2-12.5":0.77055,"13.0-13.1":0.02216,"13.2":0.02216,"13.3":0.06647,"13.4-13.7":0.22895,"14.0-14.4":0.75824,"14.5-14.8":1.85868,"15.0-15.1":0.39143,"15.2-15.3":0.64746,"15.4":1.02412,"15.5":5.59083,"15.6":12.59967,"16.0":0.35943},P:{"4":0.13326,"5.0-5.4":0.01025,"6.2-6.4":0.01025,"7.2-7.4":0.12301,"8.2":0,"9.2":0.0205,"10.1":0,"11.1-11.2":0.14351,"12.0":0.01025,"13.0":0.041,"14.0":0.06151,"15.0":0.041,"16.0":0.16402,"17.0":0.5638,"18.0":0.61506},I:{"0":0,"3":0,"4":0.02459,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03689,"4.2-4.3":0.11066,"4.4":0,"4.4.3-4.4.4":0.61477},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00482,"9":0.00482,"10":0,"11":0.03372,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":53.01718},S:{"2.5":0},R:{_:"0"},M:{"0":0.36823},Q:{"10.4":0},O:{"0":0.06798},H:{"0":0.26816}}; +module.exports={C:{"2":0,"3":0.00437,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00437,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01748,"74":0,"75":0,"76":0,"77":0.01311,"78":0.00437,"79":0.01748,"80":0.00874,"81":0.00874,"82":0.02185,"83":0,"84":0.00437,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.02185,"91":0.00437,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00437,"100":0,"101":0,"102":0.00437,"103":0.02185,"104":0.45438,"105":0.11796,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00437,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00437,"48":0,"49":0.03495,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00437,"64":0,"65":0.00874,"66":0,"67":0,"68":0.00437,"69":0,"70":0.00437,"71":0,"72":0.01748,"73":0,"74":0.00437,"75":0.00437,"76":0.01311,"77":0.00437,"78":0,"79":0.02185,"80":0.03058,"81":0.03495,"83":0.04806,"84":0.16165,"85":0.09175,"86":0.09175,"87":0.13107,"88":0.00874,"89":0.02621,"90":0.01311,"91":0.01748,"92":0.01311,"93":0.03058,"94":0.00874,"95":0.03495,"96":0.02621,"97":0.02621,"98":0.01311,"99":0.02621,"100":0.03058,"101":0.03058,"102":0.06554,"103":0.27088,"104":2.52528,"105":9.12247,"106":0.17039,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00437,"64":0.02185,"65":0,"66":0,"67":0,"68":0.01311,"69":0.00437,"70":0.01311,"71":0.00874,"72":0.01311,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00437,"85":0,"86":0,"87":0,"88":0,"89":0.11796,"90":0.72525,"91":0.02185,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00874,"16":0,"17":0.00437,"18":0.05243,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00437,"86":0.00874,"87":0.00437,"88":0,"89":0.00437,"90":0,"91":0,"92":0.00874,"93":0,"94":0,"95":0,"96":0,"97":0.00437,"98":0,"99":0,"100":0.00437,"101":0.00874,"102":0.00437,"103":0.02621,"104":0.20534,"105":1.22332},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00437,"14":0.03932,"15":0.01311,_:"0","3.1":0,"3.2":0,"5.1":0.00437,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00437,"12.1":0.00874,"13.1":0.06554,"14.1":0.10049,"15.1":0.02621,"15.2-15.3":0.01311,"15.4":0.04369,"15.5":0.10923,"15.6":0.34952,"16.0":0.09175,"16.1":0.00437},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00502,"6.0-6.1":0,"7.0-7.1":0.08291,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04522,"10.0-10.2":0,"10.3":0.07035,"11.0-11.2":0.00754,"11.3-11.4":0.01256,"12.0-12.1":0.02764,"12.2-12.5":0.78389,"13.0-13.1":0.03517,"13.2":0.01005,"13.3":0.0603,"13.4-13.7":0.2412,"14.0-14.4":0.78891,"14.5-14.8":1.7135,"15.0-15.1":0.36431,"15.2-15.3":0.5653,"15.4":0.68339,"15.5":2.05771,"15.6":13.4693,"16.0":3.43956,"16.1":0.08794},P:{"4":0.13556,"5.0-5.4":0.01043,"6.2-6.4":0,"7.2-7.4":0.11471,"8.2":0,"9.2":0.03128,"10.1":0,"11.1-11.2":0.11471,"12.0":0,"13.0":0.03128,"14.0":0.03128,"15.0":0.02086,"16.0":0.13556,"17.0":0.19813,"18.0":1.14706},I:{"0":0,"3":0,"4":0.01356,"2.1":0,"2.2":0,"2.3":0,"4.1":0.04068,"4.2-4.3":0.09492,"4.4":0,"4.4.3-4.4.4":0.62376},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00463,"9":0.00463,"10":0,"11":0.06939,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.0732},H:{"0":0.2399},L:{"0":52.73205},S:{"2.5":0},R:{_:"0"},M:{"0":0.3998},Q:{"13.1":0}}; 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 5f65ba61812e4d..14b7b732839a29 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:{"2":0,"3":0,"4":0,"5":0,"6":0.00747,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00374,"44":0,"45":0,"46":0,"47":0.00374,"48":0.00747,"49":0,"50":0,"51":0,"52":0.06353,"53":0,"54":0,"55":0,"56":0.00374,"57":0,"58":0,"59":0,"60":0,"61":0.00374,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00374,"69":0,"70":0,"71":0,"72":0.00374,"73":0,"74":0.00374,"75":0,"76":0,"77":0,"78":0.00747,"79":0,"80":0.00374,"81":0.00374,"82":0,"83":0,"84":0.00374,"85":0,"86":0,"87":0,"88":0.00374,"89":0.00374,"90":0,"91":0.02242,"92":0,"93":0,"94":0.00374,"95":0.00747,"96":0.00374,"97":0.00374,"98":0.00374,"99":0.01495,"100":0.01495,"101":0.01869,"102":0.04111,"103":0.85204,"104":0.16069,"105":0.00374,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00374,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00374,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00747,"33":0.00747,"34":0.00374,"35":0,"36":0,"37":0.00374,"38":0.00747,"39":0.00374,"40":0.00747,"41":0,"42":0.00374,"43":0.04858,"44":0,"45":0,"46":0,"47":0.00374,"48":0.00374,"49":0.05979,"50":0.00747,"51":0.02616,"52":0,"53":0,"54":0,"55":0.00374,"56":0.01121,"57":0,"58":0.00374,"59":0,"60":0.00374,"61":0.00374,"62":0.00374,"63":0.01121,"64":0.00747,"65":0.00747,"66":0.00374,"67":0.00747,"68":0.00747,"69":0.00747,"70":0.01121,"71":0.00747,"72":0.00747,"73":0.00374,"74":0.01121,"75":0.00747,"76":0.00747,"77":0.01121,"78":0.00747,"79":0.02616,"80":0.01121,"81":0.04858,"83":0.01495,"84":0.01869,"85":0.02242,"86":0.04484,"87":0.04858,"88":0.01121,"89":0.01869,"90":0.02616,"91":0.01869,"92":0.01869,"93":0.01121,"94":0.01495,"95":0.03363,"96":0.03737,"97":0.03363,"98":0.05232,"99":0.03363,"100":0.04858,"101":0.05232,"102":0.12332,"103":2.22725,"104":6.0502,"105":0.02616,"106":0.00747,"107":0.00374,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00747,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00747,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00374,"62":0,"63":0.0299,"64":0.02616,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00374,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01495,"80":0,"81":0,"82":0.00374,"83":0,"84":0.00747,"85":0.03737,"86":0.00747,"87":0.00374,"88":0.01121,"89":0.58297,"90":0.08595,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00374},B:{"12":0.00374,"13":0,"14":0.00374,"15":0.00374,"16":0.00374,"17":0.00374,"18":0.00747,"79":0,"80":0,"81":0,"83":0,"84":0.00374,"85":0.00374,"86":0,"87":0,"88":0,"89":0.00374,"90":0.00374,"91":0,"92":0.00747,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00374,"99":0.00374,"100":0,"101":0.03737,"102":0.00747,"103":0.17564,"104":0.51197,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00747,"14":0.00747,"15":0.00374,_:"0","3.1":0,"3.2":0,"5.1":0.00374,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00374,"12.1":0.00374,"13.1":0.00747,"14.1":0.01121,"15.1":0.00747,"15.2-15.3":0.00747,"15.4":0.01495,"15.5":0.04484,"15.6":0.08595,"16.0":0.00374},G:{"8":0.00172,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01373,"6.0-6.1":0.00401,"7.0-7.1":0.07668,"8.1-8.4":0.00229,"9.0-9.2":0.00172,"9.3":0.11502,"10.0-10.2":0.00114,"10.3":0.05379,"11.0-11.2":0.00629,"11.3-11.4":0.01545,"12.0-12.1":0.0103,"12.2-12.5":0.28096,"13.0-13.1":0.00858,"13.2":0.00515,"13.3":0.0515,"13.4-13.7":0.07725,"14.0-14.4":0.17567,"14.5-14.8":0.309,"15.0-15.1":0.16537,"15.2-15.3":0.24605,"15.4":0.42516,"15.5":1.45743,"15.6":2.13207,"16.0":0.08183},P:{"4":0.14571,"5.0-5.4":0.01041,"6.2-6.4":0.03122,"7.2-7.4":0.15612,"8.2":0,"9.2":0.03122,"10.1":0,"11.1-11.2":0.04163,"12.0":0.02082,"13.0":0.08326,"14.0":0.07286,"15.0":0.04163,"16.0":0.1249,"17.0":0.72857,"18.0":0.66612},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01327,"4.2-4.3":0.03483,"4.4":0,"4.4.3-4.4.4":0.22886},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00781,"9":0.00781,"10":0,"11":0.07032,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":75.96852},S:{"2.5":0},R:{_:"0"},M:{"0":0.19415},Q:{"10.4":0.00626},O:{"0":0.48225},H:{"0":0.74118}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0.004,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.004,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.004,"34":0.004,"35":0,"36":0,"37":0,"38":0.004,"39":0,"40":0,"41":0.004,"42":0,"43":0.004,"44":0,"45":0,"46":0,"47":0.004,"48":0.01601,"49":0,"50":0,"51":0,"52":0.06803,"53":0,"54":0,"55":0,"56":0.004,"57":0.004,"58":0,"59":0,"60":0.004,"61":0,"62":0,"63":0,"64":0,"65":0.004,"66":0,"67":0.004,"68":0.008,"69":0,"70":0,"71":0,"72":0.008,"73":0,"74":0.004,"75":0,"76":0,"77":0,"78":0.008,"79":0.004,"80":0.004,"81":0,"82":0.008,"83":0,"84":0.004,"85":0,"86":0,"87":0,"88":0.004,"89":0.004,"90":0,"91":0.01601,"92":0.004,"93":0.004,"94":0.004,"95":0.004,"96":0.004,"97":0.004,"98":0.004,"99":0.02401,"100":0.01601,"101":0.008,"102":0.02401,"103":0.06403,"104":0.8004,"105":0.31216,"106":0.004,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.004,"27":0,"28":0,"29":0,"30":0,"31":0.004,"32":0.008,"33":0.008,"34":0.004,"35":0,"36":0,"37":0,"38":0.008,"39":0.004,"40":0.01201,"41":0,"42":0.004,"43":0.05203,"44":0,"45":0,"46":0.004,"47":0.004,"48":0.004,"49":0.08004,"50":0.008,"51":0.02001,"52":0.004,"53":0,"54":0.004,"55":0.004,"56":0.01601,"57":0,"58":0.008,"59":0,"60":0.004,"61":0.004,"62":0.004,"63":0.01601,"64":0.008,"65":0.008,"66":0.004,"67":0.008,"68":0.01201,"69":0.01601,"70":0.01201,"71":0.01201,"72":0.01201,"73":0.004,"74":0.02001,"75":0.004,"76":0.008,"77":0.01601,"78":0.01201,"79":0.04002,"80":0.01201,"81":0.05203,"83":0.04002,"84":0.04402,"85":0.04402,"86":0.06803,"87":0.05203,"88":0.01201,"89":0.01601,"90":0.02001,"91":0.02001,"92":0.02401,"93":0.01601,"94":0.02401,"95":0.04002,"96":0.03602,"97":0.03202,"98":0.06003,"99":0.03202,"100":0.05203,"101":0.04402,"102":0.09205,"103":0.28814,"104":1.8009,"105":7.38769,"106":0.18009,"107":0.008,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.004,"26":0,"27":0,"28":0.008,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.004,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.008,"64":0.04002,"65":0.004,"66":0,"67":0,"68":0,"69":0.004,"70":0,"71":0.008,"72":0.004,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01601,"80":0,"81":0,"82":0.004,"83":0,"84":0.008,"85":0.03602,"86":0.008,"87":0.004,"88":0.004,"89":0.04402,"90":0.61231,"91":0.03202,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.004,"13":0,"14":0.004,"15":0.004,"16":0.004,"17":0.004,"18":0.01201,"79":0,"80":0,"81":0,"83":0,"84":0.008,"85":0.01601,"86":0,"87":0.004,"88":0,"89":0.004,"90":0,"91":0,"92":0.008,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.004,"100":0.004,"101":0.02401,"102":0.004,"103":0.01601,"104":0.15608,"105":0.70035},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.008,"14":0.01201,"15":0.004,_:"0","3.1":0,"3.2":0,"5.1":0.004,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.004,"12.1":0.004,"13.1":0.008,"14.1":0.01201,"15.1":0.004,"15.2-15.3":0.004,"15.4":0.01601,"15.5":0.03202,"15.6":0.09605,"16.0":0.02001,"16.1":0.004},G:{"8":0.00061,"3.2":0,"4.0-4.1":0.00122,"4.2-4.3":0,"5.0-5.1":0.0146,"6.0-6.1":0.00487,"7.0-7.1":0.09669,"8.1-8.4":0.00608,"9.0-9.2":0.00182,"9.3":0.09669,"10.0-10.2":0.00365,"10.3":0.0523,"11.0-11.2":0.00547,"11.3-11.4":0.01338,"12.0-12.1":0.01581,"12.2-12.5":0.29494,"13.0-13.1":0.00791,"13.2":0.00669,"13.3":0.04257,"13.4-13.7":0.07967,"14.0-14.4":0.15021,"14.5-14.8":0.28521,"15.0-15.1":0.15325,"15.2-15.3":0.19825,"15.4":0.28765,"15.5":0.70969,"15.6":2.40943,"16.0":0.96207,"16.1":0.01095},P:{"4":0.16432,"5.0-5.4":0.02054,"6.2-6.4":0.01027,"7.2-7.4":0.15405,"8.2":0.01027,"9.2":0.03081,"10.1":0,"11.1-11.2":0.06162,"12.0":0.03081,"13.0":0.08216,"14.0":0.06162,"15.0":0.05135,"16.0":0.11297,"17.0":0.24648,"18.0":1.13999},I:{"0":0,"3":0,"4":0.00469,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01407,"4.2-4.3":0.04064,"4.4":0,"4.4.3-4.4.4":0.2407},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01283,"9":0.00856,"10":0.00428,"11":0.09839,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.006},O:{"0":0.47984},H:{"0":0.69846},L:{"0":73.78941},S:{"2.5":0},R:{_:"0"},M:{"0":0.16794},Q:{"13.1":0.006}}; 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 ed641e602db685..ae00989d7d2b63 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00532,"48":0,"49":0,"50":0,"51":0,"52":0.01065,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.01065,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00532,"73":0.01065,"74":0,"75":0,"76":0,"77":0,"78":0.0213,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00532,"85":0,"86":0,"87":0,"88":0.0213,"89":0.01065,"90":0.03194,"91":0.03194,"92":0.00532,"93":0.00532,"94":0.00532,"95":0.00532,"96":0.01065,"97":0.00532,"98":0.01065,"99":0.02662,"100":0.02662,"101":0.0213,"102":0.06921,"103":1.4641,"104":0.31412,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01597,"39":0,"40":0,"41":0.01065,"42":0,"43":0,"44":0,"45":0,"46":0.00532,"47":0.00532,"48":0,"49":0.01597,"50":0,"51":0,"52":0,"53":0.00532,"54":0,"55":0.00532,"56":0.00532,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00532,"64":0,"65":0.00532,"66":0.00532,"67":0.00532,"68":0.00532,"69":0.00532,"70":0.00532,"71":0,"72":0.00532,"73":0.00532,"74":0.01597,"75":0.01597,"76":0.00532,"77":0.00532,"78":0.00532,"79":0.06921,"80":0.01065,"81":0.01597,"83":0.01597,"84":0.01597,"85":0.01597,"86":0.03194,"87":0.03727,"88":0.01065,"89":0.02662,"90":0.01065,"91":0.1544,"92":0.0213,"93":0.01065,"94":0.01597,"95":0.01065,"96":0.04259,"97":0.07454,"98":0.05856,"99":0.03727,"100":0.04792,"101":0.05856,"102":0.14907,"103":4.76498,"104":14.77942,"105":0.05324,"106":0.00532,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00532,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00532,"64":0.00532,"65":0,"66":0,"67":0,"68":0.00532,"69":0.00532,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00532,"86":0.00532,"87":0,"88":0.01597,"89":1.14998,"90":0.07986,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00532,"16":0,"17":0,"18":0.00532,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01065,"93":0.00532,"94":0,"95":0.00532,"96":0,"97":0,"98":0,"99":0.00532,"100":0.00532,"101":0.01065,"102":0.01065,"103":0.48448,"104":1.41086,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00532,"14":0.03727,"15":0.01065,_:"0","3.1":0,"3.2":0,"5.1":0.00532,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00532,"12.1":0.00532,"13.1":0.05324,"14.1":0.07986,"15.1":0.0213,"15.2-15.3":0.01597,"15.4":0.04792,"15.5":0.18634,"15.6":0.2875,"16.0":0.00532},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0176,"6.0-6.1":0.02346,"7.0-7.1":0.00293,"8.1-8.4":0,"9.0-9.2":0.00098,"9.3":0.03715,"10.0-10.2":0,"10.3":0.0303,"11.0-11.2":0.00293,"11.3-11.4":0.00489,"12.0-12.1":0.0088,"12.2-12.5":0.34409,"13.0-13.1":0.00391,"13.2":0.00587,"13.3":0.02151,"13.4-13.7":0.05181,"14.0-14.4":0.17693,"14.5-14.8":0.4741,"15.0-15.1":0.17204,"15.2-15.3":0.13783,"15.4":0.29032,"15.5":2.01369,"15.6":5.81722,"16.0":0.1349},P:{"4":0.21683,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.13423,"8.2":0,"9.2":0.01033,"10.1":0,"11.1-11.2":0.0413,"12.0":0.01033,"13.0":0.05163,"14.0":0.0413,"15.0":0.03098,"16.0":0.11358,"17.0":0.75375,"18.0":0.87765},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00734,"4.2-4.3":0.04769,"4.4":0,"4.4.3-4.4.4":0.19808},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02662,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":58.14475},S:{"2.5":0},R:{_:"0"},M:{"0":0.2151},Q:{"10.4":0},O:{"0":0.02806},H:{"0":0.17708}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01096,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00548,"67":0,"68":0.00548,"69":0,"70":0,"71":0,"72":0.00548,"73":0.01096,"74":0,"75":0,"76":0,"77":0,"78":0.03289,"79":0,"80":0,"81":0.01096,"82":0,"83":0,"84":0.00548,"85":0,"86":0,"87":0,"88":0.01645,"89":0.01645,"90":0.00548,"91":0.02193,"92":0.00548,"93":0.00548,"94":0.00548,"95":0.00548,"96":0.01096,"97":0.00548,"98":0.00548,"99":0.03837,"100":0.02193,"101":0.01096,"102":0.04386,"103":0.08223,"104":1.44725,"105":0.47693,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01096,"39":0,"40":0,"41":0.00548,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.01096,"48":0,"49":0.01645,"50":0,"51":0,"52":0,"53":0.00548,"54":0,"55":0.00548,"56":0.00548,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00548,"64":0,"65":0.00548,"66":0.00548,"67":0.00548,"68":0.00548,"69":0.00548,"70":0.00548,"71":0,"72":0.00548,"73":0.00548,"74":0.01096,"75":0.00548,"76":0.00548,"77":0.00548,"78":0.01096,"79":0.07675,"80":0.01096,"81":0.01096,"83":0.01096,"84":0.02193,"85":0.02193,"86":0.02193,"87":0.04386,"88":0.00548,"89":0.01096,"90":0.01096,"91":0.1206,"92":0.02193,"93":0.00548,"94":0.01096,"95":0.01096,"96":0.04386,"97":0.07127,"98":0.05482,"99":0.02741,"100":0.04386,"101":0.04386,"102":0.08223,"103":0.3344,"104":4.3856,"105":16.35829,"106":0.27958,"107":0.00548,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00548,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00548,"65":0,"66":0,"67":0.00548,"68":0,"69":0.00548,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00548,"86":0,"87":0,"88":0,"89":0.14253,"90":1.07995,"91":0.03837,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00548,"16":0,"17":0,"18":0.00548,"79":0,"80":0,"81":0,"83":0,"84":0.01645,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01096,"93":0.00548,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00548,"101":0.01096,"102":0.00548,"103":0.02193,"104":0.27958,"105":1.58978},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00548,"14":0.03837,"15":0.01645,_:"0","3.1":0,"3.2":0,"5.1":0.01096,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00548,"12.1":0.01096,"13.1":0.05482,"14.1":0.08771,"15.1":0.01645,"15.2-15.3":0.02193,"15.4":0.04386,"15.5":0.09868,"15.6":0.3947,"16.0":0.08223,"16.1":0.00548},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01818,"6.0-6.1":0.02222,"7.0-7.1":0.00505,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03838,"10.0-10.2":0,"10.3":0.02727,"11.0-11.2":0.00202,"11.3-11.4":0.00505,"12.0-12.1":0.00303,"12.2-12.5":0.34344,"13.0-13.1":0.00404,"13.2":0.00707,"13.3":0.01313,"13.4-13.7":0.06061,"14.0-14.4":0.16162,"14.5-14.8":0.44041,"15.0-15.1":0.11212,"15.2-15.3":0.11212,"15.4":0.21011,"15.5":0.65658,"15.6":5.54861,"16.0":2.04752,"16.1":0.02929},P:{"4":0.22259,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.12141,"8.2":0,"9.2":0.01012,"10.1":0,"11.1-11.2":0.04047,"12.0":0.01012,"13.0":0.06071,"14.0":0.03035,"15.0":0.03035,"16.0":0.08094,"17.0":0.26306,"18.0":1.28496},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00852,"4.2-4.3":0.02556,"4.4":0,"4.4.3-4.4.4":0.21297},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00548,"9":0,"10":0,"11":0.02741,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.02711},H:{"0":0.16254},L:{"0":56.54228},S:{"2.5":0},R:{_:"0"},M:{"0":0.16717},Q:{"13.1":0}}; 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 654b7b82b6eb15..9f01481dc98a80 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02572,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00643,"67":0,"68":0.00643,"69":0.01929,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01929,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.03215,"85":0,"86":0,"87":0.06429,"88":0.00643,"89":0,"90":0,"91":0.07715,"92":0.01286,"93":0,"94":0,"95":0,"96":0.01929,"97":0.00643,"98":0.00643,"99":0.01286,"100":0.01286,"101":0.27645,"102":0.1543,"103":2.32087,"104":0.63647,"105":0.00643,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00643,"35":0,"36":0,"37":0,"38":0,"39":0.01286,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01286,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01929,"61":0,"62":0,"63":0.05786,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.88077,"70":0,"71":0,"72":0.00643,"73":0,"74":0.00643,"75":0,"76":0.00643,"77":0,"78":0.03857,"79":0.03857,"80":0.00643,"81":0.01286,"83":0.01286,"84":0.01286,"85":0.00643,"86":0.01286,"87":0.02572,"88":0.01929,"89":0.01929,"90":0.01929,"91":2.20515,"92":0.01929,"93":0.07072,"94":0.02572,"95":0.01286,"96":0.02572,"97":0.03857,"98":0.045,"99":0.03857,"100":0.08358,"101":0.12858,"102":0.27645,"103":6.429,"104":15.80248,"105":0.05143,"106":0.00643,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00643,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00643,"80":0,"81":0,"82":0.00643,"83":0,"84":0,"85":0.00643,"86":0,"87":0,"88":0.01929,"89":2.84162,"90":0.57861,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00643,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00643,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01929,"93":0,"94":0.00643,"95":0,"96":0.00643,"97":0.00643,"98":0.00643,"99":0,"100":0.00643,"101":0.01286,"102":0.01929,"103":0.79077,"104":2.33373,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.01286,"13":0.01286,"14":0.09644,"15":0.02572,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00643,"12.1":0.03215,"13.1":0.10286,"14.1":0.27645,"15.1":0.07715,"15.2-15.3":0.05143,"15.4":0.19287,"15.5":0.68147,"15.6":0.97078,"16.0":0.01286},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.00994,"10.0-10.2":0.0159,"10.3":0.31797,"11.0-11.2":0.01391,"11.3-11.4":0.00994,"12.0-12.1":0.01192,"12.2-12.5":0.33585,"13.0-13.1":0.00994,"13.2":0.00994,"13.3":0.02385,"13.4-13.7":0.12719,"14.0-14.4":0.31399,"14.5-14.8":1.05525,"15.0-15.1":0.28816,"15.2-15.3":0.57433,"15.4":0.8903,"15.5":5.29016,"15.6":10.28222,"16.0":0.28418},P:{"4":0.08236,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01029,"12.0":0.01029,"13.0":0.04118,"14.0":0.05147,"15.0":0.02059,"16.0":0.08236,"17.0":0.98829,"18.0":1.17359},I:{"0":0,"3":0,"4":0.00357,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00714,"4.2-4.3":0.0125,"4.4":0,"4.4.3-4.4.4":0.06964},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.51432,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":34.12911},S:{"2.5":0},R:{_:"0"},M:{"0":0.27497},Q:{"10.4":0},O:{"0":0.01786},H:{"0":0.31103}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0403,"53":0.00672,"54":0,"55":0.0403,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00672,"69":0.01343,"70":0,"71":0,"72":0,"73":0.00672,"74":0,"75":0,"76":0,"77":0,"78":0.02015,"79":0,"80":0.00672,"81":0,"82":0,"83":0,"84":0.01343,"85":0,"86":0,"87":0.10074,"88":0.00672,"89":0.00672,"90":0.00672,"91":0.08731,"92":0.01343,"93":0,"94":0.00672,"95":0.00672,"96":0.01343,"97":0.00672,"98":0.01343,"99":0.01343,"100":0.02015,"101":0.18133,"102":0.07388,"103":0.14104,"104":2.21628,"105":0.6313,"106":0.00672,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01343,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00672,"39":0.00672,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02015,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.02015,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.01343,"68":0.00672,"69":0.2955,"70":0.00672,"71":0,"72":0,"73":0,"74":0.00672,"75":0,"76":0.00672,"77":0.00672,"78":0.02686,"79":0.03358,"80":0.00672,"81":0.01343,"83":0.00672,"84":0.00672,"85":0.01343,"86":0.01343,"87":0.01343,"88":0.02686,"89":0.01343,"90":0.02015,"91":2.40433,"92":0.02015,"93":0.00672,"94":0.10746,"95":0.02686,"96":0.02686,"97":0.05373,"98":0.02015,"99":0.02686,"100":0.0403,"101":0.05373,"102":0.15447,"103":0.42311,"104":5.39295,"105":20.1883,"106":0.32908,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.06716,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00672,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00672,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00672,"80":0,"81":0,"82":0.00672,"83":0,"84":0,"85":0.00672,"86":0.00672,"87":0,"88":0.00672,"89":0.18805,"90":3.66694,"91":0.0403,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00672,"15":0,"16":0,"17":0,"18":0.00672,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00672,"93":0,"94":0,"95":0,"96":0,"97":0.00672,"98":0.00672,"99":0,"100":0.00672,"101":0,"102":0.00672,"103":0.02015,"104":0.42311,"105":2.88788},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00672,"14":0.08059,"15":0.03358,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00672,"11.1":0.00672,"12.1":0.02015,"13.1":0.09402,"14.1":0.27536,"15.1":0.08059,"15.2-15.3":0.05373,"15.4":0.17462,"15.5":0.32908,"15.6":1.18202,"16.0":0.26192,"16.1":0.02015},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.00993,"10.0-10.2":0.00596,"10.3":0.29995,"11.0-11.2":0.00795,"11.3-11.4":0.00596,"12.0-12.1":0.00596,"12.2-12.5":0.33968,"13.0-13.1":0.01192,"13.2":0.02781,"13.3":0.01788,"13.4-13.7":0.19467,"14.0-14.4":0.29598,"14.5-14.8":0.82437,"15.0-15.1":0.23639,"15.2-15.3":0.41318,"15.4":0.55422,"15.5":1.68252,"15.6":10.36725,"16.0":4.03248,"16.1":0.06158},P:{"4":0.0512,"5.0-5.4":0,"6.2-6.4":0.01024,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01024,"12.0":0,"13.0":0.04096,"14.0":0.02048,"15.0":0.03072,"16.0":0.06144,"17.0":0.16384,"18.0":1.8637},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.07444,"4.4":0,"4.4.3-4.4.4":0.13825},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00683,"9":0,"10":0,"11":0.38941,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.02627},H:{"0":0.22696},L:{"0":30.81222},S:{"2.5":0},R:{_:"0"},M:{"0":0.27586},Q:{"13.1":0}}; 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 6b0fb3f22b6d54..78630400bf57ce 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00258,"52":0.02321,"53":0,"54":0,"55":0.00258,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00258,"69":0,"70":0,"71":0,"72":0.00258,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00258,"79":0,"80":0.00258,"81":0,"82":0,"83":0,"84":0.00516,"85":0,"86":0,"87":0,"88":0.00258,"89":0,"90":0,"91":0.00774,"92":0,"93":0,"94":0.00258,"95":0,"96":0.00258,"97":0,"98":0.00258,"99":0.00516,"100":0.00516,"101":0.00516,"102":0.02063,"103":0.39459,"104":0.07995,"105":0.00258,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00258,"27":0,"28":0,"29":0,"30":0,"31":0.00258,"32":0,"33":0.00258,"34":0,"35":0,"36":0,"37":0,"38":0.00258,"39":0,"40":0.00516,"41":0.00258,"42":0,"43":0.05158,"44":0,"45":0,"46":0.00258,"47":0.00258,"48":0,"49":0.01032,"50":0,"51":0,"52":0,"53":0.00258,"54":0,"55":0,"56":0,"57":0,"58":0.00258,"59":0,"60":0.00258,"61":0.00258,"62":0,"63":0.00516,"64":0.00258,"65":0,"66":0,"67":0.00258,"68":0.00258,"69":0.00516,"70":0.00258,"71":0.00516,"72":0.00258,"73":0.00258,"74":0.00516,"75":0.00258,"76":0.00774,"77":0.00258,"78":0.00258,"79":0.02579,"80":0.00774,"81":0.02579,"83":0.00516,"84":0.00516,"85":0.00774,"86":0.02321,"87":0.0129,"88":0.00774,"89":0.01032,"90":0.00516,"91":0.00774,"92":0.01547,"93":0.00516,"94":0.00516,"95":0.01032,"96":0.0129,"97":0.0129,"98":0.02579,"99":0.01032,"100":0.01805,"101":0.02063,"102":0.049,"103":1.11413,"104":3.30112,"105":0.0129,"106":0.00258,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00258,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00258,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00258,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00258,"64":0.00516,"65":0,"66":0.00258,"67":0,"68":0.00258,"69":0.00258,"70":0.00258,"71":0.00258,"72":0.00774,"73":0.00516,"74":0,"75":0,"76":0.00258,"77":0,"78":0,"79":0.01032,"80":0.00516,"81":0.00516,"82":0.00774,"83":0.00774,"84":0.00516,"85":0.00774,"86":0.00516,"87":0.00516,"88":0.01032,"89":0.01805,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00258,"15":0.00258,"16":0,"17":0,"18":0.00516,"79":0,"80":0,"81":0,"83":0,"84":0.00258,"85":0,"86":0,"87":0,"88":0,"89":0.00258,"90":0,"91":0,"92":0.00516,"93":0,"94":0,"95":0,"96":0.00258,"97":0,"98":0,"99":0.00258,"100":0.00258,"101":0.00258,"102":0.00258,"103":0.12895,"104":0.36364,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00258,"14":0.00774,"15":0.00258,_:"0","3.1":0,"3.2":0,"5.1":0.01032,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00258,"13.1":0.00774,"14.1":0.02579,"15.1":0.00258,"15.2-15.3":0.00258,"15.4":0.00774,"15.5":0.02837,"15.6":0.03869,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00109,"6.0-6.1":0.00109,"7.0-7.1":0.0153,"8.1-8.4":0,"9.0-9.2":0.00983,"9.3":0.03933,"10.0-10.2":0.01639,"10.3":0.11363,"11.0-11.2":0.00765,"11.3-11.4":0.02731,"12.0-12.1":0.02513,"12.2-12.5":1.23242,"13.0-13.1":0.0142,"13.2":0.00874,"13.3":0.05791,"13.4-13.7":0.18464,"14.0-14.4":0.48401,"14.5-14.8":0.55721,"15.0-15.1":0.19994,"15.2-15.3":0.32012,"15.4":0.46762,"15.5":2.43753,"15.6":4.59973,"16.0":0.10489},P:{"4":0.23816,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.1139,"8.2":0,"9.2":0.01035,"10.1":0.01035,"11.1-11.2":0.07248,"12.0":0.03106,"13.0":0.08284,"14.0":0.10355,"15.0":0.04142,"16.0":0.14497,"17.0":0.963,"18.0":0.85946},I:{"0":0,"3":0,"4":0.00696,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00696,"4.2-4.3":0.04524,"4.4":0,"4.4.3-4.4.4":0.28015},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00276,"9":0.00276,"10":0,"11":0.03316,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":77.5262},S:{"2.5":0},R:{_:"0"},M:{"0":0.17068},Q:{"10.4":0},O:{"0":0.43042},H:{"0":0.39344}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00901,"52":0.02704,"53":0,"54":0,"55":0.003,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.003,"69":0,"70":0,"71":0,"72":0.003,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.003,"79":0,"80":0,"81":0.003,"82":0,"83":0,"84":0.00601,"85":0,"86":0,"87":0,"88":0.003,"89":0.003,"90":0,"91":0.00901,"92":0,"93":0,"94":0.003,"95":0,"96":0,"97":0,"98":0.003,"99":0.00601,"100":0.003,"101":0.003,"102":0.01502,"103":0.03004,"104":0.48064,"105":0.17123,"106":0.003,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.003,"27":0,"28":0,"29":0,"30":0,"31":0.003,"32":0,"33":0.003,"34":0,"35":0,"36":0,"37":0,"38":0.003,"39":0,"40":0.00901,"41":0.003,"42":0,"43":0.06909,"44":0,"45":0,"46":0.003,"47":0.003,"48":0.003,"49":0.01502,"50":0,"51":0,"52":0,"53":0.003,"54":0,"55":0.003,"56":0,"57":0,"58":0.003,"59":0,"60":0.003,"61":0,"62":0.003,"63":0.00601,"64":0.003,"65":0,"66":0.003,"67":0.003,"68":0.003,"69":0.00601,"70":0.003,"71":0.00601,"72":0.003,"73":0.003,"74":0.00901,"75":0.003,"76":0.00901,"77":0.00601,"78":0.003,"79":0.04806,"80":0.01202,"81":0.03004,"83":0.00901,"84":0.01502,"85":0.01802,"86":0.03304,"87":0.01802,"88":0.00901,"89":0.01202,"90":0.00601,"91":0.00901,"92":0.02103,"93":0.00601,"94":0.00601,"95":0.01202,"96":0.01202,"97":0.01802,"98":0.03004,"99":0.01502,"100":0.02403,"101":0.02103,"102":0.03605,"103":0.10814,"104":1.13251,"105":4.76434,"106":0.10514,"107":0.00601,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.003,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.003,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.003,"64":0.00901,"65":0,"66":0,"67":0,"68":0.003,"69":0,"70":0.00601,"71":0.00601,"72":0.00901,"73":0.00901,"74":0,"75":0,"76":0.003,"77":0.003,"78":0,"79":0.01502,"80":0.003,"81":0.00601,"82":0.00901,"83":0.00601,"84":0.00601,"85":0.00601,"86":0.003,"87":0.00601,"88":0.00601,"89":0.01802,"90":0.02103,"91":0.003,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.003,"13":0,"14":0.003,"15":0,"16":0,"17":0,"18":0.00601,"79":0,"80":0,"81":0,"83":0,"84":0.003,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00601,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.003,"101":0.003,"102":0.003,"103":0.00901,"104":0.10214,"105":0.56776},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.003,"14":0.00901,"15":0.003,_:"0","3.1":0,"3.2":0,"5.1":0.05107,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00601,"13.1":0.01202,"14.1":0.02103,"15.1":0.003,"15.2-15.3":0.003,"15.4":0.00901,"15.5":0.02103,"15.6":0.06909,"16.0":0.01502,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00113,"6.0-6.1":0.00226,"7.0-7.1":0.03161,"8.1-8.4":0.00113,"9.0-9.2":0.00226,"9.3":0.03274,"10.0-10.2":0.00226,"10.3":0.06209,"11.0-11.2":0.01016,"11.3-11.4":0.01693,"12.0-12.1":0.01919,"12.2-12.5":0.86707,"13.0-13.1":0.01468,"13.2":0.00677,"13.3":0.03951,"13.4-13.7":0.13209,"14.0-14.4":0.42112,"14.5-14.8":0.51482,"15.0-15.1":0.19419,"15.2-15.3":0.26531,"15.4":0.31951,"15.5":0.96078,"15.6":5.01049,"16.0":2.08978,"16.1":0.02032},P:{"4":0.28848,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.10303,"8.2":0,"9.2":0.02061,"10.1":0,"11.1-11.2":0.06182,"12.0":0.0103,"13.0":0.08242,"14.0":0.08242,"15.0":0.03091,"16.0":0.11333,"17.0":0.27817,"18.0":1.55571},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0111,"4.2-4.3":0.03144,"4.4":0,"4.4.3-4.4.4":0.27557},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00631,"9":0.00315,"10":0.00315,"11":0.05047,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.46174},H:{"0":0.41065},L:{"0":74.77676},S:{"2.5":0},R:{_:"0"},M:{"0":0.18889},Q:{"13.1":0.007}}; 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 0e81e0d25ab969..403cff0d4242dc 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.0019,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.0019,"44":0,"45":0,"46":0,"47":0.0019,"48":0,"49":0,"50":0,"51":0,"52":0.0019,"53":0.0038,"54":0,"55":0,"56":0.0019,"57":0.0019,"58":0,"59":0,"60":0.0038,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.0019,"84":0,"85":0,"86":0,"87":0,"88":0.0057,"89":0,"90":0,"91":0.0019,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.0019,"98":0,"99":0,"100":0,"101":0,"102":0.04372,"103":0.21862,"104":0.03042,"105":0.0076,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.0019,"38":0,"39":0,"40":0.0038,"41":0,"42":0.0019,"43":0.0038,"44":0,"45":0,"46":0.0019,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00951,"55":0,"56":0.01331,"57":0,"58":0.0038,"59":0,"60":0,"61":0.0038,"62":0,"63":0.0019,"64":0.0019,"65":0.0038,"66":0,"67":0,"68":0.01141,"69":0.0019,"70":0.0038,"71":0.0019,"72":0,"73":0,"74":0.0019,"75":0.0019,"76":0,"77":0.0019,"78":0,"79":0.01141,"80":0.0019,"81":0.0019,"83":0.0019,"84":0,"85":0.0038,"86":0.0076,"87":0.00951,"88":0,"89":0.0019,"90":0,"91":0.0019,"92":0,"93":0,"94":0.02281,"95":0.0057,"96":0.0076,"97":0.0038,"98":0.05323,"99":0.0057,"100":0.0038,"101":0.00951,"102":0.01901,"103":0.35359,"104":0.93719,"105":0.0057,"106":0.0057,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.0019,"21":0,"22":0.0019,"23":0,"24":0.0038,"25":0,"26":0.0019,"27":0.0019,"28":0.0038,"29":0,"30":0.0038,"31":0,"32":0.0076,"33":0.0038,"34":0.0057,"35":0.0038,"36":0,"37":0,"38":0.02281,"39":0,"40":0,"41":0,"42":0.0076,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.0019,"51":0,"52":0,"53":0,"54":0.0019,"55":0.0019,"56":0,"57":0.0019,"58":0.00951,"60":0.01901,"62":0,"63":0.15778,"64":0.09125,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.0057,"71":0.0019,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.0019,"83":0.0019,"84":0.0019,"85":0,"86":0,"87":0.0019,"88":0.0019,"89":0.13307,"90":0.01521,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.03422},B:{"12":0.0038,"13":0.0019,"14":0.0019,"15":0.01331,"16":0.0019,"17":0.0019,"18":0.0038,"79":0,"80":0,"81":0,"83":0,"84":0.0038,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.01141,"91":0,"92":0.0057,"93":0,"94":0,"95":0,"96":0,"97":0.0019,"98":0,"99":0,"100":0,"101":0.0019,"102":0.0038,"103":0.06654,"104":0.16539,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.0019,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.0019,"15.6":0,"16.0":0},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.04267,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.09143,"10.0-10.2":0,"10.3":0.03962,"11.0-11.2":0.00914,"11.3-11.4":0.05729,"12.0-12.1":0.00244,"12.2-12.5":0.19017,"13.0-13.1":0.02987,"13.2":0.00305,"13.3":0.03169,"13.4-13.7":0.00914,"14.0-14.4":0.06948,"14.5-14.8":0.14628,"15.0-15.1":0.02316,"15.2-15.3":0.13043,"15.4":0.02072,"15.5":0.14201,"15.6":0.17371,"16.0":0.0067},P:{"4":0.64076,"5.0-5.4":0.02034,"6.2-6.4":0.03051,"7.2-7.4":0.50854,"8.2":0,"9.2":0.0712,"10.1":0,"11.1-11.2":0.22376,"12.0":0.02034,"13.0":0.02034,"14.0":0.10171,"15.0":0.04068,"16.0":0.14239,"17.0":0.53905,"18.0":0.26444},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00502,"4.2-4.3":0.09273,"4.4":0,"4.4.3-4.4.4":0.31746},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0038,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":77.19134},S:{"2.5":0},R:{_:"0"},M:{"0":0.19438},Q:{"10.4":0},O:{"0":1.44972},H:{"0":10.83433}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00172,"48":0,"49":0,"50":0,"51":0,"52":0.00345,"53":0,"54":0,"55":0.00345,"56":0,"57":0.00172,"58":0,"59":0,"60":0.00172,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00172,"89":0.00172,"90":0,"91":0,"92":0.00172,"93":0,"94":0,"95":0,"96":0,"97":0.00345,"98":0,"99":0,"100":0,"101":0,"102":0.00345,"103":0.04824,"104":0.12406,"105":0.0448,"106":0.00172,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00172,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00517,"38":0,"39":0,"40":0.00345,"41":0,"42":0.01551,"43":0.00689,"44":0,"45":0,"46":0.00172,"47":0,"48":0,"49":0,"50":0.00345,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00172,"58":0.00689,"59":0,"60":0,"61":0,"62":0,"63":0.00172,"64":0,"65":0,"66":0,"67":0,"68":0.02585,"69":0,"70":0.00862,"71":0,"72":0,"73":0,"74":0.00172,"75":0,"76":0,"77":0.00172,"78":0,"79":0.0672,"80":0.00172,"81":0.00345,"83":0,"84":0,"85":0.00172,"86":0.00172,"87":0.00862,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00517,"95":0.01723,"96":0.00172,"97":0.01206,"98":0.02757,"99":0.00345,"100":0.00862,"101":0.00689,"102":0.01895,"103":0.05858,"104":0.25156,"105":0.65646,"106":0.01206,"107":0.00345,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00172,"25":0.00172,"26":0,"27":0.00172,"28":0,"29":0,"30":0.00172,"31":0,"32":0.00517,"33":0.00517,"34":0,"35":0,"36":0,"37":0,"38":0.00689,"39":0,"40":0,"41":0,"42":0.00172,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00517,"51":0,"52":0,"53":0,"54":0.00172,"55":0,"56":0,"57":0,"58":0.00172,"60":0.01723,"62":0,"63":0.03963,"64":0.12578,"65":0.01895,"66":0,"67":0,"68":0,"69":0,"70":0.00172,"71":0.00345,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00172,"90":0.03791,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01895},B:{"12":0.00517,"13":0,"14":0.00172,"15":0,"16":0,"17":0.00172,"18":0.00517,"79":0,"80":0,"81":0,"83":0,"84":0.00345,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00172,"91":0,"92":0.00345,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00345,"104":0.02068,"105":0.05858},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00172,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0},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.01435,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.053,"10.0-10.2":0,"10.3":0.00397,"11.0-11.2":0.02606,"11.3-11.4":0,"12.0-12.1":0.04725,"12.2-12.5":0.15877,"13.0-13.1":0.00066,"13.2":0.00574,"13.3":0.03356,"13.4-13.7":0.01502,"14.0-14.4":0.12763,"14.5-14.8":0.36324,"15.0-15.1":0.73112,"15.2-15.3":0.12697,"15.4":0.01546,"15.5":0.20713,"15.6":0.21242,"16.0":0.03489,"16.1":0.00066},P:{"4":0.65784,"5.0-5.4":0.09109,"6.2-6.4":0.02024,"7.2-7.4":0.36434,"8.2":0,"9.2":0.01012,"10.1":0,"11.1-11.2":0.04048,"12.0":0,"13.0":0.02024,"14.0":0.04048,"15.0":0.03036,"16.0":0.12145,"17.0":0.23278,"18.0":0.50603},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00097,"4.2-4.3":0.04348,"4.4":0,"4.4.3-4.4.4":0.28277},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01206,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":1.41537},H:{"0":12.83558},L:{"0":75.13931},S:{"2.5":0},R:{_:"0"},M:{"0":0.3228},Q:{"13.1":0.05794}}; 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 066b566430fb21..9ec6dcf8ac9fd8 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00394,"49":0,"50":0,"51":0,"52":0.02755,"53":0,"54":0,"55":0,"56":0.00394,"57":0,"58":0,"59":0.00394,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00394,"67":0,"68":0.00394,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01968,"79":0,"80":0.00394,"81":0.00394,"82":0,"83":0,"84":0.00394,"85":0,"86":0,"87":0,"88":0.00787,"89":0.00394,"90":0.00787,"91":0.03148,"92":0,"93":0,"94":0.04722,"95":0.00394,"96":0.00394,"97":0.00394,"98":0.00394,"99":0.00787,"100":0.00787,"101":0.01181,"102":0.03542,"103":0.84996,"104":0.18888,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00394,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03542,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00394,"61":0,"62":0,"63":0,"64":0.00394,"65":0.01181,"66":0.01968,"67":0.00394,"68":0.00787,"69":0.01574,"70":0.00394,"71":0.00394,"72":0.00394,"73":0,"74":0.00394,"75":0.01968,"76":0.00394,"77":0.00394,"78":0.00787,"79":0.07083,"80":0.00787,"81":0.01574,"83":0.01181,"84":0.01968,"85":0.01574,"86":0.01968,"87":0.02755,"88":0.00787,"89":0.01968,"90":0.00787,"91":0.01181,"92":0.01968,"93":0.01968,"94":0.01574,"95":0.01574,"96":0.01968,"97":0.01574,"98":0.0787,"99":0.02361,"100":0.03148,"101":0.03935,"102":0.10625,"103":2.37281,"104":6.74066,"105":0.02361,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00394,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00394,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00394,"64":0.00394,"65":0,"66":0,"67":0,"68":0.00394,"69":0,"70":0,"71":0.00394,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00394,"81":0,"82":0,"83":0,"84":0,"85":0.00394,"86":0,"87":0,"88":0.00787,"89":0.52336,"90":0.04722,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00394,"16":0.00394,"17":0.00394,"18":0.00394,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00787,"93":0,"94":0,"95":0.00394,"96":0,"97":0.00394,"98":0.00394,"99":0.00394,"100":0.00394,"101":0.01968,"102":0.01181,"103":0.36596,"104":1.08213,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01181,"14":0.05116,"15":0.01574,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00394,"10.1":0.00394,"11.1":0.01181,"12.1":0.02361,"13.1":0.0787,"14.1":0.12592,"15.1":0.02755,"15.2-15.3":0.02361,"15.4":0.07083,"15.5":0.27545,"15.6":0.42498,"16.0":0.00394},G:{"8":0.00178,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00533,"6.0-6.1":0,"7.0-7.1":0.00355,"8.1-8.4":0.00355,"9.0-9.2":0.00355,"9.3":0.10309,"10.0-10.2":0.00178,"10.3":0.10664,"11.0-11.2":0.016,"11.3-11.4":0.05687,"12.0-12.1":0.02311,"12.2-12.5":0.52964,"13.0-13.1":0.01777,"13.2":0.00889,"13.3":0.04799,"13.4-13.7":0.15818,"14.0-14.4":0.39634,"14.5-14.8":0.99886,"15.0-15.1":0.27904,"15.2-15.3":0.45855,"15.4":0.74648,"15.5":4.38822,"15.6":9.28298,"16.0":0.11553},P:{"4":0.14611,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01044,"8.2":0,"9.2":0.01044,"10.1":0,"11.1-11.2":0.04175,"12.0":0.02087,"13.0":0.06262,"14.0":0.06262,"15.0":0.03131,"16.0":0.09393,"17.0":0.89753,"18.0":1.38804},I:{"0":0,"3":0,"4":0.01613,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01075,"4.2-4.3":0.03763,"4.4":0,"4.4.3-4.4.4":0.18813},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00411,"9":0.00411,"10":0,"11":0.08228,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":60.90283},S:{"2.5":0},R:{_:"0"},M:{"0":0.31538},Q:{"10.4":0},O:{"0":0.03639},H:{"0":0.21819}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02686,"53":0,"54":0,"55":0,"56":0.00448,"57":0,"58":0,"59":0.00448,"60":0.00448,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00448,"68":0.00448,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02686,"79":0,"80":0.00448,"81":0.00448,"82":0.00448,"83":0,"84":0.00448,"85":0,"86":0,"87":0,"88":0.00895,"89":0.00448,"90":0,"91":0.03582,"92":0,"93":0,"94":0.00448,"95":0.00448,"96":0.00448,"97":0.00448,"98":0.00448,"99":0.00448,"100":0.02686,"101":0.00895,"102":0.01791,"103":0.04925,"104":0.85063,"105":0.30891,"106":0.00448,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00448,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03582,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00448,"65":0.00448,"66":0.02239,"67":0.00448,"68":0.00448,"69":0.00448,"70":0.00448,"71":0,"72":0,"73":0.00448,"74":0.00448,"75":0.02239,"76":0.00448,"77":0.00448,"78":0.00448,"79":0.0582,"80":0.00895,"81":0.01343,"83":0.01343,"84":0.01791,"85":0.01791,"86":0.03134,"87":0.04477,"88":0.00895,"89":0.01791,"90":0.01343,"91":0.01343,"92":0.02239,"93":0.01791,"94":0.02239,"95":0.01791,"96":0.02239,"97":0.02239,"98":0.07163,"99":0.02686,"100":0.04029,"101":0.04029,"102":0.11193,"103":0.26414,"104":2.08628,"105":10.11354,"106":0.24176,"107":0.00448,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00448,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00448,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00448,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00448,"71":0.00448,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00448,"86":0,"87":0,"88":0,"89":0.05372,"90":0.69394,"91":0.02686,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00448,"18":0.00448,"79":0,"80":0,"81":0,"83":0,"84":0.00448,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00448,"91":0,"92":0.00895,"93":0,"94":0,"95":0.00448,"96":0,"97":0.00448,"98":0.00448,"99":0.00448,"100":0.00448,"101":0.01343,"102":0.00895,"103":0.02239,"104":0.23728,"105":1.47741},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01343,"14":0.06716,"15":0.01791,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00448,"10.1":0.00448,"11.1":0.01791,"12.1":0.02239,"13.1":0.08954,"14.1":0.15222,"15.1":0.03134,"15.2-15.3":0.03134,"15.4":0.08506,"15.5":0.20594,"15.6":0.64469,"16.0":0.09402,"16.1":0.00448},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0053,"6.0-6.1":0,"7.0-7.1":0.00883,"8.1-8.4":0.00177,"9.0-9.2":0,"9.3":0.07771,"10.0-10.2":0.00177,"10.3":0.09714,"11.0-11.2":0.0159,"11.3-11.4":0.04769,"12.0-12.1":0.02119,"12.2-12.5":0.47333,"13.0-13.1":0.01413,"13.2":0.00706,"13.3":0.04062,"13.4-13.7":0.12186,"14.0-14.4":0.3444,"14.5-14.8":0.83186,"15.0-15.1":0.21547,"15.2-15.3":0.33027,"15.4":0.48392,"15.5":1.37053,"15.6":9.65907,"16.0":3.10666,"16.1":0.03356},P:{"4":0.13639,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01049,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03147,"12.0":0.02098,"13.0":0.05246,"14.0":0.04197,"15.0":0.02098,"16.0":0.07344,"17.0":0.17835,"18.0":1.94091},I:{"0":0,"3":0,"4":0.01131,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01131,"4.2-4.3":0.02261,"4.4":0,"4.4.3-4.4.4":0.18089},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00469,"9":0,"10":0,"11":0.0938,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.02762},H:{"0":0.1987},L:{"0":57.12105},S:{"2.5":0},R:{_:"0"},M:{"0":0.25406},Q:{"13.1":0}}; 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 3dbf879c1b3f81..f8542452a2a87a 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00395,"30":0,"31":0,"32":0,"33":0,"34":0.00395,"35":0.00395,"36":0,"37":0,"38":0,"39":0,"40":0.00395,"41":0,"42":0,"43":0,"44":0.00395,"45":0,"46":0,"47":0.00395,"48":0,"49":0,"50":0,"51":0,"52":0.05131,"53":0,"54":0,"55":0,"56":0.00395,"57":0,"58":0,"59":0.00395,"60":0.00395,"61":0.00395,"62":0,"63":0.01184,"64":0.00789,"65":0.00395,"66":0,"67":0.00789,"68":0.00395,"69":0,"70":0.00395,"71":0,"72":0.00789,"73":0,"74":0,"75":0,"76":0,"77":0.00789,"78":0,"79":0,"80":0,"81":0.00395,"82":0,"83":0,"84":0.02763,"85":0,"86":0,"87":0,"88":0.00789,"89":0.02763,"90":0,"91":0.03158,"92":0.00395,"93":0,"94":0,"95":0.01974,"96":0.00395,"97":0.02368,"98":0.00395,"99":0.01579,"100":0.01974,"101":0.01184,"102":0.03947,"103":1.39724,"104":0.40259,"105":0.04342,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00395,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00395,"34":0.01974,"35":0,"36":0,"37":0,"38":0.00395,"39":0,"40":0.03158,"41":0,"42":0.00789,"43":0.05921,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00789,"50":0.00395,"51":0,"52":0,"53":0.00395,"54":0,"55":0.00789,"56":0.00789,"57":0,"58":0.00395,"59":0,"60":0,"61":0,"62":0,"63":0.00395,"64":0.01974,"65":0.00395,"66":0,"67":0.00395,"68":0.01974,"69":0.00789,"70":0.01974,"71":0.00395,"72":0.03158,"73":0.00789,"74":0.00789,"75":0.00395,"76":0.00789,"77":0.01974,"78":0.00395,"79":0.38681,"80":0.01974,"81":0.04342,"83":0.00789,"84":0.00395,"85":0.00395,"86":0.02368,"87":0.01974,"88":0.00789,"89":0.05131,"90":0.01184,"91":0.01184,"92":0.01974,"93":0.01184,"94":0.01579,"95":0.05131,"96":0.02368,"97":0.02368,"98":0.2605,"99":0.02368,"100":0.02763,"101":0.04736,"102":0.10657,"103":1.64195,"104":5.67184,"105":0.03158,"106":0.02368,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00395,"25":0,"26":0,"27":0.00789,"28":0.01184,"29":0.00395,"30":0.03158,"31":0,"32":0.01974,"33":0.00789,"34":0.00395,"35":0,"36":0,"37":0,"38":0.01184,"39":0,"40":0,"41":0,"42":0.00789,"43":0,"44":0,"45":0,"46":0.00395,"47":0,"48":0,"49":0,"50":0.00395,"51":0,"52":0,"53":0,"54":0.00395,"55":0,"56":0.00395,"57":0,"58":0.00789,"60":0.04342,"62":0,"63":0.22893,"64":0.14604,"65":0,"66":0,"67":0.00395,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00395,"74":0,"75":0,"76":0,"77":0.00395,"78":0,"79":0.01974,"80":0,"81":0,"82":0,"83":0,"84":0.00395,"85":0.01579,"86":0.00789,"87":0.00395,"88":0.01184,"89":0.65126,"90":0.12236,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.03158},B:{"12":0.03552,"13":0.01184,"14":0.00395,"15":0.00789,"16":0.00789,"17":0.00789,"18":0.02763,"79":0,"80":0,"81":0,"83":0,"84":0.00395,"85":0.00395,"86":0,"87":0,"88":0,"89":0.00395,"90":0.00395,"91":0,"92":0.01184,"93":0,"94":0,"95":0.00395,"96":0.00395,"97":0.00395,"98":0.00395,"99":0.00395,"100":0.00395,"101":0.00789,"102":0.01579,"103":0.37497,"104":1.09332,"105":0},E:{"4":0,"5":0,"6":0,"7":0.00395,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00395,"14":0.00395,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00395,"13.1":0.00789,"14.1":0.01974,"15.1":0,"15.2-15.3":0,"15.4":0.00395,"15.5":0.01579,"15.6":0.01184,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0.00801,"4.2-4.3":0,"5.0-5.1":0.00721,"6.0-6.1":0.0024,"7.0-7.1":0.17871,"8.1-8.4":0.01923,"9.0-9.2":0.00922,"9.3":0.24843,"10.0-10.2":0.01242,"10.3":0.1134,"11.0-11.2":0.02805,"11.3-11.4":0.16188,"12.0-12.1":0.06491,"12.2-12.5":0.65553,"13.0-13.1":0.01963,"13.2":0.01202,"13.3":0.02805,"13.4-13.7":0.03686,"14.0-14.4":0.21317,"14.5-14.8":0.38987,"15.0-15.1":0.18231,"15.2-15.3":0.20716,"15.4":0.16869,"15.5":0.60865,"15.6":0.58981,"16.0":0.03887},P:{"4":0.37993,"5.0-5.4":0.02054,"6.2-6.4":0.02054,"7.2-7.4":0.25671,"8.2":0,"9.2":0.03081,"10.1":0,"11.1-11.2":0.11295,"12.0":0.01027,"13.0":0.13349,"14.0":0.06161,"15.0":0.02054,"16.0":0.1643,"17.0":0.63665,"18.0":0.45181},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00542,"4.2-4.3":0.0804,"4.4":0,"4.4.3-4.4.4":0.31286},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04342,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":68.07342},S:{"2.5":0},R:{_:"0"},M:{"0":0.0908},Q:{"10.4":0.00605},O:{"0":1.08349},H:{"0":5.11742}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00755,"34":0.00377,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00377,"41":0,"42":0,"43":0.00377,"44":0,"45":0,"46":0,"47":0.00377,"48":0,"49":0,"50":0,"51":0,"52":0.05282,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00377,"60":0,"61":0,"62":0,"63":0.01509,"64":0.01132,"65":0.00377,"66":0,"67":0.00377,"68":0.00377,"69":0,"70":0,"71":0,"72":0.00755,"73":0,"74":0,"75":0,"76":0,"77":0.01132,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.03773,"85":0,"86":0.00377,"87":0,"88":0.00377,"89":0.03773,"90":0.00377,"91":0.01509,"92":0,"93":0,"94":0,"95":0.0566,"96":0,"97":0.01132,"98":0,"99":0.01132,"100":0.01509,"101":0.00377,"102":0.01132,"103":0.0566,"104":1.06399,"105":0.38862,"106":0.04528,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00377,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00377,"34":0.02264,"35":0,"36":0,"37":0,"38":0.00755,"39":0,"40":0.02641,"41":0,"42":0,"43":0.03018,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00377,"50":0,"51":0,"52":0,"53":0.00755,"54":0,"55":0.00377,"56":0.01132,"57":0,"58":0.00755,"59":0,"60":0,"61":0.00377,"62":0,"63":0.00377,"64":0.04905,"65":0.00377,"66":0.00377,"67":0,"68":0.00377,"69":0.01132,"70":0.05282,"71":0.00377,"72":0.01887,"73":0.00377,"74":0.01509,"75":0.00377,"76":0.00755,"77":0.01509,"78":0.01132,"79":0.38485,"80":0.01887,"81":0.04528,"83":0.01509,"84":0.00377,"85":0.00377,"86":0.02641,"87":0.01509,"88":0.01132,"89":0.0415,"90":0.00755,"91":0.01132,"92":0.01509,"93":0.01509,"94":0.00755,"95":0.04905,"96":0.02264,"97":0.01887,"98":0.27166,"99":0.01887,"100":0.02264,"101":0.0415,"102":0.06037,"103":0.15092,"104":1.53184,"105":5.02186,"106":0.07546,"107":0.01887,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00377,"25":0,"26":0,"27":0.00755,"28":0.01132,"29":0,"30":0.01887,"31":0,"32":0.01132,"33":0.00377,"34":0,"35":0,"36":0,"37":0,"38":0.00755,"39":0,"40":0,"41":0,"42":0.00755,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00755,"51":0,"52":0,"53":0,"54":0.00377,"55":0,"56":0,"57":0,"58":0.00755,"60":0.03773,"62":0,"63":0.0981,"64":0.2377,"65":0.01509,"66":0,"67":0.01132,"68":0,"69":0,"70":0.00377,"71":0.00377,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00377,"78":0,"79":0.01509,"80":0,"81":0,"82":0,"83":0,"84":0.00755,"85":0.01509,"86":0.00377,"87":0.00377,"88":0.00377,"89":0.01509,"90":0.65273,"91":0.01887,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02264},B:{"12":0.01887,"13":0.00377,"14":0.00755,"15":0.00377,"16":0.00377,"17":0.00755,"18":0.02264,"79":0,"80":0,"81":0,"83":0,"84":0.00377,"85":0.00377,"86":0,"87":0,"88":0,"89":0.00377,"90":0.00377,"91":0,"92":0.00755,"93":0,"94":0,"95":0,"96":0.00755,"97":0,"98":0,"99":0.00377,"100":0.01132,"101":0.02641,"102":0.00755,"103":0.02264,"104":0.22638,"105":1.04889},E:{"4":0,"5":0,"6":0,"7":0.00755,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00377,"14":0.00377,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00755,"14.1":0.01509,"15.1":0,"15.2-15.3":0,"15.4":0.00377,"15.5":0.01132,"15.6":0.01887,"16.0":0.00377,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0.00874,"4.2-4.3":0,"5.0-5.1":0.00218,"6.0-6.1":0.00801,"7.0-7.1":0.18643,"8.1-8.4":0.02148,"9.0-9.2":0.0102,"9.3":0.20354,"10.0-10.2":0.00437,"10.3":0.16203,"11.0-11.2":0.02949,"11.3-11.4":0.09868,"12.0-12.1":0.09176,"12.2-12.5":0.6059,"13.0-13.1":0.01748,"13.2":0.01202,"13.3":0.03131,"13.4-13.7":0.04151,"14.0-14.4":0.20791,"14.5-14.8":0.30878,"15.0-15.1":0.17296,"15.2-15.3":0.13363,"15.4":0.09722,"15.5":0.27892,"15.6":0.71113,"16.0":0.1522,"16.1":0.00437},P:{"4":0.50374,"5.0-5.4":0.01028,"6.2-6.4":0.03084,"7.2-7.4":0.25701,"8.2":0,"9.2":0.03084,"10.1":0,"11.1-11.2":0.03084,"12.0":0.01028,"13.0":0.12337,"14.0":0.04112,"15.0":0.03084,"16.0":0.12337,"17.0":0.23645,"18.0":0.75047},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00469,"4.2-4.3":0.06529,"4.4":0,"4.4.3-4.4.4":0.30698},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03018,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":1.05859},H:{"0":5.65361},L:{"0":68.61572},S:{"2.5":0},R:{_:"0"},M:{"0":0.09341},Q:{"13.1":0.00623}}; 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 f4f8155010f938..3c3b134d8e4c28 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00638,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00638,"49":0,"50":0,"51":0,"52":0.02553,"53":0,"54":0,"55":0.01915,"56":0,"57":0,"58":0,"59":0.00638,"60":0.00638,"61":0,"62":0.00638,"63":0,"64":0,"65":0.00638,"66":0,"67":0,"68":0.00638,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00638,"78":0.12764,"79":0.01915,"80":0.01276,"81":0.01915,"82":0.01276,"83":0.02553,"84":0.01276,"85":0,"86":0.00638,"87":0,"88":0.01276,"89":0.00638,"90":0,"91":0.14679,"92":0.00638,"93":0.00638,"94":0.00638,"95":0.03191,"96":0.01276,"97":0.00638,"98":0.00638,"99":0.01276,"100":0.05744,"101":0.03191,"102":0.15317,"103":6.39476,"104":1.67208,"105":0.00638,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00638,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00638,"39":0,"40":0,"41":0,"42":0.02553,"43":0,"44":0.00638,"45":0,"46":0,"47":0,"48":0.01276,"49":0.01276,"50":0,"51":0,"52":0,"53":0.00638,"54":0,"55":0,"56":0.00638,"57":0,"58":0,"59":0,"60":0.00638,"61":0.03829,"62":0,"63":0.01915,"64":0.00638,"65":0.01276,"66":0,"67":0.00638,"68":0,"69":0.10849,"70":0.00638,"71":0.01276,"72":0,"73":0,"74":0.00638,"75":0.00638,"76":0.01276,"77":0.00638,"78":0.01276,"79":0.28719,"80":0.13402,"81":0.03829,"83":0.0702,"84":0.14679,"85":0.1404,"86":0.28719,"87":0.25528,"88":0.01276,"89":0.03191,"90":0.01276,"91":0.01915,"92":0.01915,"93":0.03191,"94":0.03191,"95":0.01915,"96":0.22337,"97":0.12126,"98":0.1404,"99":0.07658,"100":0.90624,"101":0.28081,"102":0.33825,"103":4.40996,"104":15.43806,"105":0.04467,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00638,"64":0.01276,"65":0,"66":0,"67":0,"68":0,"69":0.00638,"70":0,"71":0.02553,"72":0.01276,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00638,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00638,"86":0.00638,"87":0,"88":0.01915,"89":0.86157,"90":0.07658,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00638,"15":0,"16":0,"17":0.00638,"18":0.03191,"79":0,"80":0,"81":0,"83":0.00638,"84":0.01276,"85":0.00638,"86":0,"87":0.00638,"88":0,"89":0,"90":0,"91":0,"92":0.00638,"93":0,"94":0.00638,"95":0,"96":0.00638,"97":0,"98":0.00638,"99":0.01276,"100":0.00638,"101":0.02553,"102":0.02553,"103":0.72755,"104":2.78893,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00638,"10":0,"11":0,"12":0,"13":0.02553,"14":0.07658,"15":0.02553,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01276,"10.1":0,"11.1":0.00638,"12.1":0.02553,"13.1":0.12126,"14.1":0.15955,"15.1":0.03829,"15.2-15.3":0.03829,"15.4":0.13402,"15.5":0.48503,"15.6":0.93177,"16.0":0.00638},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.00191,"8.1-8.4":0.01334,"9.0-9.2":0.00762,"9.3":0.05145,"10.0-10.2":0.00762,"10.3":0.101,"11.0-11.2":0.04764,"11.3-11.4":0.02477,"12.0-12.1":0.04192,"12.2-12.5":0.44781,"13.0-13.1":0.01715,"13.2":0.00953,"13.3":0.04383,"13.4-13.7":0.23629,"14.0-14.4":0.61932,"14.5-14.8":1.17765,"15.0-15.1":0.42876,"15.2-15.3":0.66886,"15.4":0.989,"15.5":4.75635,"15.6":9.24592,"16.0":0.1029},P:{"4":0.09268,"5.0-5.4":0.0103,"6.2-6.4":0,"7.2-7.4":0.0103,"8.2":0,"9.2":0.02059,"10.1":0,"11.1-11.2":0.03089,"12.0":0.02059,"13.0":0.06178,"14.0":0.08238,"15.0":0.04119,"16.0":0.15446,"17.0":0.99885,"18.0":1.01944},I:{"0":0,"3":0,"4":0.00412,"2.1":0,"2.2":0.00412,"2.3":0.00823,"4.1":0.00823,"4.2-4.3":0.01852,"4.4":0,"4.4.3-4.4.4":0.08849},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01915,"9":0.01276,"10":0.00638,"11":0.11488,"5.5":0},J:{"7":0,"10":0},N:{"10":0.00724,"11":0},L:{"0":34.58217},S:{"2.5":0},R:{_:"0"},M:{"0":0.62591},Q:{"10.4":0.00724},O:{"0":0.13025},H:{"0":0.40076}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00661,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01983,"53":0,"54":0,"55":0.01322,"56":0,"57":0,"58":0,"59":0.00661,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00661,"66":0,"67":0,"68":0.01322,"69":0,"70":0,"71":0,"72":0.03305,"73":0,"74":0,"75":0.00661,"76":0,"77":0,"78":0.16525,"79":0.0661,"80":0.01983,"81":0.0661,"82":0.03305,"83":0.03305,"84":0.01322,"85":0,"86":0,"87":0.00661,"88":0.00661,"89":0,"90":0,"91":0.1322,"92":0.05949,"93":0.03305,"94":0.03966,"95":0.02644,"96":0.01322,"97":0.00661,"98":0.00661,"99":0.01322,"100":0.04627,"101":0.01983,"102":0.07932,"103":0.13881,"104":6.86118,"105":0.86591,"106":0.00661,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00661,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00661,"39":0,"40":0,"41":0,"42":0.01983,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01322,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00661,"57":0,"58":0,"59":0,"60":0.00661,"61":0.01983,"62":0,"63":0.00661,"64":0,"65":0.01322,"66":0,"67":0.00661,"68":0,"69":0.03966,"70":0.01322,"71":0.00661,"72":0.00661,"73":0,"74":0.00661,"75":0.02644,"76":0.01322,"77":0.00661,"78":0.01983,"79":0.09915,"80":0.01983,"81":0.05288,"83":0.08593,"84":0.21152,"85":0.27101,"86":0.29745,"87":0.22474,"88":0.01322,"89":0.03305,"90":0.03305,"91":0.00661,"92":0.01322,"93":0.05949,"94":0.01322,"95":0.01322,"96":0.14542,"97":0.02644,"98":0.02644,"99":0.03966,"100":0.99811,"101":0.34372,"102":0.34372,"103":0.69405,"104":5.10292,"105":17.12651,"106":0.23796,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00661,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00661,"65":0,"66":0,"67":0,"68":0.02644,"69":0.03305,"70":0.01322,"71":0.00661,"72":0.02644,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00661,"86":0,"87":0,"88":0.00661,"89":0.07271,"90":0.83286,"91":0.02644,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00661,"15":0,"16":0,"17":0,"18":0.02644,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.03966,"86":0.03305,"87":0.01322,"88":0,"89":0.00661,"90":0,"91":0,"92":0.00661,"93":0,"94":0,"95":0,"96":0.00661,"97":0,"98":0,"99":0.01322,"100":0,"101":0.01983,"102":0.00661,"103":0.03305,"104":0.67422,"105":2.84891},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02644,"14":0.07271,"15":0.01983,_:"0","3.1":0,"3.2":0,"5.1":0.00661,"6.1":0,"7.1":0,"9.1":0.01322,"10.1":0,"11.1":0.00661,"12.1":0.01983,"13.1":0.11898,"14.1":0.16525,"15.1":0.03966,"15.2-15.3":0.03966,"15.4":0.12559,"15.5":0.21152,"15.6":1.16336,"16.0":0.17186,"16.1":0.01322},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.002,"8.1-8.4":0.01803,"9.0-9.2":0.00401,"9.3":0.0561,"10.0-10.2":0.01603,"10.3":0.07614,"11.0-11.2":0.04608,"11.3-11.4":0.02004,"12.0-12.1":0.03406,"12.2-12.5":0.42476,"13.0-13.1":0.01403,"13.2":0.01403,"13.3":0.03606,"13.4-13.7":0.24845,"14.0-14.4":0.54498,"14.5-14.8":1.20617,"15.0-15.1":0.33861,"15.2-15.3":0.5009,"15.4":0.66119,"15.5":1.68703,"15.6":10.48286,"16.0":3.02144,"16.1":0.03005},P:{"4":0.11324,"5.0-5.4":0.01029,"6.2-6.4":0,"7.2-7.4":0.02059,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02059,"12.0":0.02059,"13.0":0.04118,"14.0":0.06177,"15.0":0.03088,"16.0":0.11324,"17.0":0.22649,"18.0":1.57513},I:{"0":0,"3":0,"4":0.004,"2.1":0,"2.2":0.00799,"2.3":0.004,"4.1":0.006,"4.2-4.3":0.02998,"4.4":0,"4.4.3-4.4.4":0.09194},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.02066,"9":0.01377,"10":0.00689,"11":0.12394,"5.5":0},N:{"10":0.01017,"11":0},J:{"7":0,"10":0.00339},O:{"0":0.12543},H:{"0":0.3402},L:{"0":31.69742},S:{"2.5":0},R:{_:"0"},M:{"0":0.55257},Q:{"13.1":0.00339}}; 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 3251e27ee2f22c..14564de56f6668 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00652,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.0163,"61":0,"62":0,"63":0,"64":0,"65":0.00652,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00652,"79":0,"80":0,"81":0.01304,"82":0,"83":0.00326,"84":0,"85":0,"86":0.00652,"87":0,"88":0.00326,"89":0,"90":0,"91":0.0163,"92":0,"93":0,"94":0,"95":0.00652,"96":0,"97":0,"98":0,"99":0.00652,"100":0.00326,"101":0.00326,"102":0.0326,"103":0.53464,"104":0.1304,"105":0.00326,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00326,"40":0.00652,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00652,"47":0,"48":0,"49":0.00652,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00652,"57":0.00326,"58":0,"59":0,"60":0.05216,"61":0,"62":0,"63":0,"64":0.00326,"65":0,"66":0,"67":0,"68":0.0326,"69":0.01304,"70":0,"71":0,"72":0.00326,"73":0.00326,"74":0.00652,"75":0.00326,"76":0.00652,"77":0.00326,"78":0.00326,"79":0.01956,"80":0,"81":0.00652,"83":0.03586,"84":0.00652,"85":0.05542,"86":0.07824,"87":0.00978,"88":0.01304,"89":0.00326,"90":0.00326,"91":0.00652,"92":0.00978,"93":0.00326,"94":0.01956,"95":0.00326,"96":0.02282,"97":0.00326,"98":0.01956,"99":0.02282,"100":0.03586,"101":0.01956,"102":0.05868,"103":1.88754,"104":4.01958,"105":0.00652,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00326,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0163,"64":0.00652,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.1467,"90":0.00652,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00326,"13":0.00326,"14":0,"15":0.00652,"16":0.00326,"17":0.00326,"18":0.0163,"79":0,"80":0.00326,"81":0,"83":0,"84":0.00652,"85":0.00326,"86":0,"87":0,"88":0,"89":0.00652,"90":0.00326,"91":0,"92":0.00652,"93":0,"94":0.0815,"95":0,"96":0.00326,"97":0,"98":0.00326,"99":0.02608,"100":0.02608,"101":0.00652,"102":0.00978,"103":0.28362,"104":0.75632,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00978,"14":0.05868,"15":0.00326,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00652,"10.1":0,"11.1":0,"12.1":0.00326,"13.1":0.07498,"14.1":0.05542,"15.1":0.01956,"15.2-15.3":0.00652,"15.4":0.02282,"15.5":0.1304,"15.6":0.14344,"16.0":0},G:{"8":0.00201,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00301,"6.0-6.1":0,"7.0-7.1":0.0883,"8.1-8.4":0.001,"9.0-9.2":0,"9.3":0.05719,"10.0-10.2":0.09934,"10.3":0.20168,"11.0-11.2":0.00301,"11.3-11.4":0.04616,"12.0-12.1":0.07927,"12.2-12.5":0.74853,"13.0-13.1":0.00301,"13.2":0.00502,"13.3":0.20369,"13.4-13.7":0.07325,"14.0-14.4":0.4144,"14.5-14.8":0.66224,"15.0-15.1":0.39734,"15.2-15.3":0.41741,"15.4":0.62311,"15.5":2.36399,"15.6":3.5229,"16.0":0.01304},P:{"4":0.35189,"5.0-5.4":0,"6.2-6.4":0.03105,"7.2-7.4":1.15918,"8.2":0,"9.2":0.0414,"10.1":0.0207,"11.1-11.2":0.24839,"12.0":0.0414,"13.0":0.34154,"14.0":0.47609,"15.0":0.52784,"16.0":0.74518,"17.0":3.19808,"18.0":3.58103},I:{"0":0,"3":0,"4":0.00543,"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.08369},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00571,"11":0.01712,"5.5":0},J:{"7":0,"10":0.00674},N:{"10":0,"11":0},L:{"0":64.49828},S:{"2.5":0},R:{_:"0"},M:{"0":0.22916},Q:{"10.4":0.02696},O:{"0":0.84924},H:{"0":0.28076}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00298,"48":0,"49":0,"50":0,"51":0,"52":0.00595,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00298,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00893,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01191,"92":0,"93":0,"94":0,"95":0.00298,"96":0,"97":0.00298,"98":0,"99":0.00298,"100":0,"101":0.00298,"102":0.00595,"103":0.02679,"104":0.4525,"105":0.13694,"106":0.00298,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01489,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00298,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00298,"57":0.00595,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00298,"65":0,"66":0.00298,"67":0,"68":0.01191,"69":0.02977,"70":0,"71":0,"72":0,"73":0.00595,"74":0.00298,"75":0.00298,"76":0.00595,"77":0,"78":0,"79":0.01191,"80":0.00298,"81":0.00595,"83":0.00298,"84":0.00893,"85":0.00298,"86":0.02084,"87":0.00595,"88":0.00893,"89":0.00298,"90":0,"91":0.00298,"92":0.00298,"93":0.00893,"94":0.00893,"95":0.00298,"96":0.02084,"97":0.00893,"98":0.01489,"99":0.01786,"100":0.01489,"101":0.01191,"102":0.02679,"103":0.10717,"104":1.16103,"105":3.71827,"106":0.06847,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00298,"64":0.02977,"65":0,"66":0,"67":0,"68":0.00893,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01786,"90":0.11015,"91":0.00298,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00298,"14":0,"15":0.00595,"16":0,"17":0.00595,"18":0.02382,"79":0,"80":0,"81":0,"83":0,"84":0.00298,"85":0.00298,"86":0,"87":0,"88":0,"89":0.00595,"90":0.00298,"91":0,"92":0.00298,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00595,"99":0.01786,"100":0.01786,"101":0.00595,"102":0.00595,"103":0.02382,"104":0.19351,"105":0.94371},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00298,"9":0,"10":0,"11":0,"12":0,"13":0.00595,"14":0.03572,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00298,"11.1":0,"12.1":0.00298,"13.1":0.02977,"14.1":0.02679,"15.1":0.01489,"15.2-15.3":0.00298,"15.4":0.02679,"15.5":0.0387,"15.6":0.17267,"16.0":0.02084,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00306,"6.0-6.1":0.00306,"7.0-7.1":0.11106,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06521,"10.0-10.2":0.02038,"10.3":0.05502,"11.0-11.2":0.00204,"11.3-11.4":0.02242,"12.0-12.1":0.12227,"12.2-12.5":0.68065,"13.0-13.1":0.00611,"13.2":0.00815,"13.3":0.22417,"13.4-13.7":0.05197,"14.0-14.4":0.39739,"14.5-14.8":0.58691,"15.0-15.1":0.67657,"15.2-15.3":0.27104,"15.4":0.57264,"15.5":0.74077,"15.6":4.34067,"16.0":1.01282,"16.1":0.01121},P:{"4":0.3288,"5.0-5.4":0,"6.2-6.4":0.06165,"7.2-7.4":1.55155,"8.2":0,"9.2":0.05138,"10.1":0.01028,"11.1-11.2":0.33908,"12.0":0.03083,"13.0":0.33908,"14.0":0.60623,"15.0":0.71926,"16.0":0.98641,"17.0":1.33577,"18.0":6.02123},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00796,"4.2-4.3":0.00597,"4.4":0,"4.4.3-4.4.4":0.08157},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00357,"11":0.03215,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.8849},H:{"0":0.43883},L:{"0":63.89087},S:{"2.5":0},R:{_:"0"},M:{"0":0.2739},Q:{"13.1":0.00702}}; 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 8a877b2ec7f7b8..790d8e9e75c6dd 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00643,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00643,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.59515,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.09329,"86":0,"87":0,"88":0.0193,"89":0,"90":0.01287,"91":0.0193,"92":0,"93":0,"94":0,"95":0,"96":0.00643,"97":0.05469,"98":0,"99":0,"100":0,"101":0.01287,"102":0,"103":1.20959,"104":0.69166,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0193,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01287,"61":0,"62":0.02252,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00643,"87":0,"88":0.03539,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.10616,"98":0,"99":0.00643,"100":0,"101":0.0193,"102":0.05469,"103":0.77851,"104":1.22568,"105":0,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.21232,"90":0.00643,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00643,"18":0.01287,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00643,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.05469,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00643,"101":0,"102":0,"103":1.01014,"104":2.11679,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.50185,"14":0.01287,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00643,"11.1":0,"12.1":0,"13.1":0.05469,"14.1":0.0193,"15.1":0.02252,"15.2-15.3":0.05791,"15.4":0.04182,"15.5":0.07721,"15.6":0.77208,"16.0":0},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.05441,"9.0-9.2":0,"9.3":0.01866,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0.01866,"12.0-12.1":0,"12.2-12.5":0.71205,"13.0-13.1":0,"13.2":0.01866,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.60322,"14.5-14.8":0.94992,"15.0-15.1":0.51305,"15.2-15.3":0.7136,"15.4":0.78512,"15.5":2.8311,"15.6":8.25698,"16.0":0.07307},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02117,"8.2":0,"9.2":0,"10.1":0.02117,"11.1-11.2":0.06351,"12.0":0,"13.0":0.02117,"14.0":8.24544,"15.0":0,"16.0":0.09526,"17.0":5.35583,"18.0":3.41884},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.24128},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.08364,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":49.44379},S:{"2.5":0},R:{_:"0"},M:{"0":1.18703},Q:{"10.4":0},O:{"0":0},H:{"0":0.03853}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00717,"64":0,"65":0,"66":0,"67":0.03945,"68":0,"69":0.00717,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.01434,"77":0,"78":0.60603,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.02869,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.02152,"99":0,"100":0,"101":0,"102":0,"103":0.19723,"104":1.79659,"105":0.58452,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00717,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.02152,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00717,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.04662,"95":0,"96":0,"97":0,"98":0.05379,"99":0,"100":0.01434,"101":0,"102":0.02152,"103":0.03945,"104":0.76382,"105":2.99431,"106":0,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.1291,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.16496,"79":0,"80":0,"81":0,"83":0,"84":0.01434,"85":0,"86":0,"87":0,"88":0,"89":0.00717,"90":0,"91":0.01434,"92":0,"93":0.06813,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01434,"103":0.2044,"104":0.64548,"105":2.7146},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.45542,"14":0.01434,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00717,"13.1":0,"14.1":0.06813,"15.1":0,"15.2-15.3":0,"15.4":0.02152,"15.5":0.02152,"15.6":0.49128,"16.0":0.06813,"16.1":0},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.77825,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.67178,"14.5-14.8":4.32727,"15.0-15.1":0.1014,"15.2-15.3":0.54503,"15.4":0.64896,"15.5":3.00653,"15.6":13.16687,"16.0":1.78972,"16.1":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04139,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.37254,"12.0":0.0207,"13.0":0.08279,"14.0":3.63224,"15.0":0,"16.0":0.06209,"17.0":0.54846,"18.0":15.18092},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 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.1291,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":33.86182},S:{"2.5":0},R:{_:"0"},M:{"0":0.94286},Q:{"13.1":0}}; 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 76af220d26b641..15510c61cd549d 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.01103,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00551,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00551,"96":0,"97":0,"98":0,"99":0,"100":0.01103,"101":0.01654,"102":0.07167,"103":1.19632,"104":0.36937,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02205,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00551,"73":0,"74":0,"75":0,"76":0.15988,"77":0,"78":0,"79":0.01103,"80":0,"81":0.00551,"83":0,"84":0,"85":0,"86":0,"87":0.00551,"88":0.00551,"89":0.00551,"90":0.01103,"91":0,"92":1.96814,"93":0.40245,"94":0,"95":0.00551,"96":0.00551,"97":0.00551,"98":0.00551,"99":0.01654,"100":0,"101":0.0827,"102":0.04962,"103":5.50197,"104":11.59384,"105":0.02757,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.11577,"90":0.02205,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00551,"16":0,"17":0.01654,"18":0.02757,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00551,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00551,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.01103,"101":0,"102":0,"103":0.90965,"104":3.24164,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00551,"14":0.27014,"15":0.00551,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.03859,"13.1":0.01654,"14.1":0.0441,"15.1":0,"15.2-15.3":0.01103,"15.4":0.02757,"15.5":0.2536,"15.6":0.22603,"16.0":0},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.00531,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.17882,"10.0-10.2":0,"10.3":0.17351,"11.0-11.2":0.02656,"11.3-11.4":0.00531,"12.0-12.1":0,"12.2-12.5":2.02901,"13.0-13.1":0,"13.2":0,"13.3":0.06374,"13.4-13.7":0.1204,"14.0-14.4":0.26381,"14.5-14.8":1.70501,"15.0-15.1":0.69404,"15.2-15.3":0.87641,"15.4":0.95608,"15.5":3.2967,"15.6":7.30515,"16.0":0.00531},P:{"4":0.01047,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02094,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.1047,"12.0":0,"13.0":0.05235,"14.0":0.01047,"15.0":0,"16.0":0.1047,"17.0":0.29315,"18.0":0.12564},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.77279,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":1.09099},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.02205,"11":0.00551,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":51.13124},S:{"2.5":0},R:{_:"0"},M:{"0":0.02692},Q:{"10.4":0},O:{"0":0.04936},H:{"0":0.6457}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00557,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00557,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00557,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00557,"97":0,"98":0,"99":0,"100":0.01671,"101":0.01114,"102":0.01114,"103":0.07797,"104":1.52591,"105":0.4845,"106":0.00557,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01114,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02228,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.05569,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00557,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.05569,"77":0.01114,"78":0,"79":0.02228,"80":0,"81":0.00557,"83":0.00557,"84":0,"85":0,"86":0,"87":0,"88":0.06126,"89":0,"90":0.01114,"91":0.01114,"92":0.24504,"93":0.07797,"94":0.00557,"95":0.02785,"96":0.01671,"97":0,"98":0.02228,"99":0,"100":0.00557,"101":0,"102":0.17264,"103":0.25617,"104":4.7782,"105":13.79441,"106":0.33971,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.01114,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00557,"90":0.15593,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.01114,"16":0,"17":0,"18":0.00557,"79":0,"80":0,"81":0,"83":0,"84":0.01671,"85":0,"86":0.05012,"87":0.00557,"88":0,"89":0,"90":0.01114,"91":0,"92":0,"93":0.00557,"94":0,"95":0,"96":0,"97":0.00557,"98":0,"99":0.01114,"100":0.02228,"101":0,"102":0.02228,"103":0.02785,"104":0.63487,"105":4.31041},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00557,"12":0,"13":0.01114,"14":0.03898,"15":0.00557,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.09467,"13.1":0.02228,"14.1":0.0724,"15.1":0.02785,"15.2-15.3":0,"15.4":0.01671,"15.5":0.08354,"15.6":0.45666,"16.0":0,"16.1":0},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.0063,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.04095,"9.3":0.01102,"10.0-10.2":0,"10.3":0.03465,"11.0-11.2":0.02362,"11.3-11.4":0.0063,"12.0-12.1":0.17797,"12.2-12.5":2.13252,"13.0-13.1":0.04095,"13.2":0,"13.3":0.05197,"13.4-13.7":0.25987,"14.0-14.4":0.2709,"14.5-14.8":1.67105,"15.0-15.1":0.11655,"15.2-15.3":0.47249,"15.4":0.32287,"15.5":1.3781,"15.6":7.80559,"16.0":0.77174,"16.1":0.01102},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04158,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.07277,"12.0":0,"13.0":0.04158,"14.0":0.07277,"15.0":0.0104,"16.0":0.04158,"17.0":0.09356,"18.0":2.86924},I:{"0":0,"3":0,"4":0.06482,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.12963,"4.4":0,"4.4.3-4.4.4":1.10187},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.02785,"11":0,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.38993},H:{"0":0.10068},L:{"0":48.82642},S:{"2.5":0},R:{_:"0"},M:{"0":0.01772},Q:{"13.1":0}}; 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 55f339415decfa..020dc1befbbe69 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02254,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00322,"88":0,"89":0,"90":0,"91":0.00966,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00322,"100":0.00322,"101":0,"102":0.00644,"103":0.19642,"104":0.02254,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00322,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00322,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00322,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00322,"80":0.00322,"81":0,"83":0,"84":0.00322,"85":0.00644,"86":0,"87":0.00322,"88":0.00644,"89":0,"90":0,"91":0,"92":0.00644,"93":0,"94":0,"95":0.00322,"96":0.00644,"97":0,"98":0,"99":0.00966,"100":0.00322,"101":0.00966,"102":0.07728,"103":0.52164,"104":1.46188,"105":0.01932,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00644,"89":0.10948,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00322,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00322,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00322,"102":0.00322,"103":0.21574,"104":0.40572,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00644,"14":0.12558,"15":0.00644,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00322,"13.1":0.02898,"14.1":0.04186,"15.1":0.07728,"15.2-15.3":0.07084,"15.4":0.60858,"15.5":1.71304,"15.6":4.03788,"16.0":0.0161},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.01689,"10.0-10.2":0,"10.3":0.05912,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.15202,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.26181,"14.5-14.8":0.47295,"15.0-15.1":0.54896,"15.2-15.3":1.2077,"15.4":2.55898,"15.5":17.70169,"15.6":61.14516,"16.0":0.30404},P:{"4":0.01032,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.01032,"11.1-11.2":0,"12.0":0,"13.0":0.01032,"14.0":0,"15.0":0.01032,"16.0":0.04129,"17.0":0.26837,"18.0":0.34062},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00897,"4.2-4.3":0.00149,"4.4":0,"4.4.3-4.4.4":0.00598},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00644,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":4.28718},S:{"2.5":0},R:{_:"0"},M:{"0":0.11526},Q:{"10.4":0},O:{"0":0},H:{"0":0.00642}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01445,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00722,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00361,"103":0.00361,"104":0.15532,"105":0.07224,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00361,"50":0,"51":0,"52":0,"53":0.00361,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00361,"80":0.00361,"81":0.00361,"83":0,"84":0,"85":0.00722,"86":0,"87":0.00361,"88":0,"89":0,"90":0.01084,"91":0,"92":0.01806,"93":0.00361,"94":0,"95":0,"96":0.00722,"97":0.00361,"98":0.02167,"99":0.02167,"100":0.00361,"101":0.01806,"102":0.0614,"103":0.07585,"104":0.6032,"105":3.07381,"106":0.08308,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01806,"90":0.16976,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00361,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01084,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00722,"104":0.1517,"105":0.64294},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00722,"14":0.09391,"15":0.05057,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00722,"12.1":0.00361,"13.1":0.03251,"14.1":0.10475,"15.1":0.04696,"15.2-15.3":0.08669,"15.4":0.40816,"15.5":0.75852,"15.6":5.46134,"16.0":0.27812,"16.1":0.01084},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.01657,"10.0-10.2":0.03314,"10.3":0.0497,"11.0-11.2":0,"11.3-11.4":0.01657,"12.0-12.1":0,"12.2-12.5":0.19053,"13.0-13.1":0,"13.2":0,"13.3":0.00828,"13.4-13.7":0.00828,"14.0-14.4":0.24852,"14.5-14.8":0.69584,"15.0-15.1":0.55502,"15.2-15.3":0.70413,"15.4":2.11238,"15.5":5.34308,"15.6":63.86848,"16.0":7.42233,"16.1":0.03314},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0.0208,"17.0":0.38477,"18.0":0.48876},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.02361},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.00605},L:{"0":4.47118},S:{"2.5":0},R:{_:"0"},M:{"0":0.07666},Q:{"13.1":0}}; 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 99a1bc1b90b472..fa95946b7ff5a7 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.01348,"11":0.00898,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00449,"46":0,"47":0.00898,"48":0.00449,"49":0,"50":0,"51":0,"52":0.03594,"53":0,"54":0,"55":0,"56":0.00449,"57":0,"58":0,"59":0.01348,"60":0.00449,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01348,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00449,"78":0.08086,"79":0.00898,"80":0.00898,"81":0.30546,"82":0.00898,"83":0.00898,"84":0.00449,"85":0,"86":0.00449,"87":0.00449,"88":0.00898,"89":0.00449,"90":0.00898,"91":0.13027,"92":0.00449,"93":0.00898,"94":0.01348,"95":0.00898,"96":0.00449,"97":0.00898,"98":0.00898,"99":0.01348,"100":0.01797,"101":0.03144,"102":0.08984,"103":2.15616,"104":0.42225,"105":0.00449,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00449,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00449,"49":0.04043,"50":0.00449,"51":0.00898,"52":0.01797,"53":0,"54":0,"55":0,"56":0.10332,"57":0,"58":0.00449,"59":0,"60":0.06289,"61":0,"62":0,"63":0.00449,"64":0,"65":0.00449,"66":0.0584,"67":0.00898,"68":0,"69":0.00898,"70":0.00449,"71":0.00898,"72":0.00449,"73":0.00449,"74":0.00449,"75":0.00449,"76":0.00449,"77":0.00449,"78":0.00898,"79":0.03594,"80":0.02246,"81":0.02246,"83":0.06738,"84":0.09433,"85":0.09882,"86":0.12128,"87":0.13925,"88":0.00898,"89":0.02246,"90":0.00898,"91":0.02246,"92":0.02695,"93":0.07636,"94":0.07636,"95":0.02695,"96":0.03594,"97":0.04492,"98":0.02246,"99":0.03144,"100":0.04043,"101":0.06738,"102":0.12128,"103":2.529,"104":6.37415,"105":0.02695,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00449,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00449,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01797,"64":0.01797,"65":0,"66":0,"67":0,"68":0.02246,"69":0.00449,"70":0.00449,"71":0.00898,"72":0.00449,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00449,"86":0,"87":0,"88":0.00898,"89":0.46268,"90":0.04043,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00449,"15":0.00449,"16":0,"17":0.00898,"18":0.01348,"79":0,"80":0,"81":0,"83":0.00449,"84":0.00449,"85":0.00449,"86":0.00449,"87":0.00449,"88":0,"89":0.00449,"90":0,"91":0.00449,"92":0.00449,"93":0,"94":0.00449,"95":0,"96":0.00449,"97":0.00449,"98":0.00449,"99":0.00449,"100":0.00898,"101":0.04043,"102":0.02695,"103":0.60642,"104":1.68001,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00449,"12":0.00449,"13":0.01797,"14":0.08535,"15":0.02246,_:"0","3.1":0,"3.2":0,"5.1":0.00449,"6.1":0,"7.1":0,"9.1":0.00449,"10.1":0.00898,"11.1":0.03594,"12.1":0.04043,"13.1":0.14374,"14.1":0.20214,"15.1":0.04043,"15.2-15.3":0.04043,"15.4":0.10781,"15.5":0.37733,"15.6":0.64685,"16.0":0.00898},G:{"8":0.01028,"3.2":0,"4.0-4.1":0.01542,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01028,"8.1-8.4":0.00257,"9.0-9.2":0.03083,"9.3":0.13874,"10.0-10.2":0.01799,"10.3":0.14131,"11.0-11.2":0.06166,"11.3-11.4":0.04882,"12.0-12.1":0.05139,"12.2-12.5":0.83503,"13.0-13.1":0.05139,"13.2":0.01542,"13.3":0.09506,"13.4-13.7":0.29804,"14.0-14.4":0.70399,"14.5-14.8":1.6572,"15.0-15.1":0.45734,"15.2-15.3":0.7117,"15.4":1.0046,"15.5":6.65965,"15.6":12.36608,"16.0":0.29804},P:{"4":0.10288,"5.0-5.4":0.02058,"6.2-6.4":0,"7.2-7.4":0.02058,"8.2":0.01029,"9.2":0.03086,"10.1":0.01029,"11.1-11.2":0.0823,"12.0":0.03086,"13.0":0.0823,"14.0":0.07202,"15.0":0.04115,"16.0":0.15432,"17.0":1.29628,"18.0":1.62549},I:{"0":0,"3":0,"4":0.01942,"2.1":0,"2.2":0.01294,"2.3":0,"4.1":0.01942,"4.2-4.3":0.02589,"4.4":0,"4.4.3-4.4.4":0.16827},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00923,"9":0.02308,"10":0,"11":0.13389,"5.5":0},J:{"7":0,"10":0.00551},N:{"10":0,"11":0},L:{"0":46.34973},S:{"2.5":0.01102},R:{_:"0"},M:{"0":0.6224},Q:{"10.4":0.00551},O:{"0":0.39658},H:{"0":0.45889}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.01382,"11":0.00461,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00461,"39":0,"40":0,"41":0.00461,"42":0,"43":0,"44":0,"45":0.00461,"46":0,"47":0.00461,"48":0.00461,"49":0,"50":0,"51":0,"52":0.03226,"53":0,"54":0,"55":0,"56":0.00461,"57":0,"58":0,"59":0.00461,"60":0.00461,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01382,"69":0,"70":0.00461,"71":0,"72":0.00461,"73":0,"74":0,"75":0.00461,"76":0,"77":0.00461,"78":0.08755,"79":0.01382,"80":0.01382,"81":0.01843,"82":0.01843,"83":0.00922,"84":0.00461,"85":0,"86":0.00461,"87":0.00461,"88":0.01382,"89":0.00461,"90":0.00922,"91":0.11981,"92":0.00461,"93":0.00922,"94":0.01382,"95":0.00461,"96":0.00461,"97":0.00922,"98":0.00922,"99":0.00922,"100":0.01382,"101":0.01843,"102":0.0599,"103":0.58522,"104":1.75565,"105":0.64973,"106":0.00461,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00461,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00461,"49":0.03686,"50":0.00461,"51":0.00922,"52":0.01382,"53":0,"54":0,"55":0,"56":0.07834,"57":0,"58":0.00461,"59":0,"60":0.02765,"61":0,"62":0,"63":0.00461,"64":0,"65":0.00461,"66":0.02765,"67":0.00922,"68":0.00461,"69":0.00461,"70":0.00922,"71":0.00922,"72":0.00461,"73":0.00461,"74":0.00461,"75":0.00461,"76":0.00461,"77":0.00461,"78":0.00922,"79":0.03226,"80":0.02304,"81":0.02765,"83":0.09216,"84":0.16589,"85":0.1705,"86":0.18432,"87":0.18432,"88":0.00922,"89":0.01843,"90":0.01382,"91":0.13363,"92":0.02304,"93":0.04147,"94":0.05069,"95":0.01843,"96":0.03226,"97":0.02765,"98":0.01843,"99":0.02765,"100":0.04147,"101":0.0599,"102":0.07834,"103":0.23962,"104":1.80173,"105":7.37741,"106":0.18432,"107":0.00461,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00461,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00461,"64":0.02765,"65":0,"66":0,"67":0,"68":0.00922,"69":0,"70":0.00922,"71":0.01382,"72":0.00461,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00461,"86":0,"87":0,"88":0,"89":0.09677,"90":0.42394,"91":0.02304,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00461,"15":0.00461,"16":0,"17":0.01382,"18":0.02304,"79":0,"80":0,"81":0,"83":0.00461,"84":0.00922,"85":0.00922,"86":0.00922,"87":0.00922,"88":0,"89":0.00461,"90":0.00461,"91":0.00461,"92":0.00461,"93":0,"94":0,"95":0,"96":0.00461,"97":0,"98":0.00461,"99":0.00461,"100":0.00461,"101":0.01382,"102":0.00922,"103":0.02304,"104":0.35942,"105":2.00909},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00461,"10":0,"11":0,"12":0,"13":0.01843,"14":0.08755,"15":0.02304,_:"0","3.1":0,"3.2":0,"5.1":0.00461,"6.1":0,"7.1":0,"9.1":0.01382,"10.1":0.00922,"11.1":0.02304,"12.1":0.04147,"13.1":0.14746,"14.1":0.23501,"15.1":0.04147,"15.2-15.3":0.04608,"15.4":0.10138,"15.5":0.21197,"15.6":0.83405,"16.0":0.14285,"16.1":0.00922},G:{"8":0.00632,"3.2":0,"4.0-4.1":0.00949,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00949,"8.1-8.4":0,"9.0-9.2":0.02214,"9.3":0.11384,"10.0-10.2":0.01897,"10.3":0.12649,"11.0-11.2":0.08855,"11.3-11.4":0.04111,"12.0-12.1":0.03479,"12.2-12.5":0.6799,"13.0-13.1":0.04111,"13.2":0.01581,"13.3":0.07273,"13.4-13.7":0.2435,"14.0-14.4":0.57871,"14.5-14.8":1.28707,"15.0-15.1":0.34786,"15.2-15.3":0.49016,"15.4":0.64828,"15.5":2.76704,"15.6":17.00386,"16.0":6.30569,"16.1":0.08222},P:{"4":0.10308,"5.0-5.4":0.01031,"6.2-6.4":0,"7.2-7.4":0.02062,"8.2":0.01031,"9.2":0.02062,"10.1":0,"11.1-11.2":0.05154,"12.0":0.02062,"13.0":0.05154,"14.0":0.05154,"15.0":0.03092,"16.0":0.09277,"17.0":0.20615,"18.0":2.24707},I:{"0":0,"3":0,"4":0.01146,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01527,"4.2-4.3":0.03437,"4.4":0,"4.4.3-4.4.4":0.16802},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00474,"9":0.02372,"10":0.00474,"11":0.12808,"5.5":0},N:{"10":0.01078,"11":0},J:{"7":0,"10":0.00539},O:{"0":0.31274},H:{"0":0.38286},L:{"0":41.13365},S:{"2.5":0.01078},R:{_:"0"},M:{"0":0.50146},Q:{"13.1":0}}; 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 481b9cb4a1f11f..0f4a038960c9bb 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00807,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01613,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00403,"48":0,"49":0,"50":0,"51":0,"52":0.00807,"53":0,"54":0.00403,"55":0,"56":0.01613,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00807,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00403,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00403,"89":0,"90":0,"91":0.01613,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00807,"100":0.01613,"101":0.02017,"102":0.0363,"103":1.05261,"104":0.08873,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00403,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00807,"39":0,"40":0.00807,"41":0,"42":0,"43":0.00403,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00807,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.03226,"57":0,"58":0.00403,"59":0,"60":0.00807,"61":0,"62":0,"63":0,"64":0.00403,"65":0.03226,"66":0,"67":0,"68":0,"69":0.00403,"70":0.00403,"71":0,"72":0.00403,"73":0.02823,"74":0.01613,"75":0.01613,"76":0,"77":0,"78":0,"79":0.12099,"80":0.00403,"81":0.07259,"83":0.0121,"84":0.0121,"85":0.00403,"86":0.02017,"87":0.00807,"88":0.00807,"89":0.00807,"90":0.00403,"91":0.00403,"92":0.0121,"93":0.00403,"94":0.01613,"95":0.00403,"96":0.01613,"97":0.01613,"98":0.0121,"99":0.0121,"100":0.02017,"101":0.01613,"102":0.10083,"103":2.75051,"104":6.33988,"105":0.01613,"106":0.00403,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00403,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.04033,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.02017,"58":0.02017,"60":0.0363,"62":0,"63":0.3791,"64":0.11696,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.0121,"80":0.10486,"81":0.00403,"82":0.00403,"83":0,"84":0.00807,"85":0.02823,"86":0.01613,"87":0.02017,"88":0.00807,"89":0.99212,"90":0.04033,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00403},B:{"12":0.02017,"13":0.0121,"14":0.00403,"15":0.00403,"16":0.00403,"17":0.0121,"18":0.02017,"79":0,"80":0,"81":0,"83":0,"84":0.00403,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.02017,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00403,"100":0,"101":0.00807,"102":0.01613,"103":0.41137,"104":1.20183,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00403,"11.1":0,"12.1":0.00403,"13.1":0.00807,"14.1":0.00807,"15.1":0.0363,"15.2-15.3":0,"15.4":0.01613,"15.5":0.02823,"15.6":0.0484,"16.0":0},G:{"8":0.11506,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03812,"6.0-6.1":0.00212,"7.0-7.1":0.02894,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08471,"10.0-10.2":0.00141,"10.3":0.04165,"11.0-11.2":0.00988,"11.3-11.4":0.02188,"12.0-12.1":0.072,"12.2-12.5":1.75769,"13.0-13.1":0.00212,"13.2":0.00212,"13.3":0.04165,"13.4-13.7":0.10306,"14.0-14.4":0.10447,"14.5-14.8":0.38683,"15.0-15.1":0.27318,"15.2-15.3":0.1673,"15.4":0.3833,"15.5":1.27909,"15.6":1.97088,"16.0":0.16942},P:{"4":0.23693,"5.0-5.4":0,"6.2-6.4":0.0309,"7.2-7.4":0.45327,"8.2":0,"9.2":0.0206,"10.1":0,"11.1-11.2":0.11332,"12.0":0.0103,"13.0":0.05151,"14.0":0.0206,"15.0":0.04121,"16.0":0.13392,"17.0":1.23618,"18.0":0.92714},I:{"0":0,"3":0,"4":0.01749,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0038,"4.2-4.3":0.01597,"4.4":0,"4.4.3-4.4.4":0.16954},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0363,"5.5":0},J:{"7":0,"10":0.00597},N:{"10":0,"11":0},L:{"0":68.97258},S:{"2.5":0.00597},R:{_:"0"},M:{"0":0.33415},Q:{"10.4":0},O:{"0":0.59073},H:{"0":2.03935}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00392,"32":0,"33":0,"34":0.02353,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00784,"53":0,"54":0.00392,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00392,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00784,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00784,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00392,"89":0,"90":0.00784,"91":0.01568,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00392,"98":0,"99":0,"100":0,"101":0.00392,"102":0.01568,"103":0.06274,"104":0.87438,"105":0.16076,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00392,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01568,"50":0,"51":0,"52":0,"53":0.00392,"54":0,"55":0,"56":0.0745,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00392,"65":0,"66":0,"67":0,"68":0.00392,"69":0,"70":0,"71":0,"72":0,"73":0.01176,"74":0.01961,"75":0.00392,"76":0,"77":0,"78":0,"79":0.06666,"80":0,"81":0.13724,"83":0.00784,"84":0.01176,"85":0.00392,"86":0.00784,"87":0.11763,"88":0.00392,"89":0.00392,"90":0,"91":0,"92":0.00392,"93":0,"94":0.00392,"95":0.00784,"96":0.00392,"97":0.01176,"98":0.01176,"99":0.00392,"100":0.00784,"101":0.00784,"102":0.03137,"103":0.14508,"104":1.68995,"105":6.61865,"106":0.05489,"107":0.00392,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00784,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01568,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00392,"60":0.02745,"62":0,"63":0.07842,"64":0.27447,"65":0.00784,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00392,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.44699,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01568,"90":0.49797,"91":0.01961,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00392},B:{"12":0.04705,"13":0.01568,"14":0,"15":0.00392,"16":0,"17":0.03921,"18":0.00784,"79":0,"80":0,"81":0,"83":0,"84":0.00784,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00784,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00392,"102":0.00392,"103":0.01961,"104":0.21958,"105":1.72524},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00392,"15":0.00392,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00392,"13.1":0.01568,"14.1":0.00784,"15.1":0,"15.2-15.3":0.00392,"15.4":0.01568,"15.5":0.03529,"15.6":0.0745,"16.0":0.00784,"16.1":0},G:{"8":0.00488,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.07079,"6.0-6.1":0,"7.0-7.1":0.05248,"8.1-8.4":0.00366,"9.0-9.2":0,"9.3":0.11473,"10.0-10.2":0,"10.3":0.09886,"11.0-11.2":0.05492,"11.3-11.4":0.02929,"12.0-12.1":0.11839,"12.2-12.5":2.96705,"13.0-13.1":0.00122,"13.2":0.00244,"13.3":0.01221,"13.4-13.7":0.06713,"14.0-14.4":0.21481,"14.5-14.8":0.40643,"15.0-15.1":0.42107,"15.2-15.3":0.20627,"15.4":0.46745,"15.5":1.44508,"15.6":3.9703,"16.0":1.16924,"16.1":0.02685},P:{"4":0.78395,"5.0-5.4":0,"6.2-6.4":0.01018,"7.2-7.4":0.61087,"8.2":0,"9.2":0.02036,"10.1":0,"11.1-11.2":0.20362,"12.0":0,"13.0":0.03054,"14.0":0.04072,"15.0":0.02036,"16.0":0.60069,"17.0":0.46834,"18.0":1.36428},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00409,"4.2-4.3":0.0092,"4.4":0,"4.4.3-4.4.4":0.26081},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05489,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00608},O:{"0":0.15805},H:{"0":1.99706},L:{"0":64.03461},S:{"2.5":0.00608},R:{_:"0"},M:{"0":0.12766},Q:{"13.1":0}}; 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 619cf942ff91e2..46d288638a200e 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.02552,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.0051,"49":0,"50":0,"51":0,"52":0.01531,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.01021,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0051,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03062,"79":0.0051,"80":0.0051,"81":0.0051,"82":0.0051,"83":0.0051,"84":0,"85":0,"86":0,"87":0.0051,"88":0.0051,"89":0.01021,"90":0.01531,"91":0.02552,"92":0.0051,"93":0.0051,"94":0.04082,"95":0.0051,"96":0.0051,"97":0.0051,"98":0,"99":0.0051,"100":0.01021,"101":0.01021,"102":0.04082,"103":0.89813,"104":0.15309,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.0051,"37":0,"38":0.0051,"39":0,"40":0.12247,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02552,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.02041,"61":0,"62":0,"63":0.0051,"64":0,"65":0.0051,"66":0.04082,"67":0.01021,"68":0,"69":0.02552,"70":0.0051,"71":0.0051,"72":0,"73":0,"74":0.0051,"75":0.0051,"76":0.01531,"77":0.01021,"78":0.0051,"79":0.03572,"80":0.02041,"81":0.02041,"83":0.02552,"84":0.04082,"85":0.04082,"86":0.04082,"87":0.05103,"88":0.01531,"89":0.02041,"90":0.01021,"91":0.02552,"92":0.02552,"93":0.04593,"94":0.04593,"95":0.01531,"96":0.06124,"97":0.02552,"98":0.03572,"99":0.04082,"100":0.06634,"101":0.09696,"102":0.19902,"103":3.98034,"104":8.94046,"105":0.03062,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0051,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01021,"64":0.01021,"65":0,"66":0,"67":0,"68":0.0051,"69":0,"70":0,"71":0.0051,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01021,"89":0.36231,"90":0.03062,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0051},B:{"12":0,"13":0,"14":0,"15":0.0051,"16":0,"17":0.0051,"18":0.02552,"79":0.0051,"80":0,"81":0,"83":0,"84":0.0051,"85":0.01021,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0051,"93":0.0051,"94":0,"95":0.0051,"96":0.0051,"97":0.0051,"98":0.0051,"99":0.0051,"100":0.0051,"101":0.07655,"102":0.02552,"103":1.31147,"104":3.34757,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.0051,"9":0,"10":0,"11":0,"12":0,"13":0.02041,"14":0.10716,"15":0.02552,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.0051,"10.1":0.0051,"11.1":0.02552,"12.1":0.03572,"13.1":0.15309,"14.1":0.31128,"15.1":0.05103,"15.2-15.3":0.05103,"15.4":0.15309,"15.5":0.68891,"15.6":1.56152,"16.0":0.01021},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00352,"6.0-6.1":0.00703,"7.0-7.1":0.01758,"8.1-8.4":0.01406,"9.0-9.2":0.00703,"9.3":0.35866,"10.0-10.2":0.01055,"10.3":0.33053,"11.0-11.2":0.11604,"11.3-11.4":0.07736,"12.0-12.1":0.11604,"12.2-12.5":1.52605,"13.0-13.1":0.02813,"13.2":0.01055,"13.3":0.06329,"13.4-13.7":0.21801,"14.0-14.4":0.65754,"14.5-14.8":2.05349,"15.0-15.1":0.44305,"15.2-15.3":0.80522,"15.4":1.10059,"15.5":7.01491,"15.6":19.9758,"16.0":0.18636},P:{"4":0.09531,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01059,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03177,"12.0":0.02118,"13.0":0.06354,"14.0":0.05295,"15.0":0.03177,"16.0":0.08472,"17.0":1.30252,"18.0":2.08615},I:{"0":0,"3":0,"4":0.33243,"2.1":0,"2.2":0.06571,"2.3":0,"4.1":0.01933,"4.2-4.3":0.13916,"4.4":0,"4.4.3-4.4.4":0.34016},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01021,"9":0.01021,"10":0,"11":0.09185,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":32.14511},S:{"2.5":0},R:{_:"0"},M:{"0":0.44073},Q:{"10.4":0.0049},O:{"0":0.09794},H:{"0":0.21326}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.01566,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00522,"49":0,"50":0,"51":0,"52":0.01566,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.01044,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00522,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02611,"79":0.00522,"80":0.00522,"81":0.00522,"82":0.00522,"83":0.00522,"84":0,"85":0,"86":0,"87":0.01044,"88":0.00522,"89":0.01044,"90":0.02088,"91":0.02088,"92":0.00522,"93":0.00522,"94":0.03655,"95":0.00522,"96":0,"97":0,"98":0,"99":0.00522,"100":0.00522,"101":0.00522,"102":0.02088,"103":0.05743,"104":0.75182,"105":0.26105,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00522,"37":0,"38":0.00522,"39":0,"40":0.11486,"41":0,"42":0,"43":0.00522,"44":0.00522,"45":0.00522,"46":0,"47":0,"48":0,"49":0.02088,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01044,"61":0,"62":0,"63":0.00522,"64":0,"65":0.00522,"66":0.04177,"67":0.01044,"68":0,"69":0.02088,"70":0,"71":0.00522,"72":0,"73":0,"74":0.01044,"75":0.00522,"76":0.01566,"77":0.01044,"78":0.00522,"79":0.02611,"80":0.01566,"81":0.01566,"83":0.04177,"84":0.04177,"85":0.04177,"86":0.05221,"87":0.05221,"88":0.01044,"89":0.01566,"90":0.01044,"91":0.03655,"92":0.02611,"93":0.04699,"94":0.03133,"95":0.01566,"96":0.06787,"97":0.02611,"98":0.03133,"99":0.03133,"100":0.04699,"101":0.06787,"102":0.10964,"103":0.56387,"104":3.37799,"105":9.96689,"106":0.2245,"107":0.00522,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00522,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.01044,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00522,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.03655,"90":0.40724,"91":0.02088,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00522},B:{"12":0,"13":0,"14":0,"15":0.00522,"16":0,"17":0.00522,"18":0.02611,"79":0.00522,"80":0,"81":0,"83":0,"84":0.00522,"85":0.00522,"86":0.00522,"87":0,"88":0,"89":0.00522,"90":0,"91":0,"92":0.00522,"93":0.00522,"94":0,"95":0.00522,"96":0.00522,"97":0.00522,"98":0.00522,"99":0.00522,"100":0.00522,"101":0.02611,"102":0.01566,"103":0.04699,"104":0.86669,"105":3.93663},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00522,"9":0,"10":0,"11":0,"12":0,"13":0.02088,"14":0.11486,"15":0.02611,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00522,"10.1":0.00522,"11.1":0.02611,"12.1":0.03133,"13.1":0.16185,"14.1":0.30282,"15.1":0.05221,"15.2-15.3":0.04177,"15.4":0.12008,"15.5":0.28716,"15.6":2.00486,"16.0":0.16185,"16.1":0.01044},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.00369,"7.0-7.1":0.02211,"8.1-8.4":0.0258,"9.0-9.2":0.00737,"9.3":0.32431,"10.0-10.2":0.00737,"10.3":0.29483,"11.0-11.2":0.12899,"11.3-11.4":0.07371,"12.0-12.1":0.10688,"12.2-12.5":1.39306,"13.0-13.1":0.02211,"13.2":0.03685,"13.3":0.05159,"13.4-13.7":0.18427,"14.0-14.4":0.53806,"14.5-14.8":1.77265,"15.0-15.1":0.328,"15.2-15.3":0.51595,"15.4":0.63388,"15.5":2.00852,"15.6":22.91553,"16.0":4.63617,"16.1":0.05528},P:{"4":0.08534,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02133,"12.0":0.02133,"13.0":0.05334,"14.0":0.032,"15.0":0.02133,"16.0":0.05334,"17.0":0.17068,"18.0":3.12555},I:{"0":0,"3":0,"4":0.28389,"2.1":0,"2.2":0.05299,"2.3":0,"4.1":0.0265,"4.2-4.3":0.1287,"4.4":0,"4.4.3-4.4.4":0.32552},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0109,"9":0.0109,"10":0.00545,"11":0.09806,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.0908},H:{"0":0.2036},L:{"0":30.24781},S:{"2.5":0},R:{_:"0"},M:{"0":0.40622},Q:{"13.1":0.00478}}; 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 71d4c353eb7438..46d5b2dca7d70d 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00437,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.01312,"87":0,"88":0,"89":0,"90":0,"91":0.01312,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00437,"99":0,"100":0,"101":0.00437,"102":0.03062,"103":0.6736,"104":0.05686,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00437,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00437,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00437,"63":0.01312,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.03499,"74":0,"75":0.00437,"76":0.02187,"77":0,"78":0,"79":0.02624,"80":0.00437,"81":0.00437,"83":0.00437,"84":0.00437,"85":0,"86":0.00875,"87":0.03499,"88":0,"89":0.00437,"90":0,"91":0.02187,"92":0.07436,"93":0.04374,"94":0.0175,"95":0.00875,"96":0.15746,"97":0.06124,"98":0.00437,"99":0.01312,"100":0.14434,"101":0.04374,"102":0.1006,"103":3.45109,"104":7.26521,"105":0.0175,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.03499,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00437,"89":0.55112,"90":0.0175,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00437,"15":0.05686,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00875,"102":0.00437,"103":0.62111,"104":2.3882,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00437,"14":0.04374,"15":0.01312,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01312,"13.1":0.06124,"14.1":0.22307,"15.1":0.15746,"15.2-15.3":0.0175,"15.4":0.13559,"15.5":0.2362,"15.6":0.55987,"16.0":0.00437},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.08716,"8.1-8.4":0,"9.0-9.2":0.01701,"9.3":0.26572,"10.0-10.2":0,"10.3":0.16794,"11.0-11.2":0.0085,"11.3-11.4":0.00638,"12.0-12.1":0,"12.2-12.5":0.43366,"13.0-13.1":0.00425,"13.2":0,"13.3":0.00638,"13.4-13.7":0.03401,"14.0-14.4":0.13817,"14.5-14.8":1.36899,"15.0-15.1":0.2147,"15.2-15.3":0.56971,"15.4":0.48467,"15.5":4.28342,"15.6":13.07772,"16.0":0.08503},P:{"4":0.13991,"5.0-5.4":0,"6.2-6.4":0.01076,"7.2-7.4":0.68878,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.05381,"12.0":0,"13.0":0.05381,"14.0":0.03229,"15.0":0.04305,"16.0":0.06457,"17.0":1.23765,"18.0":2.00176},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.37632,"4.2-4.3":0.07526,"4.4":0,"4.4.3-4.4.4":1.73106},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01312,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":51.88009},S:{"2.5":0},R:{_:"0"},M:{"0":0.3038},Q:{"10.4":0},O:{"0":0.03938},H:{"0":0.16512}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00466,"48":0,"49":0,"50":0,"51":0,"52":0.00466,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00466,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.01864,"87":0.00932,"88":0,"89":0,"90":0,"91":0.01864,"92":0.02796,"93":0,"94":0,"95":0.00466,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01864,"103":0.01398,"104":0.71298,"105":0.14912,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00466,"63":0.00466,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00932,"71":0,"72":0,"73":0.0699,"74":0,"75":0.00466,"76":0.02796,"77":0.00466,"78":0,"79":0.0233,"80":0,"81":0.00466,"83":0,"84":0.00466,"85":0.00466,"86":0.00466,"87":0.00932,"88":0.04194,"89":0,"90":0.00932,"91":0.0233,"92":0.0466,"93":0.02796,"94":0.01398,"95":0.01864,"96":0.01864,"97":0.00932,"98":0.05592,"99":0.01398,"100":0.06058,"101":0.0233,"102":0.05592,"103":0.47066,"104":3.00104,"105":9.36194,"106":0.12582,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01398,"64":0.00466,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01398,"90":0.17242,"91":0.00932,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00466,"15":0.05126,"16":0,"17":0,"18":0.00466,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00466,"93":0,"94":0,"95":0,"96":0,"97":0.01398,"98":0,"99":0,"100":0,"101":0.00466,"102":0.00466,"103":0.03728,"104":0.4893,"105":2.69814},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.07456,"15":0.01398,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00466,"12.1":0.01864,"13.1":0.0233,"14.1":0.1398,"15.1":0.01864,"15.2-15.3":0.00932,"15.4":0.08854,"15.5":0.12116,"15.6":1.2349,"16.0":0.09786,"16.1":0.00466},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.35331,"8.1-8.4":0,"9.0-9.2":0.02928,"9.3":0.10346,"10.0-10.2":0,"10.3":0.08979,"11.0-11.2":0.0039,"11.3-11.4":0.01757,"12.0-12.1":0,"12.2-12.5":0.51338,"13.0-13.1":0,"13.2":0,"13.3":0.03514,"13.4-13.7":0.02928,"14.0-14.4":0.12102,"14.5-14.8":1.13411,"15.0-15.1":0.15421,"15.2-15.3":0.95258,"15.4":0.3377,"15.5":1.75875,"15.6":10.80628,"16.0":2.45562,"16.1":0.05856},P:{"4":0.1061,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.13793,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.06366,"12.0":0,"13.0":0.04244,"14.0":0.03183,"15.0":0.01061,"16.0":0.04244,"17.0":0.27587,"18.0":2.20692},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.10798,"4.2-4.3":0.04628,"4.4":0,"4.4.3-4.4.4":1.20326},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00466,"9":0,"10":0.03728,"11":0.03262,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.0267},H:{"0":0.05561},L:{"0":53.99028},S:{"2.5":0},R:{_:"0"},M:{"0":0.47526},Q:{"13.1":0}}; 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 39abaaac17fe7a..4250a965228688 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00459,"49":0,"50":0,"51":0,"52":0.00459,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00459,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01835,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00459,"85":0,"86":0,"87":0,"88":0.01835,"89":0,"90":0,"91":0.00459,"92":0,"93":0,"94":0,"95":0.00459,"96":0,"97":0,"98":0.00459,"99":0.01835,"100":0.00459,"101":0.00459,"102":0.07798,"103":0.4587,"104":0.09174,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00459,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.01376,"48":0,"49":0.03211,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00459,"57":0,"58":0,"59":0.00459,"60":0,"61":0,"62":0.00459,"63":0.00459,"64":0,"65":0,"66":0.00917,"67":0,"68":0.00917,"69":0,"70":0.00459,"71":0.00459,"72":0.00459,"73":0.00459,"74":0.01835,"75":0.00459,"76":0.03211,"77":0.00459,"78":0.00459,"79":0.1055,"80":0.00459,"81":0.03211,"83":0.0367,"84":0.00459,"85":0.01835,"86":0.01376,"87":0.02752,"88":0.01376,"89":0.01835,"90":0.05963,"91":0.01835,"92":0.01376,"93":0.00917,"94":0.00917,"95":0.01835,"96":0.0367,"97":0.02752,"98":0.0367,"99":0.0367,"100":0.03211,"101":0.04128,"102":0.11926,"103":3.81638,"104":10.22901,"105":0.06422,"106":0.07798,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01835,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00459,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0367,"47":0,"48":0.01376,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00459,"64":0.00459,"65":0,"66":0,"67":0.00459,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.02294,"78":0,"79":0.02752,"80":0,"81":0,"82":0,"83":0,"84":0.00459,"85":0.05046,"86":0.00459,"87":0.00459,"88":0.01376,"89":1.33482,"90":0.21559,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00459,"13":0.01835,"14":0.05504,"15":0.00459,"16":0.01835,"17":0,"18":0.01376,"79":0,"80":0,"81":0,"83":0,"84":0.00459,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00459,"93":0.00459,"94":0,"95":0.00459,"96":0.00459,"97":0,"98":0.00459,"99":0.00459,"100":0.00459,"101":0.01376,"102":0.00917,"103":0.35779,"104":0.97244,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00459,"13":0.00917,"14":0.02294,"15":0.00917,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00459,"12.1":0.00459,"13.1":0.0367,"14.1":0.05963,"15.1":0.01835,"15.2-15.3":0.02752,"15.4":0.05963,"15.5":0.16055,"15.6":0.21559,"16.0":0.00917},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02861,"6.0-6.1":0,"7.0-7.1":0.14485,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04828,"10.0-10.2":0.00715,"10.3":0.13949,"11.0-11.2":0.03577,"11.3-11.4":0.0304,"12.0-12.1":0.03219,"12.2-12.5":1.22322,"13.0-13.1":0.01788,"13.2":0.01073,"13.3":0.06438,"13.4-13.7":0.28077,"14.0-14.4":0.72427,"14.5-14.8":1.26435,"15.0-15.1":0.4292,"15.2-15.3":0.66347,"15.4":0.98716,"15.5":4.48514,"15.6":7.02457,"16.0":0.23785},P:{"4":0.51956,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.1143,"8.2":0,"9.2":0.01039,"10.1":0,"11.1-11.2":0.03117,"12.0":0.01039,"13.0":0.06235,"14.0":0.08313,"15.0":0.02078,"16.0":0.08313,"17.0":0.86247,"18.0":0.78973},I:{"0":0,"3":0,"4":0.05157,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02579,"4.2-4.3":0.07736,"4.4":0,"4.4.3-4.4.4":0.65325},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01835,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":56.24394},S:{"2.5":0},R:{_:"0"},M:{"0":0.09202},Q:{"10.4":0},O:{"0":0.06496},H:{"0":0.30748}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.0047,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.0047,"49":0,"50":0,"51":0,"52":0.0047,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0047,"69":0,"70":0,"71":0,"72":0.0094,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0141,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.03761,"89":0,"90":0,"91":0.0047,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.0047,"99":0.0094,"100":0.0047,"101":0.0047,"102":0.0094,"103":0.03761,"104":0.52651,"105":0.11753,"106":0.0047,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0047,"39":0.0047,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0047,"47":0.0188,"48":0,"49":0.04231,"50":0.0047,"51":0,"52":0,"53":0.0047,"54":0,"55":0,"56":0.0094,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.0047,"63":0.0094,"64":0.0047,"65":0.0047,"66":0.0188,"67":0.0047,"68":0.0141,"69":0.0047,"70":0.0047,"71":0,"72":0,"73":0.0047,"74":0.0188,"75":0.0094,"76":0.03291,"77":0.0047,"78":0.0047,"79":0.11282,"80":0.0047,"81":0.03291,"83":0.04231,"84":0.02351,"85":0.0047,"86":0.02821,"87":0.03291,"88":0.0188,"89":0.0141,"90":0.05641,"91":0.0094,"92":0.0141,"93":0.0094,"94":0.0141,"95":0.02351,"96":0.02821,"97":0.02821,"98":0.04231,"99":0.02821,"100":0.03761,"101":0.03761,"102":0.07522,"103":0.31497,"104":2.88171,"105":11.24009,"106":0.22565,"107":0.07522,"108":0.0047,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.02821,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.0047,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.04231,"47":0,"48":0.0047,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0047,"64":0.0047,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.0047,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.0094,"78":0,"79":0.02821,"80":0,"81":0,"82":0.0047,"83":0,"84":0.0047,"85":0.05641,"86":0.0047,"87":0.0047,"88":0.0047,"89":0.07522,"90":1.43381,"91":0.05171,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.0047,"13":0.02351,"14":0.05641,"15":0.0047,"16":0.02351,"17":0,"18":0.02821,"79":0,"80":0,"81":0,"83":0,"84":0.0047,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.02821,"93":0,"94":0,"95":0.0047,"96":0,"97":0,"98":0.0047,"99":0.0094,"100":0.0047,"101":0.0141,"102":0.0047,"103":0.03291,"104":0.24445,"105":1.36329},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.0047,"13":0.0094,"14":0.02821,"15":0.0047,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0047,"13.1":0.03291,"14.1":0.06111,"15.1":0.0141,"15.2-15.3":0.0141,"15.4":0.03761,"15.5":0.09872,"15.6":0.20684,"16.0":0.06581,"16.1":0.0094},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.05365,"6.0-6.1":0,"7.0-7.1":0.17938,"8.1-8.4":0.00168,"9.0-9.2":0.00168,"9.3":0.06035,"10.0-10.2":0.00671,"10.3":0.11735,"11.0-11.2":0.04862,"11.3-11.4":0.02012,"12.0-12.1":0.02515,"12.2-12.5":1.11148,"13.0-13.1":0.01509,"13.2":0.00671,"13.3":0.06538,"13.4-13.7":0.22632,"14.0-14.4":0.52305,"14.5-14.8":1.15172,"15.0-15.1":0.30511,"15.2-15.3":0.4409,"15.4":0.63537,"15.5":1.57418,"15.6":7.21877,"16.0":2.6119,"16.1":0.02515},P:{"4":0.45254,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.10285,"8.2":0.01028,"9.2":0.01028,"10.1":0,"11.1-11.2":0.04114,"12.0":0.01028,"13.0":0.06171,"14.0":0.05142,"15.0":0.04114,"16.0":0.10285,"17.0":0.17484,"18.0":1.37819},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.07187,"4.2-4.3":0.22759,"4.4":0,"4.4.3-4.4.4":0.68278},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0188,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.06359},H:{"0":0.26589},L:{"0":56.86314},S:{"2.5":0},R:{_:"0"},M:{"0":0.10598},Q:{"13.1":0}}; 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 b59e939f240502..09adba189ef888 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00818,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00818,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00409,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00409,"78":0.00818,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00409,"87":0,"88":0.00409,"89":0.00409,"90":0,"91":0.13913,"92":0,"93":0,"94":0,"95":0.00409,"96":0.00818,"97":0.00818,"98":0.00818,"99":0.00409,"100":0.01637,"101":0.00818,"102":0.07775,"103":1.16622,"104":0.14322,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00409,"48":0,"49":0.04092,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00409,"68":0,"69":0,"70":0,"71":0,"72":0.00818,"73":0,"74":0.00409,"75":0,"76":0.01228,"77":0,"78":0,"79":0.01637,"80":0,"81":0.00409,"83":0,"84":0.00409,"85":0,"86":0.00409,"87":0,"88":0.00818,"89":0.01228,"90":0.01637,"91":0.00818,"92":0.00409,"93":0,"94":0.01228,"95":0.00409,"96":0.00818,"97":0.00818,"98":0,"99":0.01637,"100":0.02864,"101":0.01637,"102":0.04092,"103":2.37336,"104":5.92522,"105":0.02864,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00818,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00409,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00409,"88":0,"89":0.27826,"90":0.02455,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.06138,"13":0,"14":0,"15":0,"16":0,"17":0.00409,"18":0.00818,"79":0,"80":0,"81":0,"83":0,"84":0.01637,"85":0,"86":0,"87":0,"88":0,"89":0.00818,"90":0,"91":0,"92":0.00409,"93":0,"94":0,"95":0,"96":0.00409,"97":0.00409,"98":0,"99":0,"100":0.00409,"101":0.01637,"102":0.00818,"103":1.10893,"104":2.27515,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.02046,"13":0,"14":0.11458,"15":0.01228,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00409,"12.1":0.00409,"13.1":0.03274,"14.1":0.18005,"15.1":0.01228,"15.2-15.3":0.02864,"15.4":0.06547,"15.5":0.23324,"15.6":0.27007,"16.0":0.00409},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.00172,"7.0-7.1":0.055,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.21484,"10.0-10.2":0,"10.3":0.00516,"11.0-11.2":0.00516,"11.3-11.4":0.00344,"12.0-12.1":0.02922,"12.2-12.5":0.43655,"13.0-13.1":0.01719,"13.2":0.00516,"13.3":0.03437,"13.4-13.7":0.12547,"14.0-14.4":0.36609,"14.5-14.8":1.08623,"15.0-15.1":0.35234,"15.2-15.3":0.41249,"15.4":2.24636,"15.5":4.54944,"15.6":7.00376,"16.0":0.23031},P:{"4":0.10308,"5.0-5.4":0.01031,"6.2-6.4":0,"7.2-7.4":0.10308,"8.2":0,"9.2":0.01031,"10.1":0.01031,"11.1-11.2":0.11339,"12.0":0.01031,"13.0":0.15463,"14.0":0.26802,"15.0":0.15463,"16.0":0.18555,"17.0":1.62872,"18.0":2.2163},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.014,"4.2-4.3":0.028,"4.4":0,"4.4.3-4.4.4":0.30804},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01637,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":59.08339},S:{"2.5":0.01182},R:{_:"0"},M:{"0":0.33085},Q:{"10.4":0},O:{"0":0.04726},H:{"0":0.31323}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00411,"48":0,"49":0,"50":0,"51":0,"52":0.00823,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00411,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00411,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01234,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00411,"87":0,"88":0.00411,"89":0.00411,"90":0,"91":0.08639,"92":0,"93":0,"94":0.00823,"95":0,"96":0,"97":0.00411,"98":0.00411,"99":0.00823,"100":0.00823,"101":0.00411,"102":0.01646,"103":0.12753,"104":1.06964,"105":0.47311,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00823,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00823,"48":0,"49":0.03703,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00411,"62":0,"63":0,"64":0,"65":0.00411,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00411,"77":0,"78":0,"79":0.01234,"80":0.00411,"81":0.06994,"83":0.00411,"84":0,"85":0,"86":0,"87":0.00823,"88":0,"89":0.00411,"90":0.0288,"91":0.00411,"92":0.04937,"93":0,"94":0.01646,"95":0.00411,"96":0.00411,"97":0.00823,"98":0.01234,"99":0.00823,"100":0.02057,"101":0.01234,"102":0.04114,"103":0.11519,"104":1.57566,"105":6.67702,"106":0.08228,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00411,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.02057,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00823,"85":0,"86":0,"87":0,"88":0.00411,"89":0.03703,"90":0.28798,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.06171,"13":0,"14":0,"15":0.00411,"16":0,"17":0.00411,"18":0.01646,"79":0,"80":0,"81":0,"83":0,"84":0.02057,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00411,"93":0,"94":0,"95":0,"96":0.02057,"97":0.00411,"98":0.00823,"99":0.00411,"100":0,"101":0.01234,"102":0.00411,"103":0.03291,"104":0.57185,"105":2.85923},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.03291,"14":0.10285,"15":0.00411,_:"0","3.1":0,"3.2":0,"5.1":0.00411,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00411,"12.1":0.02057,"13.1":0.04937,"14.1":0.13988,"15.1":0.01646,"15.2-15.3":0.02057,"15.4":0.0576,"15.5":0.18513,"15.6":0.45665,"16.0":0.04937,"16.1":0.01234},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.00419,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.32056,"10.0-10.2":0.00419,"10.3":0.01676,"11.0-11.2":0,"11.3-11.4":0.00419,"12.0-12.1":0.03981,"12.2-12.5":0.44418,"13.0-13.1":0.00419,"13.2":0.0021,"13.3":0.03352,"13.4-13.7":0.10476,"14.0-14.4":0.53008,"14.5-14.8":1.28644,"15.0-15.1":0.29752,"15.2-15.3":0.54475,"15.4":1.05597,"15.5":2.08261,"15.6":9.21253,"16.0":4.49627,"16.1":0.16133},P:{"4":0.14395,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.13367,"8.2":0,"9.2":0,"10.1":0.01028,"11.1-11.2":0.30847,"12.0":0.02056,"13.0":0.09254,"14.0":0.16451,"15.0":0.04113,"16.0":0.19536,"17.0":0.2879,"18.0":3.52679},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.03319,"4.4":0,"4.4.3-4.4.4":0.37612},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01234,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.03532},H:{"0":0.53496},L:{"0":54.55144},S:{"2.5":0},R:{_:"0"},M:{"0":0.21778},Q:{"13.1":0}}; 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 f56b9462444d66..14065588ca0302 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01541,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00514,"89":0,"90":0,"91":0.02569,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00514,"99":0,"100":0,"101":0,"102":0.04623,"103":0.82192,"104":0.11301,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00514,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.01027,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00514,"77":0.00514,"78":0,"79":0.02055,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.06164,"87":0.02569,"88":0,"89":0.01027,"90":0.01027,"91":0.01027,"92":0,"93":0,"94":0,"95":0,"96":0.02055,"97":0,"98":0.02569,"99":0.08219,"100":0.01027,"101":0.06678,"102":0.20034,"103":2.93836,"104":7.13529,"105":0.02569,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.04623,"89":0.10274,"90":0.01027,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00514,"88":0,"89":0,"90":0.00514,"91":0,"92":0,"93":0,"94":0,"95":0.01027,"96":0.02055,"97":0,"98":0,"99":0.01027,"100":0,"101":0.07192,"102":0.01027,"103":1.04281,"104":2.57364,"105":0.00514},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02055,"14":0.23117,"15":0.03082,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.01027,"11.1":0.06164,"12.1":0.01027,"13.1":0.47774,"14.1":0.63185,"15.1":0.03082,"15.2-15.3":0.05651,"15.4":0.29795,"15.5":1.69521,"15.6":4.56679,"16.0":0},G:{"8":0.06165,"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.00949,"9.0-9.2":0.00949,"9.3":0.41735,"10.0-10.2":0,"10.3":1.07658,"11.0-11.2":0.01897,"11.3-11.4":0.01897,"12.0-12.1":0.03794,"12.2-12.5":2.43298,"13.0-13.1":0.01423,"13.2":0.01897,"13.3":0.01897,"13.4-13.7":0.4221,"14.0-14.4":1.41331,"14.5-14.8":2.12471,"15.0-15.1":0.7446,"15.2-15.3":0.53592,"15.4":1.3896,"15.5":9.82676,"15.6":26.68687,"16.0":0.13279},P:{"4":0.03275,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02183,"12.0":0,"13.0":0.05458,"14.0":0,"15.0":0.01092,"16.0":0.02183,"17.0":1.48445,"18.0":1.85556},I:{"0":0,"3":0,"4":0.02681,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00766,"4.4":0,"4.4.3-4.4.4":0.49786},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.32877,"5.5":0},J:{"7":0,"10":0.00486},N:{"10":0,"11":0},L:{"0":20.74964},S:{"2.5":0},R:{_:"0"},M:{"0":0.88993},Q:{"10.4":0},O:{"0":0},H:{"0":0.01842}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01058,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00529,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00529,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00529,"98":0,"99":0,"100":0,"101":0,"102":0.02116,"103":0.12165,"104":0.74046,"105":0.30147,"106":0,"107":0.00529,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00529,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.02116,"77":0.01058,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0.00529,"85":0,"86":0.03173,"87":0.03702,"88":0,"89":0,"90":0.00529,"91":0,"92":0.00529,"93":0.02116,"94":0.00529,"95":0.00529,"96":0.01058,"97":0.00529,"98":0.00529,"99":0.06347,"100":0.00529,"101":0.03173,"102":0.06347,"103":0.3385,"104":2.15262,"105":9.91688,"106":0.31734,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00529,"86":0,"87":0,"88":0.06347,"89":0.01058,"90":0.12694,"91":0.01587,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00529,"96":0.01587,"97":0.00529,"98":0,"99":0,"100":0,"101":0.02116,"102":0.00529,"103":0.06347,"104":0.72459,"105":3.17869},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02116,"14":0.20098,"15":0.04231,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.01058,"11.1":0.07405,"12.1":0.02116,"13.1":0.23801,"14.1":0.42841,"15.1":0.02116,"15.2-15.3":0.03173,"15.4":0.14809,"15.5":0.54477,"15.6":5.08802,"16.0":0.2909,"16.1":0.00529},G:{"8":0.01962,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00491,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.22077,"10.0-10.2":0,"10.3":1.01066,"11.0-11.2":0.05397,"11.3-11.4":0.01472,"12.0-12.1":0.0834,"12.2-12.5":1.75638,"13.0-13.1":0.00981,"13.2":0,"13.3":0.03434,"13.4-13.7":0.45627,"14.0-14.4":1.87904,"14.5-14.8":2.3353,"15.0-15.1":0.34343,"15.2-15.3":0.34833,"15.4":0.81441,"15.5":2.48739,"15.6":30.26084,"16.0":5.77939,"16.1":0.03434},P:{"4":0.07496,"5.0-5.4":0.01071,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02142,"12.0":0,"13.0":0.05354,"14.0":0.01071,"15.0":0,"16.0":0.01071,"17.0":0.19275,"18.0":3.11607},I:{"0":0,"3":0,"4":0.01043,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01043,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.29474},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.27503,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.06244},L:{"0":17.55312},S:{"2.5":0},R:{_:"0"},M:{"0":1.42743},Q:{"13.1":0}}; 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 866c740e520148..24931988fb7b1a 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00247,"48":0,"49":0,"50":0,"51":0,"52":0.00247,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00247,"69":0,"70":0,"71":0,"72":0.00493,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00247,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00247,"88":0.00247,"89":0.00247,"90":0,"91":0.00493,"92":0,"93":0,"94":0.00247,"95":0.00247,"96":0.00247,"97":0.00247,"98":0.00247,"99":0.00493,"100":0.00493,"101":0.00493,"102":0.02712,"103":0.34017,"104":0.05916,"105":0.00493,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00247,"41":0,"42":0.01233,"43":0.00247,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00247,"50":0.00247,"51":0,"52":0,"53":0,"54":0,"55":0.00247,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00247,"64":0.00247,"65":0.00247,"66":0,"67":0.00247,"68":0.00247,"69":0.00247,"70":0.00247,"71":0.00247,"72":0.00247,"73":0.00247,"74":0.00493,"75":0.00247,"76":0.00247,"77":0.00493,"78":0.00247,"79":0.01233,"80":0.00986,"81":0.02712,"83":0.00493,"84":0.00493,"85":0.00247,"86":0.0074,"87":0.01479,"88":0.00247,"89":0.0074,"90":0.0074,"91":0.00986,"92":0.0074,"93":0.0074,"94":0.00493,"95":0.0074,"96":0.00986,"97":0.0074,"98":0.00986,"99":0.01233,"100":0.01479,"101":0.01479,"102":0.05177,"103":0.75429,"104":1.98186,"105":0.00986,"106":0.00247,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00493,"25":0,"26":0.00247,"27":0.01233,"28":0.00247,"29":0,"30":0.0074,"31":0.00247,"32":0.0074,"33":0.00247,"34":0,"35":0,"36":0,"37":0,"38":0.00247,"39":0,"40":0,"41":0,"42":0.00493,"43":0,"44":0,"45":0.00247,"46":0.00493,"47":0.00247,"48":0,"49":0,"50":0.01233,"51":0.00493,"52":0,"53":0.00247,"54":0.01972,"55":0.01479,"56":0.00247,"57":0.01233,"58":0.04437,"60":0.52258,"62":0.0074,"63":1.16102,"64":0.28348,"65":0,"66":0,"67":0.00247,"68":0,"69":0.00247,"70":0.00247,"71":0.00247,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01233,"80":0,"81":0,"82":0,"83":0,"84":0.00247,"85":0.01233,"86":0.00493,"87":0.00247,"88":0.00493,"89":0.17255,"90":0.02712,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0074},B:{"12":0.0074,"13":0.00247,"14":0.00247,"15":0.00986,"16":0.00247,"17":0.00247,"18":0.01972,"79":0,"80":0,"81":0,"83":0,"84":0.0074,"85":0.00247,"86":0,"87":0,"88":0,"89":0.00986,"90":0.0074,"91":0,"92":0.00986,"93":0,"94":0,"95":0,"96":0.00247,"97":0.00247,"98":0.00247,"99":0.00247,"100":0.00247,"101":0.0074,"102":0.00986,"103":0.17502,"104":0.36975,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00247,"14":0.0074,"15":0.00247,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00493,"11.1":0.00247,"12.1":0.00247,"13.1":0.03944,"14.1":0.01479,"15.1":0.00493,"15.2-15.3":0.00493,"15.4":0.00986,"15.5":0.03451,"15.6":0.04437,"16.0":0.00247},G:{"8":0.00182,"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.01094,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03281,"10.0-10.2":0.00365,"10.3":0.20052,"11.0-11.2":0.09479,"11.3-11.4":0.03099,"12.0-12.1":0.05651,"12.2-12.5":1.76639,"13.0-13.1":0.06198,"13.2":0.02917,"13.3":0.16406,"13.4-13.7":0.2862,"14.0-14.4":1.8229,"14.5-14.8":2.06353,"15.0-15.1":1.63332,"15.2-15.3":1.42733,"15.4":1.16848,"15.5":3.70049,"15.6":3.38148,"16.0":0.2862},P:{"4":0.12037,"5.0-5.4":0.02006,"6.2-6.4":0,"7.2-7.4":0.1304,"8.2":0,"9.2":0.06018,"10.1":0,"11.1-11.2":0.08025,"12.0":0.05015,"13.0":0.04012,"14.0":0.05015,"15.0":0.04012,"16.0":0.1304,"17.0":0.53163,"18.0":0.32098},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00428,"4.2-4.3":0.02398,"4.4":0,"4.4.3-4.4.4":0.10364},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01479,"5.5":0},J:{"7":0,"10":0.02261},N:{"10":0,"11":0},L:{"0":55.54377},S:{"2.5":0},R:{_:"0"},M:{"0":0.32401},Q:{"10.4":0.00754},O:{"0":1.19807},H:{"0":13.19012}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00233,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00233,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00233,"67":0,"68":0.00466,"69":0,"70":0,"71":0,"72":0.00233,"73":0,"74":0.00233,"75":0,"76":0,"77":0,"78":0.00233,"79":0,"80":0,"81":0,"82":0,"83":0.00233,"84":0,"85":0,"86":0,"87":0.00466,"88":0.00233,"89":0.00233,"90":0,"91":0.00466,"92":0,"93":0,"94":0.00233,"95":0,"96":0.00233,"97":0.00233,"98":0.00233,"99":0.00233,"100":0.00466,"101":0.00466,"102":0.007,"103":0.03731,"104":0.26352,"105":0.07462,"106":0.00466,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00233,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00233,"47":0.00233,"48":0,"49":0.00466,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00233,"61":0,"62":0,"63":0.00466,"64":0.00233,"65":0.00233,"66":0,"67":0.00233,"68":0.00233,"69":0.00233,"70":0.00233,"71":0,"72":0.00233,"73":0,"74":0.00466,"75":0.00233,"76":0.00466,"77":0.00933,"78":0.00233,"79":0.01399,"80":0.007,"81":0.01632,"83":0.00466,"84":0.00466,"85":0.01166,"86":0.02099,"87":0.01166,"88":0.007,"89":0.007,"90":0.00466,"91":0.00466,"92":0.007,"93":0.007,"94":0.00466,"95":0.007,"96":0.00933,"97":0.00466,"98":0.007,"99":0.01166,"100":0.00933,"101":0.01166,"102":0.02798,"103":0.08395,"104":0.59,"105":1.93323,"106":0.03731,"107":0.00233,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00466,"25":0,"26":0.00233,"27":0.01866,"28":0.00233,"29":0,"30":0.00466,"31":0.00233,"32":0.007,"33":0.00233,"34":0,"35":0,"36":0,"37":0,"38":0.00233,"39":0,"40":0,"41":0,"42":0.01166,"43":0,"44":0,"45":0.007,"46":0.00466,"47":0.00233,"48":0,"49":0,"50":0.01399,"51":0.00933,"52":0,"53":0.00233,"54":0.01166,"55":0.01632,"56":0.00233,"57":0.01166,"58":0.04897,"60":0.55968,"62":0.00466,"63":0.92814,"64":0.65063,"65":0.03265,"66":0,"67":0,"68":0,"69":0.00233,"70":0.00233,"71":0.00466,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00466,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.007,"86":0.00233,"87":0,"88":0.00233,"89":0.00933,"90":0.19589,"91":0.01166,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00933},B:{"12":0.007,"13":0.00233,"14":0.00233,"15":0.007,"16":0.00233,"17":0.00466,"18":0.01866,"79":0,"80":0,"81":0,"83":0,"84":0.00466,"85":0.00233,"86":0,"87":0,"88":0,"89":0.00933,"90":0.00466,"91":0,"92":0.01399,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00233,"100":0.00233,"101":0.00466,"102":0.00466,"103":0.01866,"104":0.1096,"105":0.38944},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00233,"14":0.007,"15":0.00233,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00233,"10.1":0.007,"11.1":0.00233,"12.1":0.00233,"13.1":0.02332,"14.1":0.01399,"15.1":0.00466,"15.2-15.3":0.00233,"15.4":0.007,"15.5":0.01632,"15.6":0.0513,"16.0":0.01166,"16.1":0.00233},G:{"8":0.0054,"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.0162,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03781,"10.0-10.2":0.0018,"10.3":0.21066,"11.0-11.2":0.09363,"11.3-11.4":0.06662,"12.0-12.1":0.05582,"12.2-12.5":1.77889,"13.0-13.1":0.06842,"13.2":0.02161,"13.3":0.15664,"13.4-13.7":0.27367,"14.0-14.4":1.75008,"14.5-14.8":1.94273,"15.0-15.1":1.26034,"15.2-15.3":1.13071,"15.4":0.84803,"15.5":1.91752,"15.6":3.73602,"16.0":2.1876,"16.1":0.03601},P:{"4":0.1225,"5.0-5.4":0.02042,"6.2-6.4":0,"7.2-7.4":0.19396,"8.2":0,"9.2":0.05104,"10.1":0,"11.1-11.2":0.06125,"12.0":0.01021,"13.0":0.04083,"14.0":0.06125,"15.0":0.06125,"16.0":0.11229,"17.0":0.19396,"18.0":0.735},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0047,"4.2-4.3":0.04153,"4.4":0,"4.4.3-4.4.4":0.10108},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00233,"10":0,"11":0.01166,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00767},O:{"0":1.25755},H:{"0":14.96923},L:{"0":54.28757},S:{"2.5":0},R:{_:"0"},M:{"0":0.22237},Q:{"13.1":0.00767}}; 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 c063bcc65e168f..b6cb744a65c120 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00487,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00487,"76":0,"77":0,"78":0.00487,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00974,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00487,"98":0.00487,"99":0,"100":0.00487,"101":0.00974,"102":0.00974,"103":0.55982,"104":0.10223,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00487,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.0146,"60":0.02434,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00487,"69":0,"70":0,"71":0,"72":0.00487,"73":0.00487,"74":0.00487,"75":0,"76":0.00487,"77":0,"78":0.00487,"79":0.02434,"80":0.01947,"81":0.00974,"83":0.00487,"84":0.00487,"85":0.00974,"86":0.00974,"87":0.0146,"88":0.00974,"89":0.0146,"90":0.00487,"91":0.00487,"92":0.00974,"93":0,"94":0,"95":0,"96":0.00487,"97":0.02921,"98":0.00974,"99":0.0146,"100":0.08276,"101":0.27261,"102":0.28234,"103":3.99176,"104":9.24433,"105":0.18012,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01947,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00974,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.11683,"64":0.30182,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00487,"72":0,"73":0.00487,"74":0,"75":0,"76":0.00487,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.26774,"90":0.00487,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.0146,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00487,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00487,"102":0,"103":0.78862,"104":2.26362,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00974,"9":0,"10":0,"11":0,"12":0,"13":0.08276,"14":0.07302,"15":0.03408,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.02921,"10.1":0,"11.1":0.0146,"12.1":0,"13.1":0.08276,"14.1":0.19959,"15.1":0.07302,"15.2-15.3":0.12657,"15.4":0.15091,"15.5":1.32896,"15.6":1.14885,"16.0":0.02434},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.01011,"9.0-9.2":0.00337,"9.3":0.05391,"10.0-10.2":0,"10.3":0.06065,"11.0-11.2":0.00674,"11.3-11.4":0.01685,"12.0-12.1":0.01348,"12.2-12.5":0.54584,"13.0-13.1":0.00674,"13.2":0.03032,"13.3":0.04043,"13.4-13.7":0.14488,"14.0-14.4":0.62333,"14.5-14.8":2.25747,"15.0-15.1":0.65703,"15.2-15.3":1.18265,"15.4":1.8363,"15.5":7.76975,"15.6":18.24174,"16.0":0.17184},P:{"4":0.0633,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0.03165,"13.0":0,"14.0":0.13715,"15.0":0.01055,"16.0":0.17935,"17.0":1.63523,"18.0":1.92008},I:{"0":0,"3":0,"4":0.05449,"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.1226},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04868,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":35.48035},S:{"2.5":0},R:{_:"0"},M:{"0":0.41569},Q:{"10.4":0},O:{"0":0.41056},H:{"0":0.8697}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00524,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00524,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01571,"96":0.00524,"97":0,"98":0.00524,"99":0,"100":0,"101":0.00524,"102":0,"103":0.01571,"104":0.3194,"105":0.1309,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00524,"41":0,"42":0,"43":0.00524,"44":0.00524,"45":0,"46":0,"47":0,"48":0,"49":0.00524,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01571,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00524,"77":0,"78":0,"79":0.02618,"80":0.00524,"81":0,"83":0,"84":0,"85":0.00524,"86":0,"87":0.01047,"88":0.00524,"89":0,"90":0.00524,"91":0.00524,"92":0,"93":0,"94":0.00524,"95":0,"96":0.02094,"97":0.01571,"98":0.02618,"99":0.02618,"100":0.01571,"101":0.35605,"102":0.36652,"103":0.39794,"104":3.41911,"105":12.80726,"106":0.27751,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01047,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.36128,"65":0.00524,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00524,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01571,"90":0.21468,"91":0.01047,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00524,"17":0,"18":0.03665,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00524,"102":0.00524,"103":0.05236,"104":0.5812,"105":3.35628},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.03665,"14":0.27227,"15":0.00524,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.02618,"13.1":0.09425,"14.1":0.18326,"15.1":0.0576,"15.2-15.3":0.16755,"15.4":0.08378,"15.5":0.35081,"15.6":1.70694,"16.0":0.10996,"16.1":0.00524},G:{"8":0.00365,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00365,"7.0-7.1":0.01096,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05846,"10.0-10.2":0.00731,"10.3":0.06942,"11.0-11.2":0.01096,"11.3-11.4":0.02558,"12.0-12.1":0.01096,"12.2-12.5":0.5079,"13.0-13.1":0.01096,"13.2":0.00731,"13.3":0.08769,"13.4-13.7":0.05116,"14.0-14.4":0.71617,"14.5-14.8":1.47254,"15.0-15.1":0.26674,"15.2-15.3":0.96098,"15.4":1.42138,"15.5":2.28005,"15.6":21.65321,"16.0":6.30669,"16.1":0.09135},P:{"4":0.08222,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01028,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03083,"12.0":0,"13.0":0.01028,"14.0":0.03083,"15.0":0.01028,"16.0":0.01028,"17.0":0.21582,"18.0":3.58667},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.24184},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00524,"10":0,"11":0.0576,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.09528},H:{"0":0.7487},L:{"0":29.78033},S:{"2.5":0},R:{_:"0"},M:{"0":0.26678},Q:{"13.1":0}}; 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 09d150252e759f..b0afac0fc79b07 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,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00482,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00482,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03853,"79":0,"80":0,"81":0.01445,"82":0,"83":0,"84":0.00963,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00963,"92":0,"93":0,"94":0,"95":0,"96":0.00482,"97":0,"98":0,"99":0.00963,"100":0,"101":0.00482,"102":0.15893,"103":1.26661,"104":0.23598,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.05779,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00482,"76":0,"77":0,"78":0,"79":0.04334,"80":0.01926,"81":0.00963,"83":0.0289,"84":0,"85":0.00963,"86":0,"87":0.01926,"88":0.04816,"89":0,"90":0.01445,"91":0.01926,"92":0.00482,"93":0.01445,"94":0.01445,"95":0.00482,"96":0,"97":0.00482,"98":0.00963,"99":0.0915,"100":0.07224,"101":0.08669,"102":0.22154,"103":2.81254,"104":7.2529,"105":0.16374,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.07706,"64":0.1493,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00963,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00482,"87":0,"88":0,"89":0.71758,"90":0.01926,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.04816,"18":0.0289,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.09632,"93":0,"94":0,"95":0,"96":0.00482,"97":0.00482,"98":0,"99":0,"100":0,"101":0.03371,"102":0.01926,"103":0.5731,"104":2.21054,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00963,"14":0.17819,"15":0.00963,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00482,"12.1":0.09632,"13.1":0.1493,"14.1":0.61163,"15.1":0.1204,"15.2-15.3":0.04816,"15.4":0.20227,"15.5":0.79464,"15.6":1.66152,"16.0":0.00963},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.08325,"9.3":0.02664,"10.0-10.2":0,"10.3":0.02997,"11.0-11.2":0,"11.3-11.4":0.01998,"12.0-12.1":0,"12.2-12.5":0.79923,"13.0-13.1":0.04329,"13.2":0,"13.3":0,"13.4-13.7":0.01665,"14.0-14.4":0.28306,"14.5-14.8":0.62273,"15.0-15.1":0.28306,"15.2-15.3":0.55946,"15.4":0.46621,"15.5":7.29293,"15.6":22.57479,"16.0":0.18982},P:{"4":0.15246,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03267,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0.01089,"13.0":0,"14.0":0.02178,"15.0":0,"16.0":0.11979,"17.0":1.28499,"18.0":1.73147},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.07779},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.11077,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":35.60792},S:{"2.5":0},R:{_:"0"},M:{"0":0.1607},Q:{"10.4":0},O:{"0":0.2281},H:{"0":2.95454}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.04507,"51":0,"52":0.00563,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.06761,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.0169,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.02254,"100":0,"101":0.01127,"102":0.00563,"103":0.41128,"104":2.08458,"105":0.91271,"106":0.0169,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.02254,"39":0,"40":0,"41":0.05071,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01127,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00563,"76":0,"77":0,"78":0,"79":0,"80":0.0169,"81":0.19719,"83":0.00563,"84":0.00563,"85":0.01127,"86":0.00563,"87":0.00563,"88":0.09578,"89":0.01127,"90":0,"91":0.00563,"92":0.00563,"93":0.00563,"94":0.02254,"95":0,"96":0,"97":0.00563,"98":0.02254,"99":0.10705,"100":0.0338,"101":0.03944,"102":0.02817,"103":0.32114,"104":2.95785,"105":10.91306,"106":0.12395,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.02254,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.05634,"90":0.46762,"91":0.00563,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00563,"18":0.00563,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00563,"89":0.00563,"90":0.00563,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00563,"97":0,"98":0,"99":0,"100":0.00563,"101":0.00563,"102":0.00563,"103":0.00563,"104":0.36058,"105":3.679},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00563,"13":0.01127,"14":0.22536,"15":0.02254,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00563,"10.1":0.00563,"11.1":0.00563,"12.1":0.09578,"13.1":0.17465,"14.1":0.5972,"15.1":0.32677,"15.2-15.3":0.05634,"15.4":0.21409,"15.5":0.36058,"15.6":3.96634,"16.0":0.2817,"16.1":0.02817},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.00716,"9.3":0.03939,"10.0-10.2":0,"10.3":0.02507,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.48703,"13.0-13.1":0.00716,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.14324,"14.5-14.8":0.46912,"15.0-15.1":0.36169,"15.2-15.3":1.08148,"15.4":0.50851,"15.5":1.63655,"15.6":23.33067,"16.0":6.40653,"16.1":0.01074},P:{"4":0.07297,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.01042,"11.1-11.2":0,"12.0":0,"13.0":0.01042,"14.0":0.02085,"15.0":0.01042,"16.0":0.0417,"17.0":0.06255,"18.0":2.31434},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.20746,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.16902,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.17027},H:{"0":1.32684},L:{"0":28.32569},S:{"2.5":0},R:{_:"0"},M:{"0":0.13098},Q:{"13.1":0}}; 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 1030d9e6a2e2c3..06f4d832f855c4 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00207,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01036,"79":0,"80":0,"81":0,"82":0,"83":0.00207,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00621,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00207,"99":0.00207,"100":0.00207,"101":0.00207,"102":0.0145,"103":0.37278,"104":0.09734,"105":0.00414,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.03107,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00414,"47":0,"48":0,"49":0.00207,"50":0,"51":0.00207,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00828,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00207,"77":0.00207,"78":0,"79":0.00414,"80":0.00207,"81":0.01864,"83":0.00207,"84":0.00207,"85":0.00207,"86":0,"87":0.00414,"88":0,"89":0.00207,"90":0.00207,"91":0.00207,"92":0,"93":0.30858,"94":0.00207,"95":0.00207,"96":0.00414,"97":0.00621,"98":0.00828,"99":0.00207,"100":0.00621,"101":0.0145,"102":0.01657,"103":0.35,"104":1.0852,"105":0.00414,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00621,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.02278,"62":0,"63":0.08284,"64":0.05178,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00207,"83":0,"84":0,"85":0.00414,"86":0.00207,"87":0,"88":0.00207,"89":0.06627,"90":0.02485,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00207},B:{"12":0.00207,"13":0.00207,"14":0,"15":0.03728,"16":0.00621,"17":0.00207,"18":0.05178,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00207,"91":0,"92":0.00621,"93":0,"94":0.00414,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.05799,"101":0.00828,"102":0.00414,"103":0.08698,"104":0.34379,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00621,"14":0.00621,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00621,"13.1":0.00414,"14.1":0.00828,"15.1":0.00621,"15.2-15.3":0.00414,"15.4":0.00621,"15.5":0.03935,"15.6":0.04556,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00813,"6.0-6.1":0,"7.0-7.1":0.05896,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08132,"10.0-10.2":0.0122,"10.3":0.95349,"11.0-11.2":0.04066,"11.3-11.4":0.07319,"12.0-12.1":0.14435,"12.2-12.5":4.72681,"13.0-13.1":0.03456,"13.2":0.02033,"13.3":0.6953,"13.4-13.7":0.22973,"14.0-14.4":1.42109,"14.5-14.8":1.74435,"15.0-15.1":0.96163,"15.2-15.3":0.75426,"15.4":1.70369,"15.5":2.92148,"15.6":3.55578,"16.0":0.18094},P:{"4":1.06393,"5.0-5.4":0.05115,"6.2-6.4":0.01023,"7.2-7.4":0.22506,"8.2":0.01023,"9.2":0.23529,"10.1":0,"11.1-11.2":0.03069,"12.0":0,"13.0":0.05115,"14.0":0.13299,"15.0":0.14322,"16.0":0.14322,"17.0":0.41943,"18.0":0.4092},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00137,"4.2-4.3":0.01586,"4.4":0,"4.4.3-4.4.4":0.1739},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00207,"5.5":0},J:{"7":0,"10":0.03965},N:{"10":0,"11":0},L:{"0":69.00374},S:{"2.5":0},R:{_:"0"},M:{"0":0.03965},Q:{"10.4":0},O:{"0":0.59468},H:{"0":2.01179}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00852,"30":0,"31":0,"32":0,"33":0,"34":0.00426,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00426,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00213,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00213,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00213,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00213,"89":0,"90":0,"91":0.00213,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.01918,"98":0,"99":0.00213,"100":0,"101":0,"102":0.00213,"103":0.01279,"104":0.23228,"105":0.07885,"106":0.00426,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00213,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00213,"32":0,"33":0.00213,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01705,"41":0,"42":0,"43":0.00213,"44":0,"45":0,"46":0.00213,"47":0,"48":0,"49":0.00213,"50":0.01279,"51":0.00213,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00426,"61":0,"62":0,"63":0,"64":0.00213,"65":0.00213,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00426,"73":0,"74":0.00213,"75":0,"76":0,"77":0,"78":0.00213,"79":0.00426,"80":0.00426,"81":0.02557,"83":0.00213,"84":0.00213,"85":0.00426,"86":0.00213,"87":0.00213,"88":0.00213,"89":0.00426,"90":0.00213,"91":0.00426,"92":0.00426,"93":0.31326,"94":0.00213,"95":0.00426,"96":0.00213,"97":0.00639,"98":0.00213,"99":0.00213,"100":0.00426,"101":0.00426,"102":0.02131,"103":0.05754,"104":0.30047,"105":1.18697,"106":0.01918,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00213,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00426,"60":0.01066,"62":0,"63":0.04049,"64":0.07032,"65":0.00426,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00213,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.0895,"91":0.00852,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00213},B:{"12":0.00213,"13":0,"14":0,"15":0.03623,"16":0,"17":0,"18":0.02344,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00213,"86":0,"87":0,"88":0,"89":0,"90":0.00426,"91":0,"92":0.00213,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.05114,"101":0.00213,"102":0.00213,"103":0.00426,"104":0.07885,"105":0.5221},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.01066,"13":0.00426,"14":0.00852,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00213,"12.1":0,"13.1":0.00426,"14.1":0.01066,"15.1":0,"15.2-15.3":0.00213,"15.4":0.00426,"15.5":0.01279,"15.6":0.07245,"16.0":0.00639,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0041,"6.0-6.1":0,"7.0-7.1":0.02051,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.14354,"10.0-10.2":0.01435,"10.3":0.74641,"11.0-11.2":0.06152,"11.3-11.4":0.06357,"12.0-12.1":0.06972,"12.2-12.5":4.22211,"13.0-13.1":0.07792,"13.2":0.0082,"13.3":0.75666,"13.4-13.7":0.40396,"14.0-14.4":2.15719,"14.5-14.8":1.87627,"15.0-15.1":1.15857,"15.2-15.3":0.56801,"15.4":1.08065,"15.5":1.56253,"15.6":4.06627,"16.0":1.13601,"16.1":0.0123},P:{"4":0.58669,"5.0-5.4":0.01029,"6.2-6.4":0.02059,"7.2-7.4":0.11322,"8.2":0.01029,"9.2":0.23673,"10.1":0.02059,"11.1-11.2":0.03088,"12.0":0,"13.0":0.07205,"14.0":0.06176,"15.0":0.04117,"16.0":0.11322,"17.0":0.36025,"18.0":0.76167},I:{"0":0,"3":0,"4":0.00081,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00135,"4.2-4.3":0.01457,"4.4":0,"4.4.3-4.4.4":0.23228},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00426,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00787},O:{"0":0.53509},H:{"0":1.55702},L:{"0":70.21511},S:{"2.5":0},R:{_:"0"},M:{"0":0.04721},Q:{"13.1":0}}; 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 43d5d40f7a045c..c7953d7882538e 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.00109,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00109,"69":0.00109,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00109,"102":0.00326,"103":0.08897,"104":0.00977,"105":0.00109,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00109,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00326,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00109,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00109,"57":0,"58":0.00109,"59":0,"60":0,"61":0,"62":0.00217,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00109,"70":0.00109,"71":0,"72":0,"73":0,"74":0.00109,"75":0,"76":0.00109,"77":0,"78":0,"79":0.00109,"80":0.00109,"81":0.01736,"83":0,"84":0.00109,"85":0,"86":0.00326,"87":0.00217,"88":0,"89":0,"90":0,"91":0,"92":0.00109,"93":0.00434,"94":0.00217,"95":0.00109,"96":0.00109,"97":0.00434,"98":0.00109,"99":0.00434,"100":0.00326,"101":0.00217,"102":0.00543,"103":0.08897,"104":0.24847,"105":0,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.00109,"28":0,"29":0,"30":0.00434,"31":0,"32":0.00109,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00326,"60":0.03581,"62":0,"63":0.05751,"64":0.01628,"65":0,"66":0,"67":0,"68":0,"69":0.00109,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00109,"80":0,"81":0,"82":0,"83":0.00217,"84":0,"85":0,"86":0,"87":0,"88":0.00109,"89":0.01519,"90":0.00217,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00109,"13":0.00326,"14":0,"15":0,"16":0,"17":0.00109,"18":0.00326,"79":0,"80":0,"81":0,"83":0,"84":0.00109,"85":0.00109,"86":0,"87":0.00109,"88":0,"89":0.00109,"90":0,"91":0,"92":0.01085,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00434,"100":0,"101":0,"102":0.00109,"103":0.02387,"104":0.05317,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00109,"14":0.00109,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00109,"13.1":0.00109,"14.1":0.00109,"15.1":0.00109,"15.2-15.3":0.00109,"15.4":0.00109,"15.5":0.00217,"15.6":0.00434,"16.0":0},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.01261,"7.0-7.1":0.04766,"8.1-8.4":0,"9.0-9.2":0.0042,"9.3":0.10793,"10.0-10.2":0.24529,"10.3":0.12194,"11.0-11.2":0.63494,"11.3-11.4":0.14157,"12.0-12.1":0.41068,"12.2-12.5":4.67867,"13.0-13.1":0.27612,"13.2":0.13316,"13.3":0.54664,"13.4-13.7":0.64615,"14.0-14.4":1.03861,"14.5-14.8":0.82136,"15.0-15.1":0.86481,"15.2-15.3":0.87462,"15.4":0.38685,"15.5":0.88443,"15.6":0.90265,"16.0":0.23688},P:{"4":0.30493,"5.0-5.4":0.15247,"6.2-6.4":0.05082,"7.2-7.4":0.44723,"8.2":0.01016,"9.2":0.41674,"10.1":0.01016,"11.1-11.2":0.23378,"12.0":0.03049,"13.0":0.04066,"14.0":0.2846,"15.0":0.15247,"16.0":1.20956,"17.0":0.66068,"18.0":0.27444},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00088,"4.2-4.3":0.00124,"4.4":0,"4.4.3-4.4.4":0.06439},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00217,"5.5":0},J:{"7":0,"10":0.00892},N:{"10":0,"11":0},L:{"0":70.13025},S:{"2.5":0.09807},R:{_:"0"},M:{"0":0.10698},Q:{"10.4":0.00892},O:{"0":0.19613},H:{"0":8.42327}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.00108,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00216,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00108,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00216,"104":0.04,"105":0.00649,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00108,"29":0,"30":0,"31":0,"32":0,"33":0.00108,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00432,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00108,"63":0.00108,"64":0.00108,"65":0,"66":0,"67":0,"68":0,"69":0.00108,"70":0,"71":0,"72":0,"73":0,"74":0.00649,"75":0,"76":0.00108,"77":0,"78":0.00108,"79":0.00108,"80":0,"81":0.00541,"83":0,"84":0,"85":0,"86":0.00108,"87":0.01405,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00108,"94":0.00108,"95":0.00432,"96":0.00108,"97":0.00108,"98":0,"99":0.00324,"100":0.00216,"101":0.00108,"102":0.00108,"103":0.00649,"104":0.06486,"105":0.33943,"106":0.00541,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00108,"24":0.00108,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00432,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00108,"60":0.01622,"62":0,"63":0.00865,"64":0.04108,"65":0.00108,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.01189,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00108},B:{"12":0.00216,"13":0,"14":0,"15":0,"16":0.00108,"17":0.00108,"18":0.00216,"79":0,"80":0,"81":0,"83":0,"84":0.00108,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00541,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00649,"100":0,"101":0,"102":0,"103":0.00216,"104":0.0173,"105":0.04324},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00216,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00108,"12.1":0,"13.1":0,"14.1":0.00108,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.00432,"16.0":0.00108,"16.1":0},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.01143,"8.1-8.4":0.00286,"9.0-9.2":0,"9.3":0.03144,"10.0-10.2":0.16436,"10.3":0.23439,"11.0-11.2":0.636,"11.3-11.4":0.17722,"12.0-12.1":0.26441,"12.2-12.5":4.62066,"13.0-13.1":0.36159,"13.2":0.22439,"13.3":0.4645,"13.4-13.7":0.70889,"14.0-14.4":1.25628,"14.5-14.8":0.61599,"15.0-15.1":0.57597,"15.2-15.3":0.90755,"15.4":0.29442,"15.5":0.71461,"15.6":1.56356,"16.0":0.3716,"16.1":0.00572},P:{"4":0.24407,"5.0-5.4":0.07119,"6.2-6.4":0.08136,"7.2-7.4":0.32543,"8.2":0.02034,"9.2":0.41695,"10.1":0.03051,"11.1-11.2":0.14237,"12.0":0.03051,"13.0":0.06102,"14.0":0.21356,"15.0":0.06102,"16.0":1.10848,"17.0":0.34576,"18.0":0.69153},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00064,"4.2-4.3":0.00191,"4.4":0,"4.4.3-4.4.4":0.04502},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00108,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.01784},O:{"0":0.1873},H:{"0":9.49098},L:{"0":69.33354},S:{"2.5":0.12487},R:{_:"0"},M:{"0":0.01784},Q:{"13.1":0.00892}}; 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 14e7cfd7a8c275..de2a2c4a2ff6ae 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00403,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00403,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.01208,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01208,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00806,"85":0,"86":0,"87":0,"88":0.04431,"89":0,"90":0,"91":0.0282,"92":0.00403,"93":0,"94":0,"95":0,"96":0,"97":0.00403,"98":0,"99":0.00806,"100":0.00806,"101":0.01208,"102":0.03222,"103":1.07548,"104":0.16918,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00403,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01611,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00403,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00403,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00403,"75":0.00806,"76":0.00403,"77":0,"78":0,"79":0.00403,"80":0.00403,"81":0.01611,"83":0.00403,"84":0.00403,"85":0.00403,"86":0,"87":0.01208,"88":0.00403,"89":0.00403,"90":0,"91":0.00403,"92":0.00806,"93":0.02014,"94":0,"95":0.01611,"96":0.06445,"97":0.00806,"98":0.00806,"99":0.02014,"100":0.01611,"101":0.01611,"102":0.18126,"103":2.77126,"104":5.5103,"105":0.02014,"106":0,"107":0.00403,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00806,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00806,"64":0.00403,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.01208,"88":0.00403,"89":0.26585,"90":0.03625,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00403,"16":0.16918,"17":0.00403,"18":0.00403,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00403,"91":0.00403,"92":0,"93":0,"94":0,"95":0,"96":0.00403,"97":0.0282,"98":0,"99":0.00403,"100":0.00403,"101":0.00806,"102":0.00806,"103":0.74115,"104":1.67968,"105":0},E:{"4":0,"5":0,"6":0,"7":0.00403,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02417,"14":0.06848,"15":0.0282,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00403,"10.1":0,"11.1":0.02417,"12.1":0.02014,"13.1":0.18529,"14.1":0.20543,"15.1":0.05639,"15.2-15.3":0.04028,"15.4":0.0725,"15.5":0.40683,"15.6":0.91436,"16.0":0.00403},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.00728,"9.0-9.2":0,"9.3":0.01942,"10.0-10.2":0,"10.3":0.09709,"11.0-11.2":0.04854,"11.3-11.4":0.00728,"12.0-12.1":0.62865,"12.2-12.5":0.38593,"13.0-13.1":0.01456,"13.2":0.00485,"13.3":0.02913,"13.4-13.7":0.17233,"14.0-14.4":0.50972,"14.5-14.8":1.0874,"15.0-15.1":0.62623,"15.2-15.3":1.02429,"15.4":0.85196,"15.5":7.51228,"15.6":11.03661,"16.0":0.20874},P:{"4":0.02079,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.32218,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.12472,"12.0":0.09354,"13.0":0.05196,"14.0":0.22865,"15.0":0.36375,"16.0":0.13511,"17.0":2.04741,"18.0":2.49431},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01826,"4.2-4.3":0.07668,"4.4":0,"4.4.3-4.4.4":0.14605},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02417,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":50.61834},S:{"2.5":0},R:{_:"0"},M:{"0":0.37624},Q:{"10.4":0},O:{"0":0.00597},H:{"0":0.10177}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00455,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0091,"53":0,"54":0,"55":0,"56":0.00455,"57":0,"58":0,"59":0,"60":0.0091,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00455,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0819,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.01365,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.04095,"92":0.00455,"93":0,"94":0,"95":0,"96":0,"97":0.00455,"98":0,"99":0,"100":0.00455,"101":0.0091,"102":0.01365,"103":0.10465,"104":1.08745,"105":0.30485,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00455,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0091,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00455,"66":0,"67":0.00455,"68":0,"69":0.0091,"70":0,"71":0,"72":0,"73":0.00455,"74":0,"75":0.00455,"76":0,"77":0,"78":0,"79":0.0091,"80":0,"81":0.00455,"83":0,"84":0.00455,"85":0.00455,"86":0,"87":0.01365,"88":0,"89":0.00455,"90":0.00455,"91":0.00455,"92":0.0091,"93":0.02275,"94":0,"95":0,"96":0.0091,"97":0.00455,"98":0.01365,"99":0.03185,"100":0.0546,"101":0.0182,"102":0.05005,"103":0.3822,"104":2.5025,"105":7.8351,"106":0.18655,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00455,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00455,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.0364,"90":0.4004,"91":0.0091,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00455,"15":0.00455,"16":0,"17":0.00455,"18":0.0091,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0182,"93":0,"94":0,"95":0,"96":0.00455,"97":0.02275,"98":0,"99":0.00455,"100":0.0182,"101":0.00455,"102":0.0091,"103":0.31395,"104":0.455,"105":2.639},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00455,"9":0,"10":0,"11":0,"12":0.00455,"13":0.0273,"14":0.08645,"15":0.02275,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.14105,"11.1":0.01365,"12.1":0.04095,"13.1":0.51415,"14.1":0.1638,"15.1":0.091,"15.2-15.3":0.0364,"15.4":0.1092,"15.5":0.3276,"15.6":0.9828,"16.0":0.15925,"16.1":0},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.00495,"7.0-7.1":0,"8.1-8.4":0.00743,"9.0-9.2":0,"9.3":0.03466,"10.0-10.2":0,"10.3":0.05694,"11.0-11.2":0.00743,"11.3-11.4":0.00495,"12.0-12.1":0.51,"12.2-12.5":0.6932,"13.0-13.1":0.01485,"13.2":0.01238,"13.3":0.06437,"13.4-13.7":0.15597,"14.0-14.4":0.52485,"14.5-14.8":1.09922,"15.0-15.1":0.44315,"15.2-15.3":0.40602,"15.4":0.65854,"15.5":2.73567,"15.6":12.78708,"16.0":4.00819,"16.1":0.15845},P:{"4":0.1755,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.24777,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.09291,"12.0":0.02065,"13.0":0.05162,"14.0":0.27874,"15.0":0.04129,"16.0":0.11356,"17.0":0.32003,"18.0":4.21205},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.04975,"4.4":0,"4.4.3-4.4.4":0.3731},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0819,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.00545},H:{"0":0.0516},L:{"0":46.4096},S:{"2.5":0},R:{_:"0"},M:{"0":0.2507},Q:{"13.1":0}}; 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 f1d53535f500f3..3c4ec9755cb756 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00807,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0242,"53":0.00807,"54":0.00807,"55":0,"56":0.07259,"57":0.07259,"58":0,"59":0,"60":0,"61":0,"62":0.00807,"63":0.08066,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.0242,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00807,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00807,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00807,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.01613,"98":0,"99":0.00807,"100":0.03226,"101":0.03226,"102":0.09679,"103":0.77434,"104":0.25005,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.03226,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.05646,"44":0,"45":0,"46":0,"47":0,"48":0.0242,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.01613,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00807,"62":0.00807,"63":0,"64":0.11292,"65":0,"66":0,"67":0.01613,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00807,"75":0.00807,"76":0,"77":0,"78":0,"79":0.04033,"80":0,"81":0,"83":0,"84":0,"85":0.03226,"86":0.0242,"87":0.00807,"88":0,"89":0.0242,"90":0.00807,"91":0.05646,"92":0.01613,"93":0.01613,"94":0.01613,"95":0.0242,"96":0.01613,"97":0.00807,"98":0.01613,"99":0.00807,"100":0.00807,"101":0.07259,"102":0.0242,"103":1.95197,"104":7.21907,"105":0.00807,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00807,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.03226,"62":0,"63":0.09679,"64":0.00807,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.0484,"82":0.00807,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.34684,"90":0.00807,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.0242,"13":0,"14":0,"15":0,"16":0.00807,"17":0,"18":0.12099,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00807,"86":0,"87":0,"88":0,"89":0.00807,"90":0.00807,"91":0,"92":1.73419,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00807,"100":0.01613,"101":0.01613,"102":0.69368,"103":13.69607,"104":35.59526,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00807,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01613,"14.1":0.00807,"15.1":0.01613,"15.2-15.3":0.00807,"15.4":0.0242,"15.5":0.0242,"15.6":0.03226,"16.0":0},G:{"8":0.00667,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00417,"6.0-6.1":0.00667,"7.0-7.1":0.03503,"8.1-8.4":0.00334,"9.0-9.2":0.00167,"9.3":0.10007,"10.0-10.2":0,"10.3":0.05421,"11.0-11.2":0.01918,"11.3-11.4":0.00083,"12.0-12.1":0.02752,"12.2-12.5":2.77118,"13.0-13.1":0.00334,"13.2":0.00834,"13.3":0.02001,"13.4-13.7":0.06338,"14.0-14.4":0.83894,"14.5-14.8":0.20515,"15.0-15.1":0.32524,"15.2-15.3":0.68133,"15.4":1.6904,"15.5":0.55624,"15.6":0.85896,"16.0":0.05421},P:{"4":0.25605,"5.0-5.4":0.01024,"6.2-6.4":0,"7.2-7.4":0.04097,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03073,"12.0":0,"13.0":0.01024,"14.0":0.01024,"15.0":0.01024,"16.0":0.03073,"17.0":0.14339,"18.0":0.18436},I:{"0":0,"3":0,"4":0.0009,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0003,"4.2-4.3":0.02311,"4.4":0,"4.4.3-4.4.4":0.26376},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.07259,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":24.59917},S:{"2.5":0},R:{_:"0"},M:{"0":0.04448},Q:{"10.4":0.00193},O:{"0":0.13538},H:{"0":0.33507}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00773,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00773,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.06959,"53":0,"54":0,"55":0,"56":0.05412,"57":0.05412,"58":0,"59":0,"60":0.04639,"61":0,"62":0,"63":0.00773,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01546,"79":0,"80":0,"81":0,"82":0,"83":0.00773,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01546,"96":0,"97":0.01546,"98":0,"99":0,"100":0.01546,"101":0.00773,"102":0.04639,"103":0.09278,"104":0.87372,"105":0.12371,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00773,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00773,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00773,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00773,"63":0,"64":0.01546,"65":0,"66":0.06959,"67":0.0232,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.06186,"76":0.00773,"77":0,"78":0,"79":0.0232,"80":0,"81":0.00773,"83":0.00773,"84":0,"85":0.13144,"86":0.00773,"87":0.00773,"88":0.00773,"89":0.00773,"90":0,"91":0.03093,"92":0.01546,"93":0.00773,"94":0.01546,"95":0.06186,"96":0.00773,"97":0.0232,"98":0.00773,"99":0.00773,"100":0.00773,"101":0,"102":0.04639,"103":0.08505,"104":1.86341,"105":6.13921,"106":0.13918,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00773,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00773,"62":0,"63":0.03093,"64":0.01546,"65":0,"66":0,"67":0,"68":0.00773,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00773,"80":0,"81":0,"82":0.00773,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.24742,"90":0.0232,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.01546,"13":0.00773,"14":0,"15":0,"16":0.00773,"17":0,"18":0.01546,"79":0,"80":0,"81":0,"83":0,"84":0.0232,"85":0,"86":0,"87":0,"88":0,"89":0.18557,"90":0,"91":0,"92":1.3763,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.03866,"101":0.00773,"102":0.01546,"103":1.00516,"104":7.61602,"105":37.54659},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00773,"11.1":0.00773,"12.1":0.00773,"13.1":0,"14.1":0.00773,"15.1":0,"15.2-15.3":0.00773,"15.4":0.01546,"15.5":0.00773,"15.6":0.03866,"16.0":0.00773,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0.00264,"4.2-4.3":0,"5.0-5.1":0.01408,"6.0-6.1":0.01672,"7.0-7.1":0.01584,"8.1-8.4":0.00704,"9.0-9.2":0,"9.3":0.01496,"10.0-10.2":0.00088,"10.3":0.04048,"11.0-11.2":0.0176,"11.3-11.4":0.00088,"12.0-12.1":0.14169,"12.2-12.5":3.21931,"13.0-13.1":0.00088,"13.2":0.00176,"13.3":0.01936,"13.4-13.7":0.10121,"14.0-14.4":0.54565,"14.5-14.8":0.26754,"15.0-15.1":0.23762,"15.2-15.3":0.37843,"15.4":1.57181,"15.5":0.51308,"15.6":0.9232,"16.0":0.62749,"16.1":0.00264},P:{"4":0.20783,"5.0-5.4":0,"6.2-6.4":0.01039,"7.2-7.4":0.02078,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0.01039,"16.0":0.04157,"17.0":0.10392,"18.0":0.16627},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00637,"4.2-4.3":1.55041,"4.4":0,"4.4.3-4.4.4":1.25722},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06959,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.11113},H:{"0":0.36932},L:{"0":27.63371},S:{"2.5":0.0068},R:{_:"0"},M:{"0":0.03175},Q:{"13.1":0.00454}}; 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 be3dc11bc914e1..ad5df58086f53f 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00545,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.16341,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00545,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.06536,"69":0,"70":0.00545,"71":0,"72":0,"73":0,"74":0.01089,"75":0,"76":0,"77":0.00545,"78":0.01634,"79":0,"80":0,"81":0,"82":0.00545,"83":0,"84":0.00545,"85":0,"86":0,"87":0.00545,"88":0.03813,"89":0.00545,"90":0,"91":0.04358,"92":0,"93":0,"94":0.03268,"95":0,"96":0,"97":0.00545,"98":0.00545,"99":0.01634,"100":0.01089,"101":0.01089,"102":0.14162,"103":2.65814,"104":0.55015,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.22877,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.05992,"35":0,"36":0,"37":0,"38":0.14707,"39":0.01634,"40":0.00545,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.16886,"48":0,"49":0.20154,"50":0,"51":0,"52":0,"53":0.00545,"54":0,"55":0,"56":0.00545,"57":0,"58":0.01634,"59":0,"60":0,"61":0.02179,"62":0.10349,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00545,"69":0.01634,"70":0,"71":0.01089,"72":0,"73":0,"74":0.00545,"75":0,"76":0.00545,"77":0.05992,"78":0.00545,"79":0.05447,"80":0.00545,"81":0.04358,"83":0.01089,"84":0.01089,"85":0.01089,"86":0.07081,"87":0.02724,"88":0.07626,"89":0.03813,"90":0.00545,"91":0.14162,"92":0.02724,"93":0.01089,"94":0.01089,"95":0.01089,"96":0.02179,"97":0.01089,"98":0.01634,"99":0.01089,"100":0.02724,"101":0.04902,"102":0.12528,"103":4.60816,"104":12.41916,"105":0.02724,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0.03813,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.01634,"26":0,"27":0,"28":0.00545,"29":0,"30":0,"31":0.45755,"32":0,"33":0,"34":0,"35":0,"36":0.01089,"37":0,"38":0,"39":0,"40":0.39218,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.11439,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01089,"64":0.01089,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00545,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00545,"86":0,"87":0,"88":0.01089,"89":0.47934,"90":0.06536,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.08715,"16":0,"17":0,"18":0.00545,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00545,"97":0,"98":0,"99":0,"100":0,"101":0.01089,"102":0.03268,"103":0.45755,"104":1.31817,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00545,"14":0.02724,"15":0.00545,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00545,"12.1":0.01634,"13.1":0.03813,"14.1":0.07626,"15.1":0.01634,"15.2-15.3":0.01634,"15.4":0.04358,"15.5":0.19065,"15.6":0.31593,"16.0":0.00545},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03543,"6.0-6.1":0,"7.0-7.1":0.31886,"8.1-8.4":0.00131,"9.0-9.2":0,"9.3":0.07217,"10.0-10.2":0.00131,"10.3":0.07873,"11.0-11.2":0.00787,"11.3-11.4":0.01706,"12.0-12.1":0.00787,"12.2-12.5":0.44614,"13.0-13.1":0.00656,"13.2":0.01968,"13.3":0.02624,"13.4-13.7":0.14171,"14.0-14.4":0.22176,"14.5-14.8":0.70726,"15.0-15.1":0.15746,"15.2-15.3":0.29655,"15.4":0.48025,"15.5":3.24368,"15.6":6.70517,"16.0":0.11941},P:{"4":0.3925,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.05164,"12.0":0.01033,"13.0":0.0723,"14.0":0.05164,"15.0":0.02066,"16.0":0.06197,"17.0":0.79533,"18.0":1.04322},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.1741,"4.2-4.3":0.40775,"4.4":0,"4.4.3-4.4.4":0.39401},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.23422,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":52.41728},S:{"2.5":0},R:{_:"0"},M:{"0":0.25497},Q:{"10.4":0},O:{"0":0.08195},H:{"0":0.27587}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.12544,"53":0,"54":0,"55":0,"56":0.0057,"57":0,"58":0,"59":0,"60":0.0057,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.06272,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.0057,"78":0.01711,"79":0,"80":0,"81":0,"82":0,"83":0.0057,"84":0,"85":0,"86":0,"87":0.0057,"88":0.03421,"89":0,"90":0,"91":0.04562,"92":0,"93":0,"94":0,"95":0,"96":0.0057,"97":0.0057,"98":0.0057,"99":0.01711,"100":0.0114,"101":0.0057,"102":0.06842,"103":0.10834,"104":2.90802,"105":0.90092,"106":0.0057,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.23948,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.07983,"35":0,"36":0,"37":0,"38":0.14255,"39":0.02281,"40":0.0057,"41":0,"42":0,"43":0.0057,"44":0,"45":0,"46":0,"47":0.19957,"48":0,"49":0.18246,"50":0,"51":0,"52":0,"53":0.0057,"54":0,"55":0,"56":0.0057,"57":0,"58":0.02281,"59":0,"60":0,"61":0,"62":0.02851,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0057,"69":0.0057,"70":0.0057,"71":0.0057,"72":0,"73":0,"74":0,"75":0,"76":0.0057,"77":0.04562,"78":0.0057,"79":0.06272,"80":0.0057,"81":0.04562,"83":0.01711,"84":0.01711,"85":0.0114,"86":0.02281,"87":0.02851,"88":0.0114,"89":0.03421,"90":0.0057,"91":0.13115,"92":0.02281,"93":0.0057,"94":0.0114,"95":0.01711,"96":0.01711,"97":0.0114,"98":0.01711,"99":0.0114,"100":0.02281,"101":0.03421,"102":0.10264,"103":0.22808,"104":3.87166,"105":14.94494,"106":0.19957,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0.05702,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.03991,"26":0,"27":0,"28":0.0114,"29":0,"30":0,"31":0.49607,"32":0,"33":0,"34":0,"35":0,"36":0.0057,"37":0,"38":0,"39":0,"40":0.37633,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.14825,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.0057,"65":0,"66":0,"67":0,"68":0.0057,"69":0,"70":0,"71":0.0057,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.0057,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0057,"86":0,"87":0,"88":0,"89":0.05132,"90":0.63292,"91":0.02851,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.07983,"16":0,"17":0,"18":0.0057,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.0057,"97":0,"98":0,"99":0,"100":0,"101":0.0057,"102":0.02851,"103":0.01711,"104":0.32501,"105":1.52243},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0057,"14":0.02851,"15":0.0057,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.0114,"12.1":0.01711,"13.1":0.04562,"14.1":0.07413,"15.1":0.0114,"15.2-15.3":0.01711,"15.4":0.02851,"15.5":0.07413,"15.6":0.40484,"16.0":0.05132,"16.1":0.0057},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00122,"6.0-6.1":0,"7.0-7.1":0.35231,"8.1-8.4":0.00122,"9.0-9.2":0.00122,"9.3":0.07314,"10.0-10.2":0,"10.3":0.08533,"11.0-11.2":0.0061,"11.3-11.4":0.01219,"12.0-12.1":0.00975,"12.2-12.5":0.3901,"13.0-13.1":0.00731,"13.2":0.02682,"13.3":0.02316,"13.4-13.7":0.10118,"14.0-14.4":0.20237,"14.5-14.8":0.52664,"15.0-15.1":0.12191,"15.2-15.3":0.19139,"15.4":0.27917,"15.5":0.87042,"15.6":6.86215,"16.0":1.75302,"16.1":0.02316},P:{"4":0.33201,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.05188,"12.0":0.01038,"13.0":0.06225,"14.0":0.0415,"15.0":0.02075,"16.0":0.05188,"17.0":0.13488,"18.0":1.52515},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.07674,"4.2-4.3":0.63947,"4.4":0,"4.4.3-4.4.4":0.56913},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.13115,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.06877},H:{"0":0.24821},L:{"0":50.90896},S:{"2.5":0},R:{_:"0"},M:{"0":0.22779},Q:{"13.1":0}}; 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 bf6abfffa81eca..652cde193acd81 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00405,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.03236,"74":0,"75":0,"76":0,"77":0,"78":0.00405,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.01214,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.01214,"91":0.01214,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00405,"98":0.00405,"99":0.00405,"100":0.00405,"101":0.00809,"102":0.01618,"103":0.5663,"104":0.12944,"105":0.00405,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00405,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00405,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00809,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00405,"66":0,"67":0,"68":0,"69":0.00405,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00405,"76":0.01618,"77":0,"78":0.00405,"79":0.02427,"80":0.00405,"81":0.00809,"83":0.00405,"84":0.00405,"85":0.00405,"86":0.01618,"87":0.01618,"88":0.00405,"89":0.00405,"90":0.00405,"91":0.01214,"92":0.01618,"93":0.02023,"94":0.00809,"95":0.00809,"96":0.02023,"97":0.02023,"98":0.01214,"99":0.01214,"100":0.02832,"101":0.02023,"102":0.06472,"103":2.64543,"104":7.88775,"105":0.02427,"106":0.00405,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00405,"60":0,"62":0,"63":0.01214,"64":0.00809,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00405,"86":0.00405,"87":0,"88":0.00809,"89":0.82518,"90":0.04854,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00405,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00809,"99":0.00405,"100":0.00809,"101":0.00405,"102":0.00405,"103":0.33574,"104":0.96676,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00809,"14":0.01618,"15":0.00809,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00809,"13.1":0.05259,"14.1":0.05663,"15.1":0.01214,"15.2-15.3":0.01618,"15.4":0.03641,"15.5":0.14158,"15.6":0.3236,"16.0":0.00405},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.01182,"7.0-7.1":0.00394,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01838,"10.0-10.2":0,"10.3":0.03283,"11.0-11.2":0.00131,"11.3-11.4":0.00394,"12.0-12.1":0.01051,"12.2-12.5":0.23112,"13.0-13.1":0.00394,"13.2":0.01182,"13.3":0.01444,"13.4-13.7":0.05909,"14.0-14.4":0.18778,"14.5-14.8":0.47668,"15.0-15.1":0.15758,"15.2-15.3":0.2587,"15.4":0.42416,"15.5":2.73798,"15.6":8.25202,"16.0":0.22193},P:{"4":0.10201,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.23463,"8.2":0,"9.2":0.0204,"10.1":0,"11.1-11.2":0.13262,"12.0":0.0204,"13.0":0.07141,"14.0":0.11221,"15.0":0.06121,"16.0":0.18362,"17.0":1.14255,"18.0":1.5098},I:{"0":0,"3":0,"4":0.01649,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.011,"4.4":0,"4.4.3-4.4.4":0.13745},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01214,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":65.96546},S:{"2.5":0},R:{_:"0"},M:{"0":0.22034},Q:{"10.4":0},O:{"0":0.06551},H:{"0":0.29317}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00401,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.04409,"74":0,"75":0,"76":0,"77":0,"78":0.00401,"79":0,"80":0,"81":0.00802,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00401,"91":0.00802,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00401,"100":0,"101":0.00401,"102":0.00802,"103":0.02004,"104":0.46493,"105":0.17234,"106":0.00401,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00802,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00401,"76":0.02004,"77":0,"78":0.00401,"79":0.02004,"80":0.00401,"81":0.00401,"83":0.00401,"84":0.00401,"85":0,"86":0.00802,"87":0.02405,"88":0.00401,"89":0.00802,"90":0.00401,"91":0.02004,"92":0.01202,"93":0.01603,"94":0.00802,"95":0.00802,"96":0.01603,"97":0.01202,"98":0.01202,"99":0.01603,"100":0.01603,"101":0.02004,"102":0.02405,"103":0.12425,"104":2.09618,"105":8.31259,"106":0.17635,"107":0.01202,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00401,"60":0,"62":0,"63":0.00401,"64":0.02004,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00401,"89":0.10822,"90":0.77354,"91":0.01603,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00401,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00401,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.01202,"99":0.00401,"100":0.00401,"101":0.00401,"102":0.00401,"103":0.01202,"104":0.18838,"105":1.06613},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00401,"13":0.00401,"14":0.01202,"15":0.00401,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00401,"13.1":0.03607,"14.1":0.05611,"15.1":0.00802,"15.2-15.3":0.01202,"15.4":0.02806,"15.5":0.07615,"15.6":0.3527,"16.0":0.06413,"16.1":0.00802},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.00912,"7.0-7.1":0.00261,"8.1-8.4":0.00521,"9.0-9.2":0,"9.3":0.02345,"10.0-10.2":0,"10.3":0.02475,"11.0-11.2":0.00261,"11.3-11.4":0.00391,"12.0-12.1":0.00651,"12.2-12.5":0.23836,"13.0-13.1":0.00391,"13.2":0.01303,"13.3":0.01563,"13.4-13.7":0.04298,"14.0-14.4":0.20059,"14.5-14.8":0.38554,"15.0-15.1":0.11071,"15.2-15.3":0.14718,"15.4":0.30088,"15.5":0.73853,"15.6":7.29798,"16.0":3.06612,"16.1":0.03908},P:{"4":0.09116,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.19246,"8.2":0,"9.2":0.02026,"10.1":0,"11.1-11.2":0.12155,"12.0":0.01013,"13.0":0.06078,"14.0":0.08103,"15.0":0.07091,"16.0":0.14181,"17.0":0.30388,"18.0":2.29936},I:{"0":0,"3":0,"4":0.00569,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02277,"4.4":0,"4.4.3-4.4.4":0.15368},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01202,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.06591},H:{"0":0.25528},L:{"0":66.65219},S:{"2.5":0},R:{_:"0"},M:{"0":0.19774},Q:{"13.1":0}}; 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 240f94dda44580..7e8d170e48d76f 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.004,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.012,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.008,"85":0,"86":0,"87":0,"88":0,"89":0.004,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.012,"97":0,"98":0,"99":0.012,"100":0,"101":0.008,"102":0.016,"103":0.524,"104":0.072,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.004,"45":0,"46":0,"47":0,"48":0,"49":0.012,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.008,"68":0,"69":0,"70":0.004,"71":0,"72":0,"73":0,"74":0.008,"75":0.088,"76":0.02,"77":0,"78":0,"79":0.084,"80":0.004,"81":0,"83":0,"84":0.004,"85":0,"86":0.004,"87":0.016,"88":0,"89":0,"90":0.004,"91":0.008,"92":0.024,"93":0.016,"94":0,"95":0.008,"96":0.016,"97":0.012,"98":0.032,"99":0.072,"100":0.016,"101":0.132,"102":0.104,"103":2.44,"104":5.852,"105":0.008,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.012,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.004,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.344,"90":0.004,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.004,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.004,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.024,"102":0.008,"103":0.42,"104":1.34,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.032,"14":0.164,"15":0.012,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.004,"11.1":0.004,"12.1":0.04,"13.1":0.164,"14.1":0.276,"15.1":0.056,"15.2-15.3":0.032,"15.4":0.132,"15.5":0.616,"15.6":1.212,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01322,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00441,"9.3":0.60374,"10.0-10.2":0,"10.3":0.04407,"11.0-11.2":0.00881,"11.3-11.4":0.03526,"12.0-12.1":0.03966,"12.2-12.5":1.04002,"13.0-13.1":0.08373,"13.2":0.00441,"13.3":0.30848,"13.4-13.7":0.22475,"14.0-14.4":1.10613,"14.5-14.8":2.22107,"15.0-15.1":1.11053,"15.2-15.3":0.89019,"15.4":2.63972,"15.5":11.19348,"15.6":22.35611,"16.0":0.13221},P:{"4":0.3662,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01046,"8.2":0,"9.2":0.01046,"10.1":0,"11.1-11.2":0.06278,"12.0":0.01046,"13.0":0.06278,"14.0":0.04185,"15.0":0.04185,"16.0":0.33481,"17.0":1.64265,"18.0":2.86678},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.224},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.052,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":32.304},S:{"2.5":0},R:{_:"0"},M:{"0":0.108},Q:{"10.4":0.006},O:{"0":0.048},H:{"0":0.18177}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00433,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00866,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00433,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00433,"92":0,"93":0,"94":0,"95":0,"96":0.013,"97":0,"98":0,"99":0,"100":0,"101":0.00433,"102":0.00866,"103":0.04765,"104":0.48085,"105":0.14296,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00866,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00433,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00433,"66":0,"67":0.00866,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.01733,"75":0.03032,"76":0,"77":0.00433,"78":0,"79":0.14729,"80":0.00433,"81":0,"83":0,"84":0.00433,"85":0.00433,"86":0,"87":0.01733,"88":0,"89":0,"90":0.00866,"91":0.02166,"92":0.013,"93":0.03466,"94":0.00433,"95":0,"96":0.08231,"97":0.01733,"98":0.04332,"99":0.09964,"100":0.02166,"101":0.04765,"102":0.03466,"103":0.29024,"104":2.17033,"105":6.99618,"106":0.13862,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00433,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00433,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00433,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.04332,"90":0.23393,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00433,"18":0.00433,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00433,"98":0,"99":0,"100":0.00866,"101":0.00866,"102":0.00433,"103":0.01733,"104":0.38555,"105":1.94074},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01733,"14":0.17328,"15":0.013,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.02166,"11.1":0.00433,"12.1":0.04765,"13.1":0.17328,"14.1":0.48518,"15.1":0.05198,"15.2-15.3":0.04765,"15.4":0.12996,"15.5":0.29458,"15.6":1.9624,"16.0":0.1083,"16.1":0.00433},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02243,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.66844,"10.0-10.2":0.05383,"10.3":0.04038,"11.0-11.2":0.03589,"11.3-11.4":0.07627,"12.0-12.1":0.0314,"12.2-12.5":1.13949,"13.0-13.1":0.07178,"13.2":0.01346,"13.3":0.2602,"13.4-13.7":0.34544,"14.0-14.4":1.66438,"14.5-14.8":2.26553,"15.0-15.1":0.89724,"15.2-15.3":0.69087,"15.4":1.57914,"15.5":3.75943,"15.6":25.36939,"16.0":5.03799,"16.1":0.09421},P:{"4":0.2619,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01048,"8.2":0,"9.2":0.02095,"10.1":0,"11.1-11.2":0.02095,"12.0":0,"13.0":0.0419,"14.0":0.0419,"15.0":0.02095,"16.0":0.16762,"17.0":0.23047,"18.0":3.68756},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02799,"4.4":0,"4.4.3-4.4.4":0.16796},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03032,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.01134},H:{"0":0.22538},L:{"0":30.66313},S:{"2.5":0},R:{_:"0"},M:{"0":0.1247},Q:{"13.1":0.00567}}; 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 45fa7596a35360..f2bf31158ada07 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.63072,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00327,"99":0,"100":0,"101":0.00327,"102":0.0098,"103":0.07516,"104":0.03595,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00327,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00327,"41":0,"42":0,"43":0.00327,"44":0,"45":0,"46":0.0098,"47":0,"48":0,"49":0.00327,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00654,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00327,"75":0,"76":0,"77":0.00327,"78":0.01634,"79":0.01961,"80":0.00654,"81":0.0098,"83":0,"84":0,"85":0,"86":0.67648,"87":0,"88":0,"89":0.00327,"90":0,"91":0,"92":0,"93":0.00327,"94":0,"95":0,"96":0.0098,"97":0.04575,"98":0,"99":0.00327,"100":0,"101":0.00654,"102":0.01307,"103":0.87256,"104":4.94448,"105":0.00327,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00327,"60":0.01307,"62":0,"63":0.03595,"64":0.00327,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.06863,"90":0.01961,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.06536,"13":0,"14":0,"15":0.00327,"16":0.00327,"17":0,"18":0.01307,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0098,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00327,"100":0,"101":0,"102":0,"103":0.08497,"104":0.67321,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00654,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00654,"15.6":0.0098,"16.0":0},G:{"8":0.00067,"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.00336,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05248,"10.0-10.2":0.08814,"10.3":0.3916,"11.0-11.2":0.02759,"11.3-11.4":0.01884,"12.0-12.1":0.0868,"12.2-12.5":1.55496,"13.0-13.1":0.06729,"13.2":0.00067,"13.3":0.35056,"13.4-13.7":0.07267,"14.0-14.4":0.0942,"14.5-14.8":0.35527,"15.0-15.1":0.0693,"15.2-15.3":0.43332,"15.4":0.26443,"15.5":2.40747,"15.6":0.36671,"16.0":0.02086},P:{"4":0.53519,"5.0-5.4":0.0101,"6.2-6.4":0.0101,"7.2-7.4":1.63588,"8.2":0,"9.2":0.03029,"10.1":0,"11.1-11.2":0.22216,"12.0":0,"13.0":0.03029,"14.0":0.05049,"15.0":0.19186,"16.0":0.05049,"17.0":0.28274,"18.0":0.10098},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0011,"4.4":0,"4.4.3-4.4.4":0.06138},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00654,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":78.17863},S:{"2.5":0.61934},R:{_:"0"},M:{"0":0.00673},Q:{"10.4":0},O:{"0":0.03366},H:{"0":0.96239}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.03716,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00248,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00248,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00495,"102":0,"103":0,"104":0.04459,"105":0.00991,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01982,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.00248,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00248,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00248,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00495,"45":0,"46":0.00248,"47":0,"48":0,"49":0.00495,"50":0.00248,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00248,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00248,"65":0,"66":0,"67":0,"68":0,"69":0.00248,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00495,"80":0,"81":0.00495,"83":0.00248,"84":0.00248,"85":0.00248,"86":0.38394,"87":0.00495,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00248,"94":0,"95":0.00248,"96":0.01239,"97":0.11394,"98":0,"99":0,"100":0,"101":0,"102":0.01734,"103":0.01239,"104":0.63164,"105":2.18224,"106":0.01486,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.02725,"62":0,"63":0.00495,"64":0.01239,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.01239,"87":0,"88":0,"89":0.00248,"90":0.17091,"91":0.00991,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.13871,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.01239,"98":0,"99":0.01486,"100":0,"101":0,"102":0.00743,"103":0.00248,"104":0.07679,"105":0.65888},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00248,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00248,"15.6":0.01486,"16.0":0.00495,"16.1":0},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.02583,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.09728,"10.0-10.2":0.15754,"10.3":0.25654,"11.0-11.2":0.04477,"11.3-11.4":0.00086,"12.0-12.1":0.35296,"12.2-12.5":1.75965,"13.0-13.1":0.03185,"13.2":0,"13.3":0.08953,"13.4-13.7":0.37707,"14.0-14.4":0.29012,"14.5-14.8":0.854,"15.0-15.1":0.13258,"15.2-15.3":1.00207,"15.4":0.49845,"15.5":0.96505,"15.6":1.45231,"16.0":0.18853,"16.1":0.0155},P:{"4":1.02618,"5.0-5.4":0.04105,"6.2-6.4":0,"7.2-7.4":2.33969,"8.2":0,"9.2":0.02052,"10.1":0,"11.1-11.2":0.20524,"12.0":0.01026,"13.0":0.02052,"14.0":0.08209,"15.0":0.07183,"16.0":0.03079,"17.0":0.22576,"18.0":0.37969},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0059,"4.4":0,"4.4.3-4.4.4":0.23199},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00495,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00752},O:{"0":0.08275},H:{"0":1.73072},L:{"0":77.87534},S:{"2.5":0.49652},R:{_:"0"},M:{"0":0.01505},Q:{"13.1":0}}; 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 6eda9d84a8fcdc..a0c3a68b878043 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00374,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00374,"88":0.00374,"89":0,"90":0,"91":0.00749,"92":0,"93":0,"94":0,"95":0,"96":0.01123,"97":0,"98":0,"99":0,"100":0.00374,"101":0.00374,"102":0.01872,"103":0.32947,"104":0.0599,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0337,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.02246,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00374,"66":0,"67":0,"68":0,"69":0.00374,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.01498,"76":0.01872,"77":0.06365,"78":0,"79":0.06365,"80":0.00374,"81":0.01123,"83":0.01123,"84":0.01123,"85":0.00374,"86":0.01872,"87":0.00749,"88":0.00374,"89":0.00374,"90":0.00374,"91":0.00749,"92":0.00749,"93":0.12355,"94":0.00374,"95":0.01123,"96":0.00749,"97":0.01123,"98":0.04493,"99":0.01123,"100":0.04118,"101":0.02621,"102":0.04493,"103":2.16778,"104":5.26781,"105":0.01498,"106":0.02621,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00374,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01123,"64":0.01872,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00374,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00374,"89":0.19469,"90":0.0337,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00749,"14":0,"15":0.01123,"16":0,"17":0.00374,"18":0.00749,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00374,"91":0,"92":0.00374,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00374,"101":0.02995,"102":0.01123,"103":0.40435,"104":1.29542,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.02246,"15":0.00749,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01498,"14.1":0.0337,"15.1":0.00749,"15.2-15.3":0.00374,"15.4":0.01872,"15.5":0.09734,"15.6":0.28829,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00541,"6.0-6.1":0,"7.0-7.1":0.07714,"8.1-8.4":0,"9.0-9.2":0.00135,"9.3":0.13669,"10.0-10.2":0,"10.3":0.06902,"11.0-11.2":0.14346,"11.3-11.4":0.01083,"12.0-12.1":0.00541,"12.2-12.5":0.52918,"13.0-13.1":0.01083,"13.2":0.00135,"13.3":0.01489,"13.4-13.7":0.24632,"14.0-14.4":0.23143,"14.5-14.8":0.50482,"15.0-15.1":0.23414,"15.2-15.3":0.49264,"15.4":0.46828,"15.5":2.9044,"15.6":7.27454,"16.0":0.16918},P:{"4":0.28145,"5.0-5.4":0.01082,"6.2-6.4":0,"7.2-7.4":0.27062,"8.2":0,"9.2":0.01082,"10.1":0.03247,"11.1-11.2":0.07577,"12.0":0.01082,"13.0":0.09742,"14.0":0.09742,"15.0":0.06495,"16.0":0.19485,"17.0":2.11085,"18.0":2.24074},I:{"0":0,"3":0,"4":0.09023,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.06767,"4.4":0,"4.4.3-4.4.4":1.69182},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01498,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":64.52418},S:{"2.5":0},R:{_:"0"},M:{"0":0.13763},Q:{"10.4":0},O:{"0":0.51299},H:{"0":0.17176}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00383,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00383,"96":0.01916,"97":0,"98":0,"99":0,"100":0.00383,"101":0,"102":0.00383,"103":0.02299,"104":0.27207,"105":0.06514,"106":0.00383,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02682,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00383,"56":0,"57":0,"58":0.00383,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00383,"66":0,"67":0,"68":0,"69":0.01533,"70":0.00383,"71":0,"72":0.00383,"73":0.00383,"74":0,"75":0.0115,"76":0.0115,"77":0.02299,"78":0,"79":0.06131,"80":0,"81":0.02299,"83":0.00766,"84":0,"85":0,"86":0.00383,"87":0.00766,"88":0.00383,"89":0,"90":0.00383,"91":0.0115,"92":0.00383,"93":0.12646,"94":0.00383,"95":0.00766,"96":0.00766,"97":0.00766,"98":0.02299,"99":0.00766,"100":0.01533,"101":0.01916,"102":0.02682,"103":0.30273,"104":1.77038,"105":5.96259,"106":0.10346,"107":0.07281,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00383,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0115,"64":0.03832,"65":0.00383,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01916,"90":0.24908,"91":0.00766,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00383,"13":0.00383,"14":0,"15":0.00766,"16":0.00383,"17":0.00766,"18":0.0115,"79":0,"80":0,"81":0,"83":0,"84":0.00383,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00383,"91":0,"92":0.00383,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00383,"100":0.00383,"101":0.00766,"102":0.00383,"103":0.02682,"104":0.2874,"105":1.49065},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00383,"14":0.03066,"15":0.00383,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00383,"12.1":0.00383,"13.1":0.0115,"14.1":0.02299,"15.1":0.00383,"15.2-15.3":0,"15.4":0.01916,"15.5":0.03832,"15.6":0.47517,"16.0":0.03832,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.04714,"6.0-6.1":0,"7.0-7.1":0.04175,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.25186,"10.0-10.2":0,"10.3":0.0862,"11.0-11.2":0.01886,"11.3-11.4":0.00269,"12.0-12.1":0.02155,"12.2-12.5":0.50372,"13.0-13.1":0.00269,"13.2":0.00539,"13.3":0.01482,"13.4-13.7":0.13065,"14.0-14.4":0.18183,"14.5-14.8":0.62629,"15.0-15.1":0.11987,"15.2-15.3":0.24378,"15.4":0.39732,"15.5":0.80946,"15.6":7.50738,"16.0":2.09032,"16.1":0.06465},P:{"4":0.35799,"5.0-5.4":0.01085,"6.2-6.4":0,"7.2-7.4":0.2929,"8.2":0,"9.2":0,"10.1":0.03254,"11.1-11.2":0.10848,"12.0":0.01085,"13.0":0.07594,"14.0":0.07594,"15.0":0.11933,"16.0":0.10848,"17.0":0.50986,"18.0":3.55816},I:{"0":0,"3":0,"4":0.05332,"2.1":0,"2.2":0,"2.3":0,"4.1":0.07998,"4.2-4.3":0.05332,"4.4":0,"4.4.3-4.4.4":1.51964},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01533,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.49344},H:{"0":0.46132},L:{"0":64.16725},S:{"2.5":0},R:{_:"0"},M:{"0":0.11719},Q:{"13.1":0}}; 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 7d4738c5607e33..f4929a3609d9c2 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.02038,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01019,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00509,"69":0,"70":0,"71":0,"72":0.00509,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01528,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00509,"85":0,"86":0,"87":0,"88":0.00509,"89":0.00509,"90":0.01019,"91":0.02038,"92":0,"93":0,"94":0.00509,"95":0.00509,"96":0.00509,"97":0.00509,"98":0.00509,"99":0.00509,"100":0.00509,"101":0.01019,"102":0.03566,"103":0.61637,"104":0.11716,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.01019,"23":0,"24":0,"25":0,"26":0.00509,"27":0,"28":0,"29":0,"30":0.00509,"31":0,"32":0,"33":0,"34":0.05094,"35":0,"36":0,"37":0,"38":0.10188,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00509,"46":0,"47":0,"48":0.00509,"49":0.04585,"50":0,"51":0,"52":0,"53":0.03566,"54":0,"55":0.01528,"56":0.00509,"57":0.00509,"58":0,"59":0,"60":0,"61":0.02038,"62":0.01019,"63":0.01019,"64":0,"65":0.01019,"66":0,"67":0.01019,"68":0.01019,"69":0.02038,"70":0.01019,"71":0.02038,"72":0.01019,"73":0.00509,"74":0.01528,"75":0.02038,"76":0.01019,"77":0.00509,"78":0.02547,"79":0.45846,"80":0.03056,"81":0.02547,"83":0.05094,"84":0.03056,"85":0.02547,"86":0.05094,"87":0.07641,"88":0.01019,"89":0.04585,"90":0.02038,"91":0.03056,"92":0.10697,"93":0.01528,"94":0.09169,"95":0.02038,"96":0.07132,"97":0.11716,"98":0.07132,"99":0.06622,"100":0.10697,"101":0.1732,"102":0.19867,"103":3.68296,"104":9.24052,"105":0.03566,"106":0.01019,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01528,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02547,"37":0,"38":0,"39":0,"40":0.00509,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.05603,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00509,"89":0.0866,"90":0.01019,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00509,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01019,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00509,"93":0,"94":0,"95":0,"96":0.00509,"97":0.00509,"98":0.00509,"99":0.00509,"100":0.00509,"101":0.01528,"102":0.01528,"103":0.5909,"104":1.68611,"105":0},E:{"4":0,"5":0,"6":0,"7":0.01019,"8":0.00509,"9":0,"10":0,"11":0.00509,"12":0.00509,"13":0.04585,"14":0.17829,"15":0.05603,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00509,"10.1":0.01019,"11.1":0.02038,"12.1":0.03056,"13.1":0.15791,"14.1":0.41771,"15.1":0.06113,"15.2-15.3":0.07132,"15.4":0.30055,"15.5":0.94748,"15.6":1.63517,"16.0":0.01019},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0093,"5.0-5.1":0.02791,"6.0-6.1":0.02481,"7.0-7.1":0.04032,"8.1-8.4":0.04962,"9.0-9.2":0.03101,"9.3":0.36906,"10.0-10.2":0.01551,"10.3":0.2233,"11.0-11.2":0.05893,"11.3-11.4":0.05272,"12.0-12.1":0.06203,"12.2-12.5":1.132,"13.0-13.1":0.06513,"13.2":0.02171,"13.3":0.13026,"13.4-13.7":0.34735,"14.0-14.4":0.94902,"14.5-14.8":1.92596,"15.0-15.1":0.64509,"15.2-15.3":0.82497,"15.4":1.87944,"15.5":5.70034,"15.6":16.34427,"16.0":0.06513},P:{"4":1.23306,"5.0-5.4":0.02144,"6.2-6.4":0.01072,"7.2-7.4":0.03217,"8.2":0.01072,"9.2":0.04289,"10.1":0.02144,"11.1-11.2":0.03217,"12.0":0.02144,"13.0":0.08578,"14.0":0.0965,"15.0":0.06433,"16.0":0.12867,"17.0":1.91928,"18.0":3.09873},I:{"0":0,"3":0,"4":0.0056,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00841,"4.2-4.3":0.02242,"4.4":0,"4.4.3-4.4.4":0.13451},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01268,"9":0.06342,"10":0,"11":0.54537,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":33.26893},S:{"2.5":0},R:{_:"0"},M:{"0":0.20115},Q:{"10.4":0.18643},O:{"0":0.55438},H:{"0":0.09754}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.02005,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00501,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01003,"53":0,"54":0,"55":0,"56":0.00501,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00501,"69":0,"70":0,"71":0,"72":0.00501,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01504,"79":0,"80":0,"81":0.00501,"82":0,"83":0,"84":0.00501,"85":0,"86":0,"87":0,"88":0.00501,"89":0.00501,"90":0.01003,"91":0.01504,"92":0.00501,"93":0,"94":0,"95":0.00501,"96":0.00501,"97":0.00501,"98":0.00501,"99":0.00501,"100":0.00501,"101":0.00501,"102":0.02005,"103":0.0401,"104":0.5414,"105":0.18047,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.01003,"23":0,"24":0,"25":0,"26":0.00501,"27":0,"28":0,"29":0,"30":0.00501,"31":0,"32":0,"33":0,"34":0.04512,"35":0,"36":0,"37":0,"38":0.10527,"39":0.00501,"40":0,"41":0,"42":0.00501,"43":0.00501,"44":0.01003,"45":0.00501,"46":0,"47":0,"48":0.00501,"49":0.05013,"50":0,"51":0,"52":0,"53":0.03509,"54":0.00501,"55":0.01504,"56":0.00501,"57":0.00501,"58":0,"59":0,"60":0,"61":0.02005,"62":0.00501,"63":0.01003,"64":0,"65":0.01003,"66":0,"67":0.01003,"68":0.01003,"69":0.02005,"70":0.00501,"71":0.01504,"72":0.00501,"73":0.00501,"74":0.01504,"75":0.01504,"76":0.00501,"77":0.00501,"78":0.02507,"79":0.43613,"80":0.02507,"81":0.02005,"83":0.05514,"84":0.03008,"85":0.02507,"86":0.05514,"87":0.07018,"88":0.01003,"89":0.03509,"90":0.01003,"91":0.04512,"92":0.09525,"93":0.01003,"94":0.09023,"95":0.01504,"96":0.06016,"97":0.10026,"98":0.06016,"99":0.06517,"100":0.08522,"101":0.09023,"102":0.11029,"103":0.42109,"104":2.87746,"105":9.26904,"106":0.14538,"107":0.00501,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01504,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02507,"37":0,"38":0,"39":0,"40":0.00501,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.05013,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00501,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00501,"90":0.08522,"91":0.00501,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00501,"13":0,"14":0,"15":0,"16":0.00501,"17":0,"18":0.01003,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00501,"97":0,"98":0.00501,"99":0.00501,"100":0.00501,"101":0.01003,"102":0.01003,"103":0.0401,"104":0.37598,"105":1.87988},E:{"4":0,"5":0,"6":0,"7":0.00501,"8":0.00501,"9":0,"10":0,"11":0.00501,"12":0.00501,"13":0.0401,"14":0.16042,"15":0.04512,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00501,"10.1":0.01003,"11.1":0.02005,"12.1":0.03008,"13.1":0.14538,"14.1":0.36595,"15.1":0.05514,"15.2-15.3":0.05514,"15.4":0.20553,"15.5":0.41107,"15.6":2.13554,"16.0":0.10026,"16.1":0.00501},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00959,"5.0-5.1":0.02556,"6.0-6.1":0.02876,"7.0-7.1":0.04793,"8.1-8.4":0.05752,"9.0-9.2":0.05112,"9.3":0.3387,"10.0-10.2":0.01278,"10.3":0.2013,"11.0-11.2":0.04793,"11.3-11.4":0.05752,"12.0-12.1":0.0671,"12.2-12.5":1.08321,"13.0-13.1":0.06071,"13.2":0.02237,"13.3":0.1342,"13.4-13.7":0.33551,"14.0-14.4":0.89788,"14.5-14.8":1.73185,"15.0-15.1":0.59113,"15.2-15.3":0.70297,"15.4":1.39954,"15.5":2.12807,"15.6":19.0344,"16.0":2.22073,"16.1":0.02876},P:{"4":1.17884,"5.0-5.4":0.03215,"6.2-6.4":0.01072,"7.2-7.4":0.02143,"8.2":0,"9.2":0.02143,"10.1":0.01072,"11.1-11.2":0.03215,"12.0":0.02143,"13.0":0.08573,"14.0":0.0643,"15.0":0.05358,"16.0":0.09645,"17.0":0.3858,"18.0":4.52247},I:{"0":0,"3":0,"4":0.00767,"2.1":0,"2.2":0.01534,"2.3":0,"4.1":0.01918,"4.2-4.3":0.02685,"4.4":0,"4.4.3-4.4.4":0.16109},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01546,"9":0.07728,"10":0,"11":0.4637,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.60343},H:{"0":0.09443},L:{"0":33.87387},S:{"2.5":0},R:{_:"0"},M:{"0":0.18452},Q:{"13.1":0.2294}}; 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 5186d886134de1..d6e967da19a1d7 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00425,"48":0,"49":0,"50":0,"51":0,"52":0.00849,"53":0,"54":0,"55":0,"56":0,"57":0.00425,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00425,"69":0,"70":0,"71":0,"72":0,"73":0.02123,"74":0,"75":0.00425,"76":0,"77":0,"78":0.00425,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.01274,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00849,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00425,"98":0,"99":0.02123,"100":0.00425,"101":0.00425,"102":0.04671,"103":0.51377,"104":0.1019,"105":0.00425,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00425,"35":0,"36":0,"37":0,"38":0.00425,"39":0,"40":0,"41":0.01274,"42":0,"43":0,"44":0.00425,"45":0,"46":0,"47":0.00425,"48":0,"49":0.00849,"50":0,"51":0,"52":0,"53":0.01274,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00425,"64":0.00425,"65":0.00425,"66":0,"67":0.00425,"68":0.03397,"69":0.00425,"70":0.00425,"71":0.00425,"72":0,"73":0,"74":0.00425,"75":0.00849,"76":0.01698,"77":0.01274,"78":0.00849,"79":0.1019,"80":0.00849,"81":0.01274,"83":0.00425,"84":0.01274,"85":0.02123,"86":0.01274,"87":0.03821,"88":0.02123,"89":0.01274,"90":0.00849,"91":0.05095,"92":0.02548,"93":0.02548,"94":0.00425,"95":0.01274,"96":0.02972,"97":0.01698,"98":0.01698,"99":0.03397,"100":0.02972,"101":0.06794,"102":0.13587,"103":2.92974,"104":7.90181,"105":0.02972,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01698,"64":0.00849,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00425,"86":0,"87":0.00425,"88":0.01274,"89":0.85769,"90":0.0552,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00425,"17":0,"18":0.01698,"79":0,"80":0,"81":0,"83":0,"84":0.00425,"85":0,"86":0,"87":0,"88":0,"89":0.00849,"90":0,"91":0,"92":0.00849,"93":0,"94":0.00425,"95":0,"96":0,"97":0,"98":0.00425,"99":0.00425,"100":0.00849,"101":0.03397,"102":0.01274,"103":0.50103,"104":1.31201,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00425,"14":0.01698,"15":0.00425,_:"0","3.1":0,"3.2":0,"5.1":0.00849,"6.1":0,"7.1":0,"9.1":0.00425,"10.1":0,"11.1":0.00849,"12.1":0.01274,"13.1":0.03397,"14.1":0.05944,"15.1":0.01274,"15.2-15.3":0.02123,"15.4":0.04246,"15.5":0.12738,"15.6":0.25901,"16.0":0.00425},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00743,"6.0-6.1":0.052,"7.0-7.1":0.01634,"8.1-8.4":0.00446,"9.0-9.2":0,"9.3":0.06685,"10.0-10.2":0.00149,"10.3":0.08468,"11.0-11.2":0.01486,"11.3-11.4":0.01783,"12.0-12.1":0.00891,"12.2-12.5":0.50361,"13.0-13.1":0.00891,"13.2":0.00594,"13.3":0.11736,"13.4-13.7":0.10845,"14.0-14.4":0.3194,"14.5-14.8":0.68931,"15.0-15.1":0.27335,"15.2-15.3":0.36545,"15.4":0.5051,"15.5":3.13608,"15.6":8.28513,"16.0":0.25701},P:{"4":0.21551,"5.0-5.4":0.01026,"6.2-6.4":0,"7.2-7.4":0.23604,"8.2":0,"9.2":0.03079,"10.1":0,"11.1-11.2":0.11289,"12.0":0.03079,"13.0":0.0821,"14.0":0.0821,"15.0":0.05131,"16.0":0.15394,"17.0":1.13913,"18.0":1.22123},I:{"0":0,"3":0,"4":0.01768,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.03535,"4.4":0,"4.4.3-4.4.4":0.34173},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00425,"10":0,"11":0.03821,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":62.38537},S:{"2.5":0.00575},R:{_:"0"},M:{"0":0.16687},Q:{"10.4":0},O:{"0":0.09782},H:{"0":0.22335}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00429,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00429,"69":0,"70":0,"71":0,"72":0,"73":0.0343,"74":0,"75":0,"76":0,"77":0,"78":0.00857,"79":0,"80":0,"81":0.00429,"82":0.00429,"83":0,"84":0,"85":0,"86":0.00429,"87":0,"88":0,"89":0,"90":0,"91":0.00429,"92":0,"93":0,"94":0.00429,"95":0,"96":0,"97":0,"98":0,"99":0.01286,"100":0.00429,"101":0.00429,"102":0.03001,"103":0.02572,"104":0.41155,"105":0.15862,"106":0.00429,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00429,"39":0,"40":0,"41":0.00429,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00429,"48":0,"49":0.00857,"50":0,"51":0,"52":0,"53":0.01286,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00429,"64":0,"65":0.00429,"66":0,"67":0.00429,"68":0.03001,"69":0.00429,"70":0.00857,"71":0,"72":0.00429,"73":0,"74":0.00429,"75":0.00429,"76":0.01286,"77":0,"78":0.00429,"79":0.0986,"80":0.00857,"81":0.01715,"83":0.00857,"84":0.00857,"85":0.03001,"86":0.01286,"87":0.03001,"88":0.01715,"89":0.00857,"90":0.00429,"91":0.03858,"92":0.01715,"93":0.0343,"94":0.00429,"95":0.00857,"96":0.02144,"97":0.02144,"98":0.02144,"99":0.02572,"100":0.02572,"101":0.05144,"102":0.05573,"103":0.29152,"104":2.22495,"105":8.88266,"106":0.23579,"107":0.00429,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00429,"64":0.01715,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00429,"71":0.00429,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00429,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00429,"89":0.11575,"90":0.72879,"91":0.01715,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00429,"18":0.02144,"79":0,"80":0,"81":0,"83":0,"84":0.00429,"85":0.00429,"86":0,"87":0,"88":0,"89":0.00857,"90":0,"91":0,"92":0.00857,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00429,"100":0.00429,"101":0.01286,"102":0.00857,"103":0.01715,"104":0.26151,"105":1.55189},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00429,"14":0.01715,"15":0.00429,_:"0","3.1":0,"3.2":0,"5.1":0.00429,"6.1":0,"7.1":0,"9.1":0.00429,"10.1":0,"11.1":0.00429,"12.1":0.00857,"13.1":0.0343,"14.1":0.07717,"15.1":0.01286,"15.2-15.3":0.01715,"15.4":0.0343,"15.5":0.08574,"15.6":0.32153,"16.0":0.05144,"16.1":0.00857},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00902,"6.0-6.1":0.06315,"7.0-7.1":0.01203,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06766,"10.0-10.2":0.00752,"10.3":0.09472,"11.0-11.2":0.01203,"11.3-11.4":0.01804,"12.0-12.1":0.00902,"12.2-12.5":0.53527,"13.0-13.1":0.01804,"13.2":0.00752,"13.3":0.15787,"13.4-13.7":0.0842,"14.0-14.4":0.27515,"14.5-14.8":0.61195,"15.0-15.1":0.20148,"15.2-15.3":0.23606,"15.4":0.30071,"15.5":0.98333,"15.6":7.81402,"16.0":3.08381,"16.1":0.04661},P:{"4":0.23507,"5.0-5.4":0.01022,"6.2-6.4":0,"7.2-7.4":0.18397,"8.2":0,"9.2":0.03066,"10.1":0.01022,"11.1-11.2":0.09198,"12.0":0.02044,"13.0":0.07154,"14.0":0.07154,"15.0":0.04088,"16.0":0.13287,"17.0":0.32706,"18.0":2.10542},I:{"0":0,"3":0,"4":0.02194,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01463,"4.2-4.3":0.04388,"4.4":0,"4.4.3-4.4.4":0.35106},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02572,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.09712},H:{"0":0.20012},L:{"0":62.17612},S:{"2.5":0},R:{_:"0"},M:{"0":0.1771},Q:{"13.1":0}}; 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 ec914c0f2a45c5..7b628fe1da76d4 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02339,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.0039,"65":0,"66":0,"67":0,"68":0.0078,"69":0,"70":0,"71":0,"72":0.0039,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0078,"79":0,"80":0,"81":0.0039,"82":0,"83":0,"84":0.0039,"85":0.0039,"86":0,"87":0,"88":0.0039,"89":0.0078,"90":0,"91":0.0195,"92":0.0039,"93":0,"94":0.0039,"95":0.0039,"96":0.0039,"97":0.0039,"98":0.0039,"99":0.02729,"100":0.0156,"101":0.0117,"102":0.06628,"103":1.31786,"104":0.24564,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0039,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0039,"39":0,"40":0,"41":0.0078,"42":0,"43":0.0039,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0156,"50":0,"51":0,"52":0,"53":0.0117,"54":0,"55":0,"56":0.0039,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.0039,"64":0,"65":0,"66":0.0078,"67":0,"68":0,"69":0.0039,"70":0,"71":0.0039,"72":0,"73":0,"74":0,"75":0.0039,"76":0,"77":0.0117,"78":0.0039,"79":0.03899,"80":0.0078,"81":0.03119,"83":0.0117,"84":0.0156,"85":0.03119,"86":0.0195,"87":0.0156,"88":0.0078,"89":0.0156,"90":0.0078,"91":0.0078,"92":0.03509,"93":0.0078,"94":0.0078,"95":0.0078,"96":0.04289,"97":0.0195,"98":0.0156,"99":0.0156,"100":0.03899,"101":0.02729,"102":0.07018,"103":2.47976,"104":6.84664,"105":0.0156,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0039,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.0039,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0039,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0078,"64":0.0039,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.0039,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.0039,"85":0.0039,"86":0,"87":0,"88":0.0078,"89":0.57315,"90":0.10137,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0.02729,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.0039,"17":0,"18":0.0039,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0039,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.0078,"100":0.0039,"101":0.0039,"102":0.0039,"103":0.27683,"104":0.82659,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0039,"14":0.02729,"15":0.0078,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.0039,"12.1":0.0117,"13.1":0.05069,"14.1":0.06628,"15.1":0.0156,"15.2-15.3":0.0156,"15.4":0.05459,"15.5":0.18325,"15.6":0.27293,"16.0":0.0039},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00624,"6.0-6.1":0,"7.0-7.1":0.00312,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08574,"10.0-10.2":0.00156,"10.3":0.06859,"11.0-11.2":0.00935,"11.3-11.4":0.01091,"12.0-12.1":0.01715,"12.2-12.5":0.31801,"13.0-13.1":0.00624,"13.2":0.00312,"13.3":0.04521,"13.4-13.7":0.10756,"14.0-14.4":0.33672,"14.5-14.8":0.92442,"15.0-15.1":0.26033,"15.2-15.3":0.42558,"15.4":0.67032,"15.5":4.57533,"15.6":7.60892,"16.0":0.09977},P:{"4":0.18545,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.0103,"10.1":0.0103,"11.1-11.2":0.05151,"12.0":0.02061,"13.0":0.05151,"14.0":0.05151,"15.0":0.04121,"16.0":0.14424,"17.0":1.61751,"18.0":2.18416},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03468,"4.2-4.3":0.01734,"4.4":0,"4.4.3-4.4.4":0.12138},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05069,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":59.24581},S:{"2.5":0},R:{_:"0"},M:{"0":0.39657},Q:{"10.4":0.0061},O:{"0":0.06101},H:{"0":0.49096}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00885,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.03538,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00885,"69":0,"70":0,"71":0,"72":0.00442,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00885,"79":0,"80":0,"81":0.00442,"82":0,"83":0.00442,"84":0.00442,"85":0,"86":0,"87":0,"88":0.00442,"89":0.01327,"90":0,"91":0.01769,"92":0,"93":0,"94":0.00442,"95":0.00442,"96":0,"97":0.00442,"98":0.00442,"99":0.02654,"100":0.03096,"101":0.00885,"102":0.02654,"103":0.09288,"104":1.5569,"105":0.53076,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00442,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01769,"50":0,"51":0,"52":0,"53":0.00885,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00442,"64":0,"65":0,"66":0.00885,"67":0.00442,"68":0,"69":0.00442,"70":0.00442,"71":0.00442,"72":0,"73":0,"74":0,"75":0.00442,"76":0,"77":0.03096,"78":0.00442,"79":0.05308,"80":0.00442,"81":0.03981,"83":0.01327,"84":0.06635,"85":0.00442,"86":0.03096,"87":0.03981,"88":0.00885,"89":0.01769,"90":0.00885,"91":0.01327,"92":0.02654,"93":0.00885,"94":0.00885,"95":0.00885,"96":0.04865,"97":0.03096,"98":0.03096,"99":0.01769,"100":0.07077,"101":0.03981,"102":0.0575,"103":0.18134,"104":2.48573,"105":9.80137,"106":0.14596,"107":0.00442,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00442,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00442,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00885,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00442,"64":0.01327,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00442,"72":0.00442,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00442,"86":0,"87":0,"88":0,"89":0.04423,"90":0.70326,"91":0.04423,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0.03538,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00442,"16":0,"17":0,"18":0.00442,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00442,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00442,"93":0,"94":0,"95":0,"96":0.00442,"97":0,"98":0,"99":0.00885,"100":0.00442,"101":0.00442,"102":0.00442,"103":0.00885,"104":0.18577,"105":1.07921},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00442,"14":0.02654,"15":0.00442,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00442,"12.1":0.00885,"13.1":0.03981,"14.1":0.06635,"15.1":0.00885,"15.2-15.3":0.01327,"15.4":0.03096,"15.5":0.07519,"15.6":0.42019,"16.0":0.03981,"16.1":0.00442},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00144,"6.0-6.1":0,"7.0-7.1":0.00289,"8.1-8.4":0.00289,"9.0-9.2":0,"9.3":0.10691,"10.0-10.2":0,"10.3":0.0679,"11.0-11.2":0.00867,"11.3-11.4":0.01156,"12.0-12.1":0.01589,"12.2-12.5":0.3395,"13.0-13.1":0.00578,"13.2":0.00289,"13.3":0.03034,"13.4-13.7":0.10979,"14.0-14.4":0.31205,"14.5-14.8":0.81768,"15.0-15.1":0.18781,"15.2-15.3":0.35105,"15.4":0.43918,"15.5":1.27131,"15.6":8.11613,"16.0":2.00231,"16.1":0.02745},P:{"4":0.13337,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01026,"10.1":0.02052,"11.1-11.2":0.05129,"12.0":0.03078,"13.0":0.04104,"14.0":0.07181,"15.0":0.03078,"16.0":0.12311,"17.0":0.23596,"18.0":3.3957},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01731,"4.2-4.3":0.03462,"4.4":0,"4.4.3-4.4.4":0.1125},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06192,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.08923},H:{"0":0.45936},L:{"0":55.54927},S:{"2.5":0},R:{_:"0"},M:{"0":0.41828},Q:{"13.1":0}}; 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 2583b4dab422c4..4a27cc3015dd35 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00159,"92":0,"93":0,"94":0,"95":0.00159,"96":0,"97":0,"98":0.00159,"99":0,"100":0.00159,"101":0.00319,"102":0.00478,"103":0.05898,"104":0.01116,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00159,"43":0.00159,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00319,"50":0.00159,"51":0,"52":0.00159,"53":0,"54":0,"55":0,"56":0.00159,"57":0,"58":0.00159,"59":0,"60":0.00478,"61":0,"62":0,"63":0.00159,"64":0.00159,"65":0.01753,"66":0,"67":0,"68":0.00478,"69":0,"70":0.00319,"71":0,"72":0.00159,"73":0,"74":0.00159,"75":0.00319,"76":0.02072,"77":0.00478,"78":0.00159,"79":0.00159,"80":0.00319,"81":0.00956,"83":0.00319,"84":0,"85":0.00159,"86":0.00159,"87":0.00478,"88":0.00319,"89":0.00159,"90":0.00319,"91":0.00159,"92":0.01594,"93":0.00478,"94":0.00319,"95":0.01116,"96":0.00638,"97":0.00159,"98":0.00319,"99":0.00638,"100":0.00797,"101":0.00956,"102":0.00956,"103":0.36343,"104":0.65992,"105":0.00159,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00159,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00478,"60":0.00159,"62":0.00319,"63":0.0542,"64":0.03507,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00159,"85":0.00159,"86":0,"87":0.00159,"88":0.00478,"89":0.08926,"90":0.01275,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00478,"13":0.00159,"14":0.00159,"15":0.00319,"16":0.00159,"17":0.00159,"18":0.00478,"79":0,"80":0,"81":0,"83":0,"84":0.00159,"85":0,"86":0,"87":0,"88":0,"89":0.00159,"90":0,"91":0,"92":0.00319,"93":0,"94":0,"95":0,"96":0.00159,"97":0,"98":0.00159,"99":0.00319,"100":0.00159,"101":0.00159,"102":0.00478,"103":0.07651,"104":0.18809,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00319,"14":0.00159,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00159,"12.1":0,"13.1":0.00478,"14.1":0.01435,"15.1":0.00319,"15.2-15.3":0.00159,"15.4":0.00319,"15.5":0.01116,"15.6":0.01435,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00103,"6.0-6.1":0,"7.0-7.1":0.00412,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.10091,"10.0-10.2":0.01236,"10.3":0.29243,"11.0-11.2":0.01339,"11.3-11.4":0.55293,"12.0-12.1":0.25021,"12.2-12.5":2.0995,"13.0-13.1":0.08443,"13.2":0.0175,"13.3":0.16372,"13.4-13.7":0.37789,"14.0-14.4":1.1625,"14.5-14.8":1.39727,"15.0-15.1":0.50454,"15.2-15.3":0.64046,"15.4":0.44173,"15.5":0.9926,"15.6":1.11719,"16.0":0.06693},P:{"4":0.3991,"5.0-5.4":0.17397,"6.2-6.4":0.04093,"7.2-7.4":0.3377,"8.2":0.04093,"9.2":0.3684,"10.1":0.01023,"11.1-11.2":0.51167,"12.0":0.04093,"13.0":0.19443,"14.0":0.17397,"15.0":0.0921,"16.0":0.3377,"17.0":0.93124,"18.0":0.34794},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00135,"4.2-4.3":0.00539,"4.4":0,"4.4.3-4.4.4":0.09862},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00638,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":81.23629},S:{"2.5":0},R:{_:"0"},M:{"0":0.12609},Q:{"10.4":0},O:{"0":0.39508},H:{"0":1.00274}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00544,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00136,"99":0,"100":0,"101":0.00136,"102":0.00136,"103":0.00408,"104":0.04216,"105":0.00816,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00136,"41":0,"42":0.00136,"43":0.00136,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00136,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00408,"57":0,"58":0.00136,"59":0,"60":0.00544,"61":0,"62":0,"63":0.00136,"64":0.00136,"65":0.034,"66":0,"67":0,"68":0.00272,"69":0,"70":0.00272,"71":0,"72":0,"73":0.00136,"74":0.00136,"75":0.00816,"76":0.02584,"77":0.00544,"78":0.00136,"79":0.00136,"80":0.00272,"81":0.00816,"83":0.00136,"84":0.00136,"85":0.00136,"86":0.00272,"87":0.00272,"88":0.00408,"89":0.00136,"90":0.00272,"91":0.00272,"92":0.0204,"93":0.00544,"94":0.00408,"95":0.00272,"96":0.00408,"97":0.00272,"98":0.00136,"99":0.00408,"100":0.00408,"101":0.00816,"102":0.0068,"103":0.05168,"104":0.22304,"105":0.45696,"106":0.00408,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00136,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00136,"60":0.00136,"62":0.00136,"63":0.01088,"64":0.034,"65":0.00272,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00136,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00136,"89":0.00408,"90":0.04896,"91":0.00272,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00272,"13":0.00136,"14":0,"15":0.00272,"16":0,"17":0.00136,"18":0.00408,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00816,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00136,"100":0,"101":0.00136,"102":0.00136,"103":0.01496,"104":0.0408,"105":0.14688},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00408,"14":0.00408,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00408,"13.1":0.00408,"14.1":0.01632,"15.1":0.00136,"15.2-15.3":0.00136,"15.4":0.00136,"15.5":0.0068,"15.6":0.01632,"16.0":0.00272,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0014,"6.0-6.1":0.0014,"7.0-7.1":0.00701,"8.1-8.4":0.0014,"9.0-9.2":0.0028,"9.3":0.10932,"10.0-10.2":0.0014,"10.3":0.33638,"11.0-11.2":0.04065,"11.3-11.4":0.24948,"12.0-12.1":0.35179,"12.2-12.5":3.4731,"13.0-13.1":0.15277,"13.2":0.02243,"13.3":0.21724,"13.4-13.7":0.50597,"14.0-14.4":1.72394,"14.5-14.8":1.57397,"15.0-15.1":0.69238,"15.2-15.3":0.86337,"15.4":0.4485,"15.5":0.78208,"15.6":1.88792,"16.0":0.47653,"16.1":0.00981},P:{"4":0.34177,"5.0-5.4":0.15535,"6.2-6.4":0.04143,"7.2-7.4":0.24856,"8.2":0.04143,"9.2":0.26928,"10.1":0,"11.1-11.2":0.44534,"12.0":0.01036,"13.0":0.12428,"14.0":0.14499,"15.0":0.0725,"16.0":0.19678,"17.0":0.48677,"18.0":0.60069},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00092,"4.2-4.3":0.00551,"4.4":0,"4.4.3-4.4.4":0.11477},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00544,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00864},O:{"0":0.19008},H:{"0":0.63802},L:{"0":79.77776},S:{"2.5":0},R:{_:"0"},M:{"0":0.09504},Q:{"13.1":0}}; 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 63c9f98af690c1..734788790e9bad 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.004,"48":0,"49":0,"50":0,"51":0,"52":0.05596,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00799,"69":0,"70":0,"71":0,"72":0.004,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01199,"79":0,"80":0,"81":0.004,"82":0,"83":0.004,"84":0.004,"85":0,"86":0,"87":0,"88":0.00799,"89":0.004,"90":0,"91":0.03597,"92":0,"93":0,"94":0.004,"95":0.00799,"96":0.004,"97":0.004,"98":0.00799,"99":0.01999,"100":0.01199,"101":0.01599,"102":0.6635,"103":1.78666,"104":0.37572,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.004,"35":0,"36":0,"37":0,"38":0.01199,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01999,"50":0,"51":0,"52":0,"53":0.004,"54":0,"55":0,"56":0,"57":0,"58":0.004,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.004,"69":0.00799,"70":0.004,"71":0.004,"72":0,"73":0.004,"74":0.004,"75":0,"76":0.004,"77":0,"78":0.004,"79":0.1279,"80":0.004,"81":0.01199,"83":0.00799,"84":0.00799,"85":0.00799,"86":0.00799,"87":0.01999,"88":0.00799,"89":0.01199,"90":0.00799,"91":0.00799,"92":0.01599,"93":0.004,"94":0.004,"95":0.01199,"96":0.01599,"97":0.01199,"98":0.01199,"99":0.01599,"100":0.01999,"101":0.02398,"102":0.06395,"103":2.45016,"104":6.69897,"105":0.01599,"106":0.004,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.004,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.004,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.004,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00799,"64":0.01199,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.004,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.004,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00799,"86":0,"87":0.004,"88":0.01599,"89":0.56757,"90":0.07594,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.004,"16":0,"17":0.004,"18":0.004,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.004,"88":0,"89":0,"90":0,"91":0,"92":0.004,"93":0,"94":0,"95":0,"96":0,"97":0.004,"98":0,"99":0,"100":0,"101":0.01999,"102":0.00799,"103":0.32376,"104":0.97127,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.004,"14":0.02398,"15":0.004,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.004,"10.1":0,"11.1":0.004,"12.1":0.00799,"13.1":0.02798,"14.1":0.04796,"15.1":0.01199,"15.2-15.3":0.01199,"15.4":0.03597,"15.5":0.12391,"15.6":0.23183,"16.0":0.004},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0047,"6.0-6.1":0,"7.0-7.1":0.01097,"8.1-8.4":0,"9.0-9.2":0.00157,"9.3":0.03763,"10.0-10.2":0.00157,"10.3":0.04703,"11.0-11.2":0.01725,"11.3-11.4":0.01411,"12.0-12.1":0.01568,"12.2-12.5":0.3606,"13.0-13.1":0.01411,"13.2":0.0047,"13.3":0.03136,"13.4-13.7":0.11445,"14.0-14.4":0.34805,"14.5-14.8":0.83408,"15.0-15.1":0.18187,"15.2-15.3":0.35746,"15.4":0.61929,"15.5":3.5072,"15.6":8.982,"16.0":0.15992},P:{"4":0.34847,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01025,"12.0":0.01025,"13.0":0.05125,"14.0":0.06149,"15.0":0.03075,"16.0":0.07174,"17.0":0.91216,"18.0":1.44511},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03557,"4.2-4.3":0.0415,"4.4":0,"4.4.3-4.4.4":0.25492},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02398,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":62.48705},S:{"2.5":0},R:{_:"0"},M:{"0":0.31216},Q:{"10.4":0},O:{"0":0.04202},H:{"0":0.41488}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.05624,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00803,"69":0,"70":0,"71":0,"72":0.00402,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01205,"79":0,"80":0,"81":0.00402,"82":0.00402,"83":0.00402,"84":0,"85":0,"86":0,"87":0,"88":0.00803,"89":0.00402,"90":0,"91":0.03214,"92":0.00402,"93":0,"94":0.00402,"95":0.00402,"96":0.00402,"97":0.00402,"98":0.00803,"99":0.01607,"100":0.00803,"101":0.00803,"102":0.60657,"103":0.06829,"104":1.54655,"105":0.55435,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00402,"35":0,"36":0,"37":0,"38":0.00803,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02009,"50":0,"51":0,"52":0,"53":0.00402,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00402,"69":0.00402,"70":0.00402,"71":0,"72":0.00402,"73":0,"74":0.00402,"75":0,"76":0.00402,"77":0,"78":0.00402,"79":0.11248,"80":0.00402,"81":0.01205,"83":0.00402,"84":0.00402,"85":0.00803,"86":0.00803,"87":0.05222,"88":0.00803,"89":0.01205,"90":0.00402,"91":0.00803,"92":0.01205,"93":0.00402,"94":0.00402,"95":0.01205,"96":0.01205,"97":0.01205,"98":0.01205,"99":0.01205,"100":0.01607,"101":0.01607,"102":0.03214,"103":0.26914,"104":1.83979,"105":7.31496,"106":0.10444,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00402,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00402,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00402,"64":0.00803,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00402,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.00402,"84":0,"85":0.00803,"86":0,"87":0,"88":0.00402,"89":0.06026,"90":0.60657,"91":0.02812,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00402,"16":0,"17":0.00402,"18":0.00402,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00402,"88":0,"89":0,"90":0,"91":0,"92":0.00402,"93":0,"94":0,"95":0,"96":0,"97":0.00402,"98":0,"99":0,"100":0,"101":0.00402,"102":0.00402,"103":0.01607,"104":0.25307,"105":1.01228},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00402,"14":0.0241,"15":0.00402,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00402,"12.1":0.00803,"13.1":0.03214,"14.1":0.04419,"15.1":0.01205,"15.2-15.3":0.01205,"15.4":0.02812,"15.5":0.05624,"15.6":0.26111,"16.0":0.0482,"16.1":0.00402},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00156,"6.0-6.1":0,"7.0-7.1":0.01244,"8.1-8.4":0,"9.0-9.2":0.00156,"9.3":0.03422,"10.0-10.2":0.00311,"10.3":0.05133,"11.0-11.2":0.01244,"11.3-11.4":0.00933,"12.0-12.1":0.014,"12.2-12.5":0.39039,"13.0-13.1":0.01244,"13.2":0.00311,"13.3":0.02955,"13.4-13.7":0.10887,"14.0-14.4":0.28307,"14.5-14.8":0.66102,"15.0-15.1":0.13998,"15.2-15.3":0.24263,"15.4":0.44794,"15.5":1.01875,"15.6":8.83591,"16.0":2.86961,"16.1":0.04199},P:{"4":0.2785,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01031,"12.0":0,"13.0":0.03094,"14.0":0.04126,"15.0":0.02063,"16.0":0.05157,"17.0":0.14441,"18.0":2.00105},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01762,"4.2-4.3":0.07046,"4.4":0,"4.4.3-4.4.4":0.41397},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0241,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.02992},H:{"0":0.33419},L:{"0":63.28311},S:{"2.5":0},R:{_:"0"},M:{"0":0.25129},Q:{"13.1":0}}; 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 e9c5ec2cbcb930..96fc38bc099542 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.06971,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00734,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00367,"69":0,"70":0,"71":0,"72":0.00367,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00367,"79":0.00367,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00734,"89":0.00367,"90":0.00367,"91":0.00734,"92":0,"93":0.00367,"94":0.00367,"95":0.00367,"96":0.00367,"97":0.00367,"98":0.00367,"99":0.01468,"100":0.01101,"101":0.01468,"102":0.03669,"103":0.90257,"104":0.17978,"105":0.00734,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00367,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00367,"64":0,"65":0.00367,"66":0,"67":0.00367,"68":0,"69":0.00367,"70":0.00367,"71":0.00734,"72":0.00367,"73":0.00734,"74":0.01101,"75":0.00367,"76":0.00367,"77":0.00367,"78":0.00367,"79":0.01468,"80":0.02201,"81":0.01101,"83":0.01101,"84":0.01468,"85":0.01468,"86":0.01835,"87":0.02201,"88":0.01101,"89":0.02568,"90":0.00734,"91":0.01101,"92":0.02201,"93":0.00734,"94":0.01101,"95":0.01101,"96":0.02201,"97":0.01835,"98":0.01468,"99":0.01835,"100":0.02568,"101":0.03302,"102":0.07338,"103":2.46557,"104":6.79866,"105":0.01835,"106":0.00367,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.01101,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00367,"55":0.00367,"56":0,"57":0,"58":0.00367,"60":0.00367,"62":0,"63":0.08439,"64":0.07338,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00367,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00367,"86":0,"87":0,"88":0.00367,"89":0.13942,"90":0.02201,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00367,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00367,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00367,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00367,"100":0.00367,"101":0.00367,"102":0.00734,"103":0.23482,"104":0.65308,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00367,"14":0.01835,"15":0.00367,_:"0","3.1":0,"3.2":0,"5.1":0.03302,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00367,"12.1":0.00367,"13.1":0.02201,"14.1":0.03669,"15.1":0.01101,"15.2-15.3":0.00734,"15.4":0.01835,"15.5":0.0587,"15.6":0.07338,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00082,"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.01481,"10.0-10.2":0.00411,"10.3":0.01646,"11.0-11.2":0.01234,"11.3-11.4":0.00576,"12.0-12.1":0.01399,"12.2-12.5":0.27811,"13.0-13.1":0.01399,"13.2":0.01152,"13.3":0.03785,"13.4-13.7":0.08639,"14.0-14.4":0.32501,"14.5-14.8":0.56444,"15.0-15.1":0.27646,"15.2-15.3":0.36039,"15.4":0.76274,"15.5":2.10967,"15.6":3.29287,"16.0":0.03703},P:{"4":0.14241,"5.0-5.4":0,"6.2-6.4":0.01017,"7.2-7.4":0.05086,"8.2":0,"9.2":0.03052,"10.1":0.02034,"11.1-11.2":0.06103,"12.0":0.02034,"13.0":0.06103,"14.0":0.06103,"15.0":0.05086,"16.0":0.13224,"17.0":0.64085,"18.0":0.52896},I:{"0":0,"3":0.00307,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00613,"4.2-4.3":0.00307,"4.4":0,"4.4.3-4.4.4":0.0414},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01835,"9":0,"10":0,"11":0.02568,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":73.31113},S:{"2.5":0},R:{_:"0"},M:{"0":0.15194},Q:{"10.4":0},O:{"0":1.03828},H:{"0":0.94702}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.05481,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00731,"53":0,"54":0,"55":0,"56":0.00365,"57":0,"58":0,"59":0,"60":0.00365,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00365,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00365,"79":0,"80":0.00365,"81":0,"82":0.00365,"83":0,"84":0,"85":0,"86":0.00365,"87":0,"88":0.00731,"89":0.00365,"90":0,"91":0.00731,"92":0,"93":0.00365,"94":0.00365,"95":0.00365,"96":0.00365,"97":0.00365,"98":0.00365,"99":0.01096,"100":0.00731,"101":0.01096,"102":0.01096,"103":0.05116,"104":0.84773,"105":0.26674,"106":0.01096,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00365,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00731,"64":0.00365,"65":0.00365,"66":0.00365,"67":0.00365,"68":0,"69":0.00731,"70":0.00731,"71":0.00731,"72":0.00365,"73":0.00365,"74":0.01462,"75":0.00365,"76":0.00365,"77":0.00365,"78":0.00365,"79":0.01462,"80":0.03654,"81":0.01462,"83":0.01462,"84":0.01827,"85":0.01462,"86":0.01827,"87":0.01827,"88":0.01827,"89":0.01827,"90":0.00365,"91":0.01462,"92":0.01827,"93":0.00731,"94":0.01096,"95":0.01096,"96":0.01827,"97":0.01462,"98":0.01096,"99":0.01462,"100":0.02558,"101":0.02558,"102":0.04019,"103":0.14616,"104":1.81969,"105":7.27511,"106":0.08404,"107":0.00365,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.01096,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00365,"60":0.00365,"62":0,"63":0.02192,"64":0.12424,"65":0.00731,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00365,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00365,"86":0,"87":0,"88":0,"89":0.00731,"90":0.15347,"91":0.00731,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00365,"13":0,"14":0.00365,"15":0,"16":0,"17":0,"18":0.00731,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00365,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00365,"102":0.00365,"103":0.01096,"104":0.12424,"105":0.81484},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00365,"14":0.01827,"15":0.00365,_:"0","3.1":0,"3.2":0,"5.1":0.02923,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00365,"12.1":0.00365,"13.1":0.02192,"14.1":0.03654,"15.1":0.01096,"15.2-15.3":0.00731,"15.4":0.01827,"15.5":0.03654,"15.6":0.09135,"16.0":0.01827,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00081,"5.0-5.1":0.00163,"6.0-6.1":0.00081,"7.0-7.1":0,"8.1-8.4":0.00081,"9.0-9.2":0,"9.3":0.01382,"10.0-10.2":0.00081,"10.3":0.01626,"11.0-11.2":0.01219,"11.3-11.4":0.00325,"12.0-12.1":0.01057,"12.2-12.5":0.26094,"13.0-13.1":0.01138,"13.2":0.01057,"13.3":0.03658,"13.4-13.7":0.08048,"14.0-14.4":0.29183,"14.5-14.8":0.48774,"15.0-15.1":0.22517,"15.2-15.3":0.29102,"15.4":0.58285,"15.5":0.97386,"15.6":3.38411,"16.0":1.26,"16.1":0.0065},P:{"4":0.13229,"5.0-5.4":0,"6.2-6.4":0.01018,"7.2-7.4":0.05088,"8.2":0,"9.2":0.03053,"10.1":0.01018,"11.1-11.2":0.06106,"12.0":0.02035,"13.0":0.05088,"14.0":0.05088,"15.0":0.05088,"16.0":0.11194,"17.0":0.22387,"18.0":0.91585},I:{"0":0,"3":0.00373,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00373,"4.4":0,"4.4.3-4.4.4":0.02985},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02192,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.98998},H:{"0":0.9012},L:{"0":73.74146},S:{"2.5":0},R:{_:"0"},M:{"0":0.10788},Q:{"13.1":0.00635}}; 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 71b0d192dffa5b..4d9ef8add389e3 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00696,"39":0,"40":0,"41":0,"42":0,"43":0.00696,"44":0.02786,"45":0.00696,"46":0,"47":0,"48":0.00348,"49":0,"50":0.00348,"51":0,"52":0.00696,"53":0.00348,"54":0,"55":0,"56":0.02437,"57":0.00348,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00696,"69":0,"70":0.00348,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02786,"79":0.01045,"80":0.01393,"81":0.00696,"82":0.00696,"83":0.01045,"84":0,"85":0,"86":0,"87":0.09053,"88":0,"89":0,"90":0,"91":0.01045,"92":0,"93":0.00348,"94":0,"95":0.00348,"96":0,"97":0.00348,"98":0.00348,"99":0.00348,"100":0.00348,"101":0.01045,"102":0.03482,"103":0.54319,"104":0.10098,"105":0.02089,"106":0.00348,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00348,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00348,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00696,"48":0.0766,"49":0.03134,"50":0,"51":0,"52":0,"53":0.00348,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00348,"67":0,"68":0,"69":0.00348,"70":0.00348,"71":0.00348,"72":0,"73":0,"74":0.00348,"75":0.00348,"76":0.00696,"77":0.00348,"78":0.08009,"79":0.02786,"80":0.0383,"81":0.05223,"83":0.02786,"84":0.0766,"85":0.05223,"86":0.06964,"87":0.07312,"88":0.00348,"89":0.01393,"90":0.00348,"91":0.01045,"92":0.00696,"93":0.00696,"94":0.00696,"95":0.00348,"96":0.21588,"97":0.01045,"98":0.01045,"99":0.02786,"100":0.04875,"101":0.26463,"102":0.10794,"103":1.80716,"104":4.28634,"105":0.01741,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00348,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00348,"64":0.00696,"65":0,"66":0,"67":0,"68":0.00348,"69":0,"70":0.00348,"71":0.00696,"72":0,"73":0,"74":0.00348,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00348,"83":0,"84":0,"85":0.00696,"86":0,"87":0,"88":0.00696,"89":0.20196,"90":0.01393,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00348,"13":0.00348,"14":0,"15":0.00348,"16":0,"17":0,"18":0.01045,"79":0,"80":0,"81":0,"83":0.00348,"84":0.00348,"85":0,"86":0.00348,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00348,"96":0.00348,"97":0,"98":0,"99":0.00348,"100":0.00348,"101":0.0383,"102":0.00696,"103":0.32383,"104":0.86005,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00348,"9":0.01045,"10":0,"11":0,"12":0,"13":0.01393,"14":0.07312,"15":0.01045,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00348,"11.1":0.00696,"12.1":0.01393,"13.1":0.0766,"14.1":0.13928,"15.1":0.02437,"15.2-15.3":0.02089,"15.4":0.08009,"15.5":0.29249,"15.6":0.49444,"16.0":0.00348},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.02294,"7.0-7.1":0.065,"8.1-8.4":0.01529,"9.0-9.2":0.00765,"9.3":0.17971,"10.0-10.2":0.00382,"10.3":0.18353,"11.0-11.2":0.02294,"11.3-11.4":0.11853,"12.0-12.1":0.02676,"12.2-12.5":1.40323,"13.0-13.1":0.02294,"13.2":0.04588,"13.3":0.07265,"13.4-13.7":0.27912,"14.0-14.4":0.81823,"14.5-14.8":2.50441,"15.0-15.1":0.52382,"15.2-15.3":1.00559,"15.4":1.46059,"15.5":8.85528,"15.6":20.44056,"16.0":0.13382},P:{"4":0.08263,"5.0-5.4":0.01033,"6.2-6.4":0,"7.2-7.4":0.03099,"8.2":0,"9.2":0.01033,"10.1":0,"11.1-11.2":0.05165,"12.0":0.03099,"13.0":0.08263,"14.0":0.10329,"15.0":0.04132,"16.0":0.16527,"17.0":1.45642,"18.0":2.2621},I:{"0":0,"3":0,"4":0.03207,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01283,"4.2-4.3":0.0449,"4.4":0,"4.4.3-4.4.4":0.186},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00355,"9":0.11716,"10":0,"11":0.06035,"5.5":0},J:{"7":0,"10":0.00652},N:{"10":0.00652,"11":0},L:{"0":42.69643},S:{"2.5":0.00652},R:{_:"0"},M:{"0":0.63876},Q:{"10.4":0},O:{"0":0.02607},H:{"0":0.22215}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00785,"39":0.00393,"40":0,"41":0,"42":0,"43":0.00785,"44":0.03142,"45":0.00785,"46":0,"47":0,"48":0.00393,"49":0,"50":0.00393,"51":0,"52":0.00785,"53":0.00393,"54":0,"55":0,"56":0.01178,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00393,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00393,"75":0,"76":0,"77":0,"78":0.01178,"79":0,"80":0,"81":0.00785,"82":0.00393,"83":0.01178,"84":0,"85":0,"86":0,"87":0.06676,"88":0,"89":0,"90":0,"91":0.00785,"92":0,"93":0.00393,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00393,"101":0.00393,"102":0.01964,"103":0.04712,"104":0.53015,"105":0.17279,"106":0.00393,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00785,"48":0.09032,"49":0.03142,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00393,"66":0,"67":0.00393,"68":0,"69":0.00393,"70":0.00393,"71":0,"72":0,"73":0,"74":0.03534,"75":0,"76":0.00785,"77":0.00393,"78":0.10603,"79":0.02749,"80":0.03927,"81":0.05105,"83":0.02749,"84":0.04712,"85":0.04712,"86":0.05498,"87":0.05498,"88":0.00393,"89":0.01964,"90":0.00393,"91":0.00785,"92":0.00785,"93":0.01571,"94":0.00785,"95":0.00393,"96":0.20813,"97":0.01178,"98":0.01571,"99":0.01571,"100":0.0432,"101":0.4359,"102":0.07069,"103":0.23562,"104":1.63363,"105":5.91799,"106":0.14137,"107":0.00393,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00393,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00785,"65":0,"66":0,"67":0,"68":0.02356,"69":0,"70":0.00393,"71":0,"72":0.00393,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01178,"86":0,"87":0,"88":0,"89":0.01964,"90":0.21206,"91":0.01178,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00393,"13":0.00393,"14":0,"15":0.00393,"16":0,"17":0,"18":0.01178,"79":0,"80":0,"81":0,"83":0,"84":0.00393,"85":0.00393,"86":0,"87":0.00785,"88":0,"89":0.00393,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00393,"97":0,"98":0,"99":0.00393,"100":0.00393,"101":0.01571,"102":0.00785,"103":0.01964,"104":0.2474,"105":1.28806},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00393,"9":0.01571,"10":0,"11":0,"12":0,"13":0.01571,"14":0.16101,"15":0.01571,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00393,"11.1":0.00785,"12.1":0.01571,"13.1":0.1021,"14.1":0.21991,"15.1":0.03534,"15.2-15.3":0.03142,"15.4":0.12174,"15.5":0.21991,"15.6":1.11134,"16.0":0.07069,"16.1":0.00393},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.01911,"7.0-7.1":0.07642,"8.1-8.4":0.01911,"9.0-9.2":0.00764,"9.3":0.16431,"10.0-10.2":0,"10.3":0.16431,"11.0-11.2":0.02675,"11.3-11.4":0.14139,"12.0-12.1":0.03057,"12.2-12.5":1.23808,"13.0-13.1":0.01911,"13.2":0.02293,"13.3":0.06496,"13.4-13.7":0.20253,"14.0-14.4":0.75661,"14.5-14.8":2.1934,"15.0-15.1":0.44709,"15.2-15.3":0.7375,"15.4":0.86742,"15.5":2.6443,"15.6":23.19879,"16.0":4.56639,"16.1":0.03057},P:{"4":0.05223,"5.0-5.4":0.01045,"6.2-6.4":0,"7.2-7.4":0.02089,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.04179,"12.0":0.02089,"13.0":0.06268,"14.0":0.08358,"15.0":0.03134,"16.0":0.10447,"17.0":0.24028,"18.0":3.10273},I:{"0":0,"3":0,"4":0.03095,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01238,"4.2-4.3":0.03713,"4.4":0,"4.4.3-4.4.4":0.16091},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00393,"9":0.11781,"10":0,"11":0.08247,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00607},O:{"0":0.02429},H:{"0":0.20123},L:{"0":40.76115},S:{"2.5":0.00607},R:{_:"0"},M:{"0":0.57694},Q:{"13.1":0}}; 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 cc4e5a6a862f6b..8f3ece8c1ffc29 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.0038,"25":0.0038,"26":0.01518,"27":0.0038,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.0038,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00759,"53":0,"54":0,"55":0,"56":0.0038,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.0038,"67":0,"68":0.0038,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00759,"79":0.04934,"80":0.01139,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.0038,"89":0.0038,"90":0,"91":0.00759,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.0038,"98":0.0038,"99":0.0038,"100":0.0038,"101":0.00759,"102":0.02657,"103":0.47438,"104":0.08729,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.02277,"32":0.0038,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01139,"39":0,"40":0,"41":0.0038,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01139,"50":0,"51":0,"52":0,"53":0.0038,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.0038,"66":0,"67":0,"68":0.0038,"69":0.0038,"70":0,"71":0.0038,"72":0,"73":0.01898,"74":0.0038,"75":0.0038,"76":0.0038,"77":0,"78":0.0038,"79":0.05313,"80":0.11006,"81":0.00759,"83":0.00759,"84":0.0038,"85":0.01518,"86":0.01139,"87":0.01518,"88":0.0038,"89":0.02277,"90":0.02657,"91":0.03036,"92":0.03036,"93":0.02277,"94":0.02277,"95":0.01139,"96":0.03416,"97":0.01518,"98":0.01518,"99":0.02277,"100":0.02657,"101":0.02657,"102":0.12524,"103":2.87282,"104":7.08906,"105":0.02657,"106":0.0038,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00759,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0038,"64":0.0038,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.0038,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00759,"86":0,"87":0,"88":0.00759,"89":0.21252,"90":0.02277,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.0038,"79":0,"80":0,"81":0,"83":0,"84":0.0038,"85":0.0038,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0038,"93":0.0038,"94":0,"95":0,"96":0.00759,"97":0,"98":0.0038,"99":0.0038,"100":0.0038,"101":0.02657,"102":0.00759,"103":0.27704,"104":0.73244,"105":0},E:{"4":0,"5":0,"6":0,"7":0.0038,"8":0.06072,"9":0,"10":0,"11":0,"12":0,"13":0.00759,"14":0.01898,"15":0.0038,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0.0038,"7.1":0,"9.1":0.0038,"10.1":0,"11.1":0.0038,"12.1":0.0038,"13.1":0.03036,"14.1":0.06831,"15.1":0.01139,"15.2-15.3":0.01139,"15.4":0.03036,"15.5":0.12903,"15.6":0.23529,"16.0":0.0038},G:{"8":0.00603,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01004,"6.0-6.1":0.00201,"7.0-7.1":0.0442,"8.1-8.4":0.0221,"9.0-9.2":0.00402,"9.3":0.08237,"10.0-10.2":0.00402,"10.3":0.09643,"11.0-11.2":0.02009,"11.3-11.4":0.03616,"12.0-12.1":0.03013,"12.2-12.5":0.43193,"13.0-13.1":0.02009,"13.2":0.01406,"13.3":0.06027,"13.4-13.7":0.18684,"14.0-14.4":0.5585,"14.5-14.8":1.46456,"15.0-15.1":0.25112,"15.2-15.3":0.61877,"15.4":0.8257,"15.5":4.33541,"15.6":10.81039,"16.0":0.14264},P:{"4":0.15361,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03072,"8.2":0.01024,"9.2":0.06144,"10.1":0.02048,"11.1-11.2":0.12289,"12.0":0.03072,"13.0":0.13313,"14.0":0.13313,"15.0":0.08193,"16.0":0.26626,"17.0":2.4168,"18.0":3.04149},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01262,"4.2-4.3":0.01894,"4.4":0,"4.4.3-4.4.4":0.07259},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0038,"9":0.0038,"10":0.0038,"11":0.11385,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":55.94023},S:{"2.5":0},R:{_:"0"},M:{"0":0.21718},Q:{"10.4":0},O:{"0":0.04964},H:{"0":0.3231}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00399,"25":0.00797,"26":0.01594,"27":0.00399,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00399,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00399,"49":0,"50":0,"51":0,"52":0.00797,"53":0,"54":0,"55":0,"56":0.00797,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00399,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00797,"79":0.0558,"80":0.02392,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00399,"89":0,"90":0,"91":0.00399,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00399,"98":0.00797,"99":0.00399,"100":0.00399,"101":0.00399,"102":0.00797,"103":0.03986,"104":0.42252,"105":0.13552,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.01993,"32":0.00399,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00797,"39":0,"40":0,"41":0.00399,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01196,"50":0,"51":0.00399,"52":0,"53":0.00399,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00399,"64":0,"65":0.00399,"66":0,"67":0,"68":0.00399,"69":0.00399,"70":0.00399,"71":0.00797,"72":0.00399,"73":0.02392,"74":0.00399,"75":0.00399,"76":0.00399,"77":0.00399,"78":0.00399,"79":0.04783,"80":0.09965,"81":0.01196,"83":0.00797,"84":0.00797,"85":0.01594,"86":0.01196,"87":0.02392,"88":0.00399,"89":0.01594,"90":0.01993,"91":0.01993,"92":0.01594,"93":0.01594,"94":0.01594,"95":0.00797,"96":0.03587,"97":0.01993,"98":0.01594,"99":0.01594,"100":0.0279,"101":0.03587,"102":0.07573,"103":0.18336,"104":2.27999,"105":8.74927,"106":0.17538,"107":0.00399,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00797,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00399,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00399,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00797,"86":0,"87":0,"88":0,"89":0.01993,"90":0.25112,"91":0.01196,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00399,"79":0,"80":0,"81":0,"83":0,"84":0.00399,"85":0.00399,"86":0,"87":0,"88":0,"89":0,"90":0.00399,"91":0,"92":0.00399,"93":0.00399,"94":0,"95":0,"96":0.00399,"97":0,"98":0,"99":0.00399,"100":0,"101":0.01594,"102":0.00399,"103":0.01594,"104":0.17937,"105":0.88091},E:{"4":0,"5":0,"6":0,"7":0.00399,"8":0.06378,"9":0,"10":0,"11":0,"12":0,"13":0.00399,"14":0.01993,"15":0.00399,_:"0","3.1":0,"3.2":0,"5.1":0.00399,"6.1":0.00399,"7.1":0,"9.1":0.00797,"10.1":0,"11.1":0.00399,"12.1":0.00399,"13.1":0.0279,"14.1":0.06776,"15.1":0.00797,"15.2-15.3":0.00797,"15.4":0.02392,"15.5":0.05979,"15.6":0.31489,"16.0":0.03189,"16.1":0.00399},G:{"8":0.00627,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00418,"6.0-6.1":0.00209,"7.0-7.1":0.03968,"8.1-8.4":0.01671,"9.0-9.2":0,"9.3":0.08146,"10.0-10.2":0.00627,"10.3":0.09399,"11.0-11.2":0.01462,"11.3-11.4":0.02924,"12.0-12.1":0.03342,"12.2-12.5":0.41355,"13.0-13.1":0.01671,"13.2":0.01253,"13.3":0.05639,"13.4-13.7":0.15456,"14.0-14.4":0.48247,"14.5-14.8":1.31583,"15.0-15.1":0.19842,"15.2-15.3":0.37177,"15.4":0.5326,"15.5":1.27615,"15.6":11.69003,"16.0":3.63212,"16.1":0.04386},P:{"4":0.12286,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02048,"8.2":0,"9.2":0.06143,"10.1":0.01024,"11.1-11.2":0.1331,"12.0":0.03072,"13.0":0.12286,"14.0":0.12286,"15.0":0.07167,"16.0":0.21501,"17.0":0.5324,"18.0":4.83256},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01448,"4.2-4.3":0.02173,"4.4":0,"4.4.3-4.4.4":0.07966},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00399,"9":0.00399,"10":0.00399,"11":0.09168,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.0421},H:{"0":0.30746},L:{"0":54.14647},S:{"2.5":0},R:{_:"0"},M:{"0":0.22252},Q:{"13.1":0}}; 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 f7c5c06afb5698..d8b678644f9dce 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,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00519,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.17117,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00519,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.02075,"84":0.00519,"85":0,"86":0,"87":0,"88":0.00519,"89":0,"90":0,"91":0.03112,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00519,"99":0,"100":0.00519,"101":0.02075,"102":0.05187,"103":1.16708,"104":0.18673,"105":0.00519,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.01037,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.06224,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00519,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.01037,"77":0,"78":0.01037,"79":0.03631,"80":0.0415,"81":0,"83":0,"84":0.01556,"85":0.11411,"86":0.00519,"87":0.07781,"88":0,"89":0.00519,"90":0,"91":0.0415,"92":0.02075,"93":0.02075,"94":0,"95":0.00519,"96":0.00519,"97":0.00519,"98":0.06224,"99":0.07262,"100":0.03112,"101":0.01556,"102":0.29566,"103":2.53644,"104":5.91837,"105":0.03112,"106":0.00519,"107":0.01037,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00519,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01037,"89":0.26454,"90":0.03112,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00519,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00519,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.01037,"96":0.00519,"97":0.01037,"98":0,"99":0,"100":0,"101":0.03631,"102":0.02075,"103":1.81545,"104":4.36227,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02075,"14":0.09855,"15":0.02075,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.02594,"11.1":0.01037,"12.1":0.29047,"13.1":0.32159,"14.1":0.38903,"15.1":0.06743,"15.2-15.3":0.05187,"15.4":0.17636,"15.5":1.4368,"15.6":3.97843,"16.0":0.00519},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.0551,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.69939,"10.0-10.2":0.00424,"10.3":0.21194,"11.0-11.2":0.00848,"11.3-11.4":0.02967,"12.0-12.1":0.02543,"12.2-12.5":2.92474,"13.0-13.1":0.00424,"13.2":0,"13.3":0.04663,"13.4-13.7":0.35182,"14.0-14.4":0.49593,"14.5-14.8":2.31012,"15.0-15.1":0.68668,"15.2-15.3":0.75874,"15.4":0.97915,"15.5":7.94341,"15.6":24.55931,"16.0":0.284},P:{"4":0.03252,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01084,"12.0":0.04336,"13.0":0.08671,"14.0":0.02168,"15.0":0.01084,"16.0":0.26014,"17.0":1.25737,"18.0":2.14619},I:{"0":0,"3":0,"4":0.21182,"2.1":0,"2.2":0,"2.3":0.00662,"4.1":0.01324,"4.2-4.3":0.01986,"4.4":0,"4.4.3-4.4.4":0.24492},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.02075,"10":0,"11":0.08818,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":25.42208},S:{"2.5":0},R:{_:"0"},M:{"0":0.55831},Q:{"10.4":0},O:{"0":0},H:{"0":0.07291}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.02594,"49":0,"50":0,"51":0,"52":0.17639,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00519,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.09338,"79":0,"80":0,"81":0,"82":0,"83":0.02594,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00519,"92":0,"93":0,"94":0,"95":0,"96":0.00519,"97":0,"98":0.00519,"99":0,"100":0.22827,"101":0.01556,"102":0.00519,"103":0.05188,"104":0.94422,"105":0.34241,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.01038,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.05188,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.01556,"66":0,"67":0.01038,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.01038,"77":0,"78":0.01556,"79":0.02594,"80":0.01556,"81":0,"83":0,"84":0.01556,"85":0.09338,"86":0.00519,"87":0.08301,"88":0,"89":0,"90":0,"91":0.02594,"92":0.01556,"93":0.01038,"94":0.02075,"95":0.00519,"96":0.03632,"97":0.00519,"98":0.07782,"99":0.02594,"100":0.01038,"101":0.01038,"102":0.0882,"103":0.55512,"104":1.7276,"105":7.84426,"106":0.22308,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00519,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.02075,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.05188,"90":0.26459,"91":0.00519,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00519,"16":0,"17":0,"18":0.00519,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00519,"88":0,"89":0,"90":0.00519,"91":0,"92":0,"93":0,"94":0,"95":0.01038,"96":0.00519,"97":0,"98":0,"99":0.00519,"100":0.00519,"101":0.03113,"102":0.01038,"103":0.01038,"104":0.92865,"105":4.27491},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00519,"13":0.01038,"14":0.19714,"15":0.01038,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.03113,"11.1":0.02075,"12.1":0.32166,"13.1":0.39948,"14.1":0.50324,"15.1":0.0415,"15.2-15.3":0.07782,"15.4":0.14526,"15.5":1.13098,"15.6":3.53822,"16.0":0.24902,"16.1":0.01038},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.03047,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.54414,"10.0-10.2":0,"10.3":0.26554,"11.0-11.2":0.00435,"11.3-11.4":0.02612,"12.0-12.1":0.03918,"12.2-12.5":2.58573,"13.0-13.1":0,"13.2":0,"13.3":0.02612,"13.4-13.7":0.16106,"14.0-14.4":0.55284,"14.5-14.8":1.66288,"15.0-15.1":0.65296,"15.2-15.3":0.52672,"15.4":0.46143,"15.5":2.39855,"15.6":26.8237,"16.0":5.511,"16.1":0.04788},P:{"4":0.05426,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03256,"8.2":0,"9.2":0,"10.1":0.02171,"11.1-11.2":0,"12.0":0.02171,"13.0":0.09768,"14.0":0.01085,"15.0":0.02171,"16.0":0.17365,"17.0":0.08682,"18.0":3.00626},I:{"0":0,"3":0,"4":0.34058,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0262,"4.4":0,"4.4.3-4.4.4":0.17684},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00519,"10":0,"11":0.07782,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.00962},H:{"0":0.13212},L:{"0":24.68641},S:{"2.5":0.00481},R:{_:"0"},M:{"0":1.08751},Q:{"13.1":0}}; 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 3220aaa212322c..b6fb30f8156a0b 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00272,"43":0,"44":0,"45":0,"46":0,"47":0.00272,"48":0,"49":0,"50":0,"51":0,"52":0.00545,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00272,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00272,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00272,"89":0,"90":0.00272,"91":0.00817,"92":0,"93":0,"94":0,"95":0.00272,"96":0.00272,"97":0.00272,"98":0.00272,"99":0.00545,"100":0.00545,"101":0.00545,"102":0.01634,"103":0.29681,"104":0.07624,"105":0.00545,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00545,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00545,"64":0.00272,"65":0,"66":0,"67":0,"68":0.00272,"69":0.00272,"70":0.00545,"71":0.00817,"72":0.00272,"73":0.00272,"74":0.01089,"75":0.00272,"76":0,"77":0.00272,"78":0.00272,"79":0.00545,"80":0.01089,"81":0.01089,"83":0.01362,"84":0.00817,"85":0.00817,"86":0.01362,"87":0.02451,"88":0.00545,"89":0.00545,"90":0.00817,"91":0.01089,"92":0.01362,"93":0.00545,"94":0.02451,"95":0.00817,"96":0.02178,"97":0.02178,"98":0.01362,"99":0.02451,"100":0.02451,"101":0.03812,"102":0.05991,"103":1.43502,"104":3.52901,"105":0.01362,"106":0.00272,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00272,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00272,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00272,"55":0.00272,"56":0.00272,"57":0.00272,"58":0.00817,"60":0.00817,"62":0,"63":0.13615,"64":0.11981,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00272,"71":0.00272,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00272,"86":0,"87":0,"88":0.00272,"89":0.05446,"90":0.00817,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00272,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00272,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00272,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00272,"102":0.00272,"103":0.08441,"104":0.20695,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00272,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00272,"14.1":0.00817,"15.1":0.00272,"15.2-15.3":0.00272,"15.4":0.00545,"15.5":0.02178,"15.6":0.0354,"16.0":0},G:{"8":0.00214,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00036,"5.0-5.1":0,"6.0-6.1":0.00071,"7.0-7.1":0.01105,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00784,"10.0-10.2":0.00107,"10.3":0.00962,"11.0-11.2":0.00891,"11.3-11.4":0.00463,"12.0-12.1":0.00927,"12.2-12.5":0.14186,"13.0-13.1":0.00713,"13.2":0.00499,"13.3":0.01319,"13.4-13.7":0.03885,"14.0-14.4":0.17394,"14.5-14.8":0.24309,"15.0-15.1":0.1244,"15.2-15.3":0.14008,"15.4":0.16539,"15.5":0.76029,"15.6":1.62644,"16.0":0.06665},P:{"4":0.14502,"5.0-5.4":0,"6.2-6.4":0.01036,"7.2-7.4":0.09322,"8.2":0,"9.2":0.03107,"10.1":0,"11.1-11.2":0.03107,"12.0":0.01036,"13.0":0.05179,"14.0":0.05179,"15.0":0.03107,"16.0":0.10358,"17.0":0.33146,"18.0":0.25896},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01649,"4.4":0,"4.4.3-4.4.4":0.09895},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01089,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":83.41452},S:{"2.5":0.21103},R:{_:"0"},M:{"0":0.16009},Q:{"10.4":0},O:{"0":1.33897},H:{"0":2.10127}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00269,"48":0,"49":0,"50":0,"51":0,"52":0.00538,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00269,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00269,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00269,"89":0,"90":0.00269,"91":0.00538,"92":0,"93":0,"94":0,"95":0.00269,"96":0,"97":0.00269,"98":0.00269,"99":0.00269,"100":0.00269,"101":0.00269,"102":0.00808,"103":0.02154,"104":0.27728,"105":0.1023,"106":0.00538,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00538,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00269,"64":0.00269,"65":0,"66":0,"67":0,"68":0.00269,"69":0.00269,"70":0.00538,"71":0.00808,"72":0.00269,"73":0.00269,"74":0.01077,"75":0.00269,"76":0,"77":0.00269,"78":0.00269,"79":0.00538,"80":0.01077,"81":0.01077,"83":0.01615,"84":0.00808,"85":0.00808,"86":0.01615,"87":0.02692,"88":0.00538,"89":0.00808,"90":0.00808,"91":0.01346,"92":0.01346,"93":0.00538,"94":0.02423,"95":0.00808,"96":0.01884,"97":0.02154,"98":0.01346,"99":0.02423,"100":0.01884,"101":0.02692,"102":0.03769,"103":0.13998,"104":1.08488,"105":3.88456,"106":0.05384,"107":0.00269,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00269,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00269,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00269,"55":0.00269,"56":0.00269,"57":0.00269,"58":0.00808,"60":0.00538,"62":0,"63":0.03769,"64":0.19652,"65":0.01077,"66":0,"67":0,"68":0,"69":0,"70":0.00269,"71":0.00538,"72":0.00269,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00269,"86":0,"87":0,"88":0.00269,"89":0.00269,"90":0.05384,"91":0.00269,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00269,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00269,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00269,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00269,"102":0.00269,"103":0.00538,"104":0.04576,"105":0.23959},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00269,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00269,"14.1":0.00538,"15.1":0.00269,"15.2-15.3":0.00269,"15.4":0.00538,"15.5":0.01077,"15.6":0.03769,"16.0":0.00808,"16.1":0},G:{"8":0.00264,"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.01157,"8.1-8.4":0,"9.0-9.2":0.00033,"9.3":0.00694,"10.0-10.2":0.00099,"10.3":0.00727,"11.0-11.2":0.00694,"11.3-11.4":0.00397,"12.0-12.1":0.00793,"12.2-12.5":0.12855,"13.0-13.1":0.00628,"13.2":0.00463,"13.3":0.01091,"13.4-13.7":0.03239,"14.0-14.4":0.14772,"14.5-14.8":0.1963,"15.0-15.1":0.09947,"15.2-15.3":0.10278,"15.4":0.10509,"15.5":0.29247,"15.6":1.42797,"16.0":0.60642,"16.1":0.01124},P:{"4":0.14305,"5.0-5.4":0,"6.2-6.4":0.01022,"7.2-7.4":0.09196,"8.2":0,"9.2":0.03065,"10.1":0,"11.1-11.2":0.02044,"12.0":0.01022,"13.0":0.05109,"14.0":0.05109,"15.0":0.03065,"16.0":0.10218,"17.0":0.12261,"18.0":0.43936},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01426,"4.4":0,"4.4.3-4.4.4":0.07843},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01077,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":1.21313},H:{"0":1.93725},L:{"0":84.1203},S:{"2.5":0.19001},R:{_:"0"},M:{"0":0.14616},Q:{"13.1":0}}; 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 6adde88e2b88d1..bc3390c4107ab7 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00205,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00205,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00205,"69":0.0041,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00205,"92":0,"93":0,"94":0,"95":0.00205,"96":0,"97":0.00205,"98":0,"99":0.00205,"100":0.00205,"101":0.00205,"102":0.00614,"103":0.11674,"104":0.02458,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00205,"34":0,"35":0,"36":0,"37":0,"38":0.00205,"39":0,"40":0.00205,"41":0,"42":0,"43":0.01229,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00205,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00205,"57":0,"58":0,"59":0,"60":0.00205,"61":0,"62":0,"63":0.00205,"64":0.00205,"65":0.00205,"66":0,"67":0,"68":0.00205,"69":0.00205,"70":0.00205,"71":0.00205,"72":0,"73":0.00205,"74":0.00205,"75":0,"76":0.00205,"77":0,"78":0.00205,"79":0.01229,"80":0.00205,"81":0.01434,"83":0.00614,"84":0.00205,"85":0.00205,"86":0.00614,"87":0.00614,"88":0.00614,"89":0.01024,"90":0.0041,"91":0.0041,"92":0.01434,"93":0.00205,"94":0.0041,"95":0.01024,"96":0.00819,"97":0.00819,"98":0.00819,"99":0.00614,"100":0.00819,"101":0.01024,"102":0.02867,"103":0.55296,"104":1.59334,"105":0.00614,"106":0.00205,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01024,"64":0.01024,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00205,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0041,"86":0,"87":0,"88":0.00205,"89":0.10035,"90":0.01229,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.0041,"79":0,"80":0,"81":0,"83":0,"84":0.00205,"85":0,"86":0,"87":0,"88":0,"89":0.00205,"90":0.00205,"91":0,"92":0.0041,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.01638,"102":0.00205,"103":0.11059,"104":0.21299,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0041,"14":0.01434,"15":0.00614,_:"0","3.1":0,"3.2":0,"5.1":0.01024,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01024,"14.1":0.02867,"15.1":0.00614,"15.2-15.3":0.00614,"15.4":0.02253,"15.5":0.1065,"15.6":0.14746,"16.0":0.0041},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.08706,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07491,"10.0-10.2":0,"10.3":0.08706,"11.0-11.2":0.0162,"11.3-11.4":0.01822,"12.0-12.1":0.04252,"12.2-12.5":0.90096,"13.0-13.1":0.01215,"13.2":0.03442,"13.3":0.07289,"13.4-13.7":0.16602,"14.0-14.4":0.52033,"14.5-14.8":1.18643,"15.0-15.1":0.37658,"15.2-15.3":0.57904,"15.4":1.1682,"15.5":5.04332,"15.6":9.5319,"16.0":0.30774},P:{"4":0.16587,"5.0-5.4":0.02073,"6.2-6.4":0.01037,"7.2-7.4":0.19697,"8.2":0,"9.2":0.0311,"10.1":0,"11.1-11.2":0.1555,"12.0":0.04147,"13.0":0.23843,"14.0":0.1555,"15.0":0.10367,"16.0":0.29027,"17.0":1.40986,"18.0":1.7105},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00255,"4.2-4.3":0.01533,"4.4":0,"4.4.3-4.4.4":0.15584},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01229,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":68.794},S:{"2.5":0},R:{_:"0"},M:{"0":0.11133},Q:{"10.4":0},O:{"0":0.34194},H:{"0":0.32372}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00794,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00199,"69":0.00596,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00199,"89":0,"90":0,"91":0.00199,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00199,"100":0.00199,"101":0.00199,"102":0.00596,"103":0.00794,"104":0.10521,"105":0.03772,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00199,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00199,"39":0,"40":0.00199,"41":0,"42":0,"43":0.01191,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00199,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00199,"57":0,"58":0,"59":0,"60":0.00199,"61":0,"62":0,"63":0.00199,"64":0.00199,"65":0.00199,"66":0,"67":0,"68":0.00199,"69":0.00199,"70":0.00199,"71":0.00199,"72":0.00199,"73":0.00199,"74":0.00199,"75":0,"76":0.00199,"77":0.00199,"78":0.00397,"79":0.01191,"80":0.00199,"81":0.01191,"83":0.00596,"84":0.00199,"85":0.00397,"86":0.00596,"87":0.00596,"88":0.00596,"89":0.00596,"90":0.00397,"91":0.00199,"92":0.00993,"93":0.00199,"94":0.00397,"95":0.00794,"96":0.00794,"97":0.00794,"98":0.00794,"99":0.00397,"100":0.00993,"101":0.00596,"102":0.01588,"103":0.04169,"104":0.41288,"105":1.66343,"106":0.03573,"107":0.00199,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00199,"64":0.01787,"65":0.00199,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00199,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00199,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00397,"86":0,"87":0,"88":0,"89":0.00596,"90":0.10521,"91":0.00794,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00397,"79":0,"80":0,"81":0,"83":0,"84":0.00199,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00397,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00596,"102":0.00199,"103":0.00397,"104":0.09131,"105":0.23026},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00199,"14":0.01191,"15":0.00199,_:"0","3.1":0,"3.2":0,"5.1":0.03772,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00596,"14.1":0.01985,"15.1":0.00397,"15.2-15.3":0.00397,"15.4":0.01588,"15.5":0.0397,"15.6":0.17667,"16.0":0.00794,"16.1":0.00397},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00191,"6.0-6.1":0,"7.0-7.1":0.11448,"8.1-8.4":0,"9.0-9.2":0.00954,"9.3":0.06678,"10.0-10.2":0,"10.3":0.06678,"11.0-11.2":0.01145,"11.3-11.4":0.01717,"12.0-12.1":0.04198,"12.2-12.5":0.76514,"13.0-13.1":0.00954,"13.2":0.00954,"13.3":0.05152,"13.4-13.7":0.12593,"14.0-14.4":0.42169,"14.5-14.8":0.9216,"15.0-15.1":0.26904,"15.2-15.3":0.37589,"15.4":0.64684,"15.5":1.80123,"15.6":8.8058,"16.0":3.69596,"16.1":0.04389},P:{"4":0.26981,"5.0-5.4":0.01038,"6.2-6.4":0.01038,"7.2-7.4":0.17641,"8.2":0,"9.2":0.03113,"10.1":0.01038,"11.1-11.2":0.13491,"12.0":0.04151,"13.0":0.2283,"14.0":0.16604,"15.0":0.10377,"16.0":0.28019,"17.0":0.49811,"18.0":2.94716},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00248,"4.2-4.3":0.00869,"4.4":0,"4.4.3-4.4.4":0.13036},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0139,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.3206},H:{"0":0.34905},L:{"0":70.39344},S:{"2.5":0},R:{_:"0"},M:{"0":0.14427},Q:{"13.1":0}}; 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 a88c801e3f746d..1a7566a61f9a7d 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00251,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00251,"48":0.00251,"49":0,"50":0,"51":0,"52":0.01504,"53":0,"54":0,"55":0,"56":0.00251,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.02006,"69":0,"70":0,"71":0,"72":0.00501,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00501,"79":0.00251,"80":0.00251,"81":0.00501,"82":0.00501,"83":0.00251,"84":0.00251,"85":0.00251,"86":0.00251,"87":0.00251,"88":0.00501,"89":0.00501,"90":0.00251,"91":0.02758,"92":0.00251,"93":0.00501,"94":0.05515,"95":0.00752,"96":0.00752,"97":0.00752,"98":0.00752,"99":0.01755,"100":0.01504,"101":0.02507,"102":0.05766,"103":0.80224,"104":0.17298,"105":0.00251,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00251,"39":0,"40":0.00251,"41":0,"42":0,"43":0.00251,"44":0,"45":0,"46":0.00251,"47":0,"48":0,"49":0.00501,"50":0,"51":0.00251,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00251,"59":0,"60":0,"61":0,"62":0.00251,"63":0.00501,"64":0.00251,"65":0,"66":0,"67":0,"68":0,"69":0.00251,"70":0.00251,"71":0.00251,"72":0.00251,"73":0,"74":0.00251,"75":0.00251,"76":0.00251,"77":0.00752,"78":0.00501,"79":0.00752,"80":0.00752,"81":0.02006,"83":0.01755,"84":0.02758,"85":0.02507,"86":0.0351,"87":0.02758,"88":0.00501,"89":0.01003,"90":0.00501,"91":0.01003,"92":0.01003,"93":0.00501,"94":0.00501,"95":0.01254,"96":0.01504,"97":0.01254,"98":0.01003,"99":0.01254,"100":0.02256,"101":0.01755,"102":0.04011,"103":0.80976,"104":2.48945,"105":0.01003,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00251,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00251,"65":0,"66":0,"67":0,"68":0.00251,"69":0,"70":0.00251,"71":0.00251,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00501,"80":0,"81":0,"82":0,"83":0,"84":0.00251,"85":0.00251,"86":0.00251,"87":0,"88":0.00251,"89":0.06769,"90":0.01254,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00251,"15":0,"16":0,"17":0,"18":0.00752,"79":0,"80":0,"81":0,"83":0,"84":0.00251,"85":0,"86":0.00251,"87":0,"88":0,"89":0.00251,"90":0.00251,"91":0,"92":0.00752,"93":0,"94":0,"95":0,"96":0.00251,"97":0,"98":0,"99":0.00251,"100":0,"101":0.00251,"102":0.00251,"103":0.05014,"104":0.12786,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00251,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.13287,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00251,"14.1":0.00251,"15.1":0.00251,"15.2-15.3":0,"15.4":0.00251,"15.5":0.00752,"15.6":0.01003,"16.0":0},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.00204,"8.1-8.4":0,"9.0-9.2":0.00068,"9.3":0.00679,"10.0-10.2":0.00407,"10.3":0.02782,"11.0-11.2":0.01832,"11.3-11.4":0.01493,"12.0-12.1":0.03257,"12.2-12.5":0.53941,"13.0-13.1":0.02375,"13.2":0.01153,"13.3":0.06853,"13.4-13.7":0.12281,"14.0-14.4":0.4356,"14.5-14.8":0.53873,"15.0-15.1":0.36911,"15.2-15.3":0.46478,"15.4":0.59234,"15.5":1.66166,"15.6":1.8055,"16.0":0.04071},P:{"4":0.42651,"5.0-5.4":0.04062,"6.2-6.4":0.05078,"7.2-7.4":0.47729,"8.2":0.07109,"9.2":0.21326,"10.1":0.08124,"11.1-11.2":0.38589,"12.0":0.17264,"13.0":0.51791,"14.0":0.69055,"15.0":0.34527,"16.0":1.06629,"17.0":2.81296,"18.0":1.59435},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00178,"4.2-4.3":0.01207,"4.4":0,"4.4.3-4.4.4":0.04367},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00251,"9":0.00251,"10":0,"11":0.53399,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":74.04197},S:{"2.5":0},R:{_:"0"},M:{"0":1.09398},Q:{"10.4":0},O:{"0":0.05994},H:{"0":0.42563}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00218,"48":0,"49":0,"50":0,"51":0,"52":0.01092,"53":0,"54":0,"55":0,"56":0.00218,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01529,"69":0,"70":0,"71":0,"72":0.00218,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00218,"79":0,"80":0.00218,"81":0.00218,"82":0.00437,"83":0.00218,"84":0.00218,"85":0.00218,"86":0.00218,"87":0.00218,"88":0.00437,"89":0.00655,"90":0.00218,"91":0.01966,"92":0.00218,"93":0.00437,"94":0.06552,"95":0.00655,"96":0.00655,"97":0.00655,"98":0.00655,"99":0.0131,"100":0.01092,"101":0.01529,"102":0.02621,"103":0.06552,"104":0.6552,"105":0.16162,"106":0.00218,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00218,"39":0,"40":0,"41":0,"42":0,"43":0.00218,"44":0,"45":0,"46":0.00218,"47":0,"48":0,"49":0.00437,"50":0,"51":0.00218,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00218,"59":0,"60":0,"61":0,"62":0.00218,"63":0.00218,"64":0.00218,"65":0,"66":0,"67":0,"68":0,"69":0.00218,"70":0.00218,"71":0.00218,"72":0.00218,"73":0,"74":0.00218,"75":0,"76":0.00218,"77":0.00655,"78":0.00437,"79":0.00437,"80":0.00437,"81":0.01747,"83":0.00437,"84":0.00874,"85":0.00437,"86":0.0131,"87":0.00874,"88":0.00437,"89":0.00655,"90":0.00437,"91":0.00655,"92":0.00874,"93":0.00218,"94":0.00437,"95":0.00874,"96":0.0131,"97":0.0131,"98":0.00655,"99":0.00874,"100":0.01529,"101":0.01092,"102":0.01747,"103":0.06115,"104":0.65957,"105":1.84985,"106":0.01966,"107":0.00218,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00218,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00218,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00218,"71":0.00218,"72":0.00218,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00218,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00218,"86":0,"87":0,"88":0,"89":0.00437,"90":0.05678,"91":0.00218,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00218,"15":0,"16":0.00218,"17":0,"18":0.00437,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00218,"90":0.00218,"91":0,"92":0.00437,"93":0,"94":0,"95":0,"96":0.00218,"97":0,"98":0,"99":0.00218,"100":0,"101":0.00218,"102":0.00218,"103":0.00437,"104":0.02621,"105":0.10702},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00218,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.05897,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00218,"14.1":0.00218,"15.1":0.00218,"15.2-15.3":0.00218,"15.4":0.00218,"15.5":0.00437,"15.6":0.0131,"16.0":0.00218,"16.1":0},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.00143,"8.1-8.4":0,"9.0-9.2":0.00072,"9.3":0.00502,"10.0-10.2":0.00861,"10.3":0.02582,"11.0-11.2":0.01363,"11.3-11.4":0.01363,"12.0-12.1":0.02654,"12.2-12.5":0.60108,"13.0-13.1":0.02295,"13.2":0.01721,"13.3":0.06671,"13.4-13.7":0.13126,"14.0-14.4":0.43682,"14.5-14.8":0.5272,"15.0-15.1":0.33927,"15.2-15.3":0.40096,"15.4":0.4942,"15.5":0.97119,"15.6":2.36271,"16.0":0.54943,"16.1":0.00359},P:{"4":0.35448,"5.0-5.4":0.04051,"6.2-6.4":0.05064,"7.2-7.4":0.44563,"8.2":0.0709,"9.2":0.20256,"10.1":0.08102,"11.1-11.2":0.38486,"12.0":0.16205,"13.0":0.48614,"14.0":0.64819,"15.0":0.31397,"16.0":0.99255,"17.0":1.55971,"18.0":3.37263},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0013,"4.2-4.3":0.00848,"4.4":0,"4.4.3-4.4.4":0.03458},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00218,"9":0,"10":0,"11":0.39094,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.06253},H:{"0":0.42918},L:{"0":75.04261},S:{"2.5":0},R:{_:"0"},M:{"0":1.29746},Q:{"13.1":0}}; 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 81d43c069b1a4b..c042c32ca46141 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00543,"39":0.00543,"40":0.00543,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01628,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00543,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03257,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.05971,"92":0,"93":0,"94":0,"95":0.01628,"96":0,"97":0.00543,"98":0.01086,"99":0.01086,"100":0.00543,"101":0.01086,"102":0.08142,"103":1.85095,"104":0.31482,"105":0.00543,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00543,"39":0,"40":0,"41":0,"42":0,"43":0.00543,"44":0.01086,"45":0.00543,"46":0.00543,"47":0.00543,"48":0,"49":0.01086,"50":0,"51":0.00543,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.01086,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.01086,"66":0,"67":0.00543,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00543,"74":0,"75":0,"76":0,"77":0.00543,"78":0.00543,"79":0.01628,"80":0.00543,"81":0.00543,"83":0.00543,"84":0.01628,"85":0.02171,"86":0,"87":0.07056,"88":0.00543,"89":0.00543,"90":0.00543,"91":0.01086,"92":0.01086,"93":0,"94":0.01086,"95":0.02714,"96":0.02714,"97":0.00543,"98":0.07056,"99":0.03257,"100":0.04342,"101":0.15198,"102":0.28226,"103":4.74407,"104":10.72573,"105":0.02171,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01628,"89":0.84134,"90":0.08142,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00543,"15":0,"16":0,"17":0,"18":0.00543,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00543,"95":0,"96":0,"97":0,"98":0,"99":0.00543,"100":0.00543,"101":0.00543,"102":0.01628,"103":0.80334,"104":2.6163,"105":0.01628},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.01086,"10":0,"11":0,"12":0,"13":0.01628,"14":0.10313,"15":0.04342,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.03257,"11.1":0.04342,"12.1":0.07056,"13.1":0.29854,"14.1":0.45052,"15.1":0.10313,"15.2-15.3":0.09228,"15.4":0.30397,"15.5":0.87391,"15.6":1.60126,"16.0":0.01086},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.01252,"8.1-8.4":0.02503,"9.0-9.2":0,"9.3":0.08762,"10.0-10.2":0,"10.3":0.0751,"11.0-11.2":0.12517,"11.3-11.4":0.01878,"12.0-12.1":0.04381,"12.2-12.5":0.46626,"13.0-13.1":0.00626,"13.2":0,"13.3":0.04068,"13.4-13.7":0.1815,"14.0-14.4":0.25973,"14.5-14.8":1.61783,"15.0-15.1":0.30354,"15.2-15.3":0.55388,"15.4":0.95443,"15.5":7.42889,"15.6":18.87577,"16.0":0.20027},P:{"4":0.04123,"5.0-5.4":0,"6.2-6.4":0.01031,"7.2-7.4":0,"8.2":0,"9.2":0.01031,"10.1":0.02061,"11.1-11.2":0.01031,"12.0":0,"13.0":0.03092,"14.0":0.02061,"15.0":0.01031,"16.0":0.07215,"17.0":1.63884,"18.0":2.22635},I:{"0":0,"3":0.00448,"4":0.03361,"2.1":0.00448,"2.2":0.01569,"2.3":0.02017,"4.1":0.02017,"4.2-4.3":0.03809,"4.4":0,"4.4.3-4.4.4":0.14789},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00543,"8":0.038,"9":0.00543,"10":0.00543,"11":0.04885,"5.5":0},J:{"7":0,"10":0.00457},N:{"10":0.01143,"11":0.01143},L:{"0":32.50843},S:{"2.5":0.01829},R:{_:"0"},M:{"0":0.41148},Q:{"10.4":0},O:{"0":0.02743},H:{"0":0.17747}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00595,"40":0.00595,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0119,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00595,"78":0.05952,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.04762,"92":0,"93":0,"94":0,"95":0.0119,"96":0,"97":0,"98":0,"99":0,"100":0.00595,"101":0.00595,"102":0.02381,"103":0.19642,"104":1.41062,"105":0.52973,"106":0,"107":0,"3.5":0,"3.6":0.00595},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00595,"39":0.00595,"40":0.00595,"41":0.0119,"42":0,"43":0.00595,"44":0.0119,"45":0.00595,"46":0.00595,"47":0.00595,"48":0,"49":0.00595,"50":0,"51":0.00595,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00595,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00595,"74":0,"75":0.00595,"76":0,"77":0.00595,"78":0.00595,"79":0.01786,"80":0.0119,"81":0.00595,"83":0,"84":0.0119,"85":0.02976,"86":0.00595,"87":0.07142,"88":0.00595,"89":0,"90":0.00595,"91":0.00595,"92":0.01786,"93":0.0119,"94":0.00595,"95":0.0119,"96":0.00595,"97":0.02381,"98":0.02381,"99":0.02381,"100":0.08333,"101":0.11309,"102":0.09523,"103":0.5833,"104":3.8688,"105":15.55853,"106":0.33331,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00595,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00595,"82":0,"83":0.00595,"84":0,"85":0,"86":0,"87":0,"88":0.00595,"89":0.08928,"90":0.92256,"91":0.02976,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00595,"13":0,"14":0.00595,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00595,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00595,"100":0.00595,"101":0.00595,"102":0,"103":0.02381,"104":0.41664,"105":2.33318},E:{"4":0,"5":0,"6":0,"7":0,"8":0.05357,"9":0.0119,"10":0,"11":0,"12":0.00595,"13":0.02381,"14":0.26189,"15":0.05357,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00595,"11.1":0.05952,"12.1":0.05357,"13.1":0.40474,"14.1":0.71424,"15.1":0.20237,"15.2-15.3":0.16666,"15.4":0.55354,"15.5":0.73805,"15.6":2.54746,"16.0":0.25594,"16.1":0.00595},G:{"8":0.00315,"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.01889,"8.1-8.4":0.02834,"9.0-9.2":0.00315,"9.3":0.07241,"10.0-10.2":0,"10.3":0.05352,"11.0-11.2":0.12279,"11.3-11.4":0.01259,"12.0-12.1":0.03148,"12.2-12.5":0.33374,"13.0-13.1":0,"13.2":0.0063,"13.3":0.01889,"13.4-13.7":0.09445,"14.0-14.4":0.31485,"14.5-14.8":1.36014,"15.0-15.1":0.28336,"15.2-15.3":0.34633,"15.4":0.59191,"15.5":1.72536,"15.6":19.42924,"16.0":5.96636,"16.1":0.06927},P:{"4":0.05128,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.01026,"11.1-11.2":0.01026,"12.0":0,"13.0":0.19487,"14.0":0.02051,"15.0":0,"16.0":0.05128,"17.0":0.17436,"18.0":2.98465},I:{"0":0,"3":0.00266,"4":0.01461,"2.1":0.00266,"2.2":0.0093,"2.3":0.01328,"4.1":0.01593,"4.2-4.3":0.03187,"4.4":0,"4.4.3-4.4.4":0.14209},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00617,"8":0.0679,"9":0.01234,"10":0.01234,"11":0.06172,"5.5":0},N:{"10":0.01417,"11":0.01417},J:{"7":0,"10":0.0081},O:{"0":0.02024},H:{"0":0.21845},L:{"0":27.58941},S:{"2.5":0.01619},R:{_:"0"},M:{"0":0.31574},Q:{"13.1":0}}; 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 70e5c0ec6a863b..71c79d7d1d82c3 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00376,"48":0.00751,"49":0,"50":0,"51":0,"52":0.03381,"53":0,"54":0,"55":0,"56":0.00376,"57":0,"58":0,"59":0.00376,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00376,"67":0,"68":0.00376,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02254,"79":0,"80":0.00376,"81":0.00376,"82":0,"83":0,"84":0.00376,"85":0,"86":0,"87":0.00376,"88":0.00376,"89":0.00376,"90":0,"91":0.03006,"92":0,"93":0.00376,"94":0.03381,"95":0.00751,"96":0.00751,"97":0.00376,"98":0.00376,"99":0.00751,"100":0.01127,"101":0.01503,"102":0.06387,"103":1.05947,"104":0.22166,"105":0.00376,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00376,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03006,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00376,"61":0,"62":0,"63":0.04133,"64":0,"65":0.00376,"66":0.04133,"67":0.00751,"68":0.00376,"69":0.03381,"70":0.00376,"71":0,"72":0.00376,"73":0.00376,"74":0.01879,"75":0.00376,"76":0.00376,"77":0.00376,"78":0.00376,"79":0.03757,"80":0.00751,"81":0.0263,"83":0.01127,"84":0.01127,"85":0.01879,"86":0.01879,"87":0.03757,"88":0.00751,"89":0.02254,"90":0.00751,"91":0.00751,"92":0.05636,"93":0.00376,"94":0.00751,"95":0.01127,"96":0.0263,"97":0.01503,"98":0.01879,"99":0.01503,"100":0.03006,"101":0.03006,"102":0.0789,"103":2.3331,"104":5.63926,"105":0.02254,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00376,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00376,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00376,"64":0.00376,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00376,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01503,"86":0,"87":0,"88":0.00751,"89":0.26299,"90":0.02254,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00376,"16":0.00376,"17":0.00376,"18":0.00376,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00376,"93":0,"94":0,"95":0.00376,"96":0,"97":0.00376,"98":0.00376,"99":0.00376,"100":0.00751,"101":0.01503,"102":0.01127,"103":0.33437,"104":0.92047,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01127,"14":0.06011,"15":0.02254,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00376,"10.1":0.00376,"11.1":0.02254,"12.1":0.02254,"13.1":0.09017,"14.1":0.13901,"15.1":0.0263,"15.2-15.3":0.03006,"15.4":0.08265,"15.5":0.29305,"15.6":0.48841,"16.0":0.00751},G:{"8":0.00239,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00239,"6.0-6.1":0,"7.0-7.1":0.01197,"8.1-8.4":0.00718,"9.0-9.2":0.00958,"9.3":0.13169,"10.0-10.2":0.00479,"10.3":0.11493,"11.0-11.2":0.02873,"11.3-11.4":0.05507,"12.0-12.1":0.04549,"12.2-12.5":0.61056,"13.0-13.1":0.02394,"13.2":0.01676,"13.3":0.07901,"13.4-13.7":0.20831,"14.0-14.4":0.61535,"14.5-14.8":1.41506,"15.0-15.1":0.45971,"15.2-15.3":0.62971,"15.4":1.09421,"15.5":5.69135,"15.6":12.45297,"16.0":0.21549},P:{"4":0.13369,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.02057,"10.1":0.02057,"11.1-11.2":0.07198,"12.0":0.03085,"13.0":0.07198,"14.0":0.1234,"15.0":0.0617,"16.0":0.19539,"17.0":1.52196,"18.0":1.97443},I:{"0":0,"3":0,"4":0.0243,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0243,"4.2-4.3":0.05832,"4.4":0,"4.4.3-4.4.4":0.15065},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00376,"9":0.00376,"10":0,"11":0.09017,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":54.62337},S:{"2.5":0},R:{_:"0"},M:{"0":0.4058},Q:{"10.4":0},O:{"0":0.12486},H:{"0":0.2837}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00454,"48":0.00454,"49":0,"50":0,"51":0,"52":0.03628,"53":0,"54":0,"55":0,"56":0.00454,"57":0,"58":0,"59":0.00454,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00907,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03175,"79":0.00454,"80":0.00454,"81":0.00454,"82":0.00454,"83":0.00454,"84":0.00454,"85":0.00454,"86":0,"87":0.00907,"88":0.00454,"89":0.00454,"90":0,"91":0.03175,"92":0,"93":0.00454,"94":0.01361,"95":0.00907,"96":0.00907,"97":0.00454,"98":0.00454,"99":0.00454,"100":0.02268,"101":0.00907,"102":0.02268,"103":0.06349,"104":1.14736,"105":0.47618,"106":0.00454,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00454,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03628,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00454,"61":0,"62":0,"63":0.04082,"64":0,"65":0.00454,"66":0.04082,"67":0.01361,"68":0.00454,"69":0.00907,"70":0,"71":0.00454,"72":0,"73":0.00454,"74":0.01814,"75":0,"76":0.00454,"77":0.00907,"78":0.00454,"79":0.02721,"80":0.00907,"81":0.02721,"83":0.01814,"84":0.02721,"85":0.03628,"86":0.02721,"87":0.04535,"88":0.00907,"89":0.01814,"90":0.00454,"91":0.00907,"92":0.05442,"93":0.00454,"94":0.02268,"95":0.01361,"96":0.02268,"97":0.01814,"98":0.02268,"99":0.01814,"100":0.03175,"101":0.03175,"102":0.06803,"103":0.23129,"104":2.06796,"105":10.12666,"106":0.20861,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00454,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00907,"65":0,"66":0,"67":0,"68":0.00454,"69":0,"70":0.00454,"71":0.00454,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00454,"86":0,"87":0,"88":0.00454,"89":0.03175,"90":0.38548,"91":0.02268,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00454,"16":0,"17":0.00454,"18":0.00454,"79":0,"80":0,"81":0,"83":0,"84":0.00454,"85":0.00454,"86":0.00454,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00454,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00454,"99":0.00454,"100":0.00454,"101":0.00907,"102":0.00907,"103":0.02268,"104":0.23129,"105":1.57818},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01361,"14":0.08617,"15":0.02268,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00454,"10.1":0,"11.1":0.03175,"12.1":0.02721,"13.1":0.11791,"14.1":0.1814,"15.1":0.04082,"15.2-15.3":0.03628,"15.4":0.09977,"15.5":0.21315,"15.6":0.78002,"16.0":0.18594,"16.1":0.00907},G:{"8":0.00238,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00238,"6.0-6.1":0.00238,"7.0-7.1":0.00477,"8.1-8.4":0.00954,"9.0-9.2":0.00477,"9.3":0.11208,"10.0-10.2":0.00715,"10.3":0.10969,"11.0-11.2":0.02146,"11.3-11.4":0.04292,"12.0-12.1":0.04769,"12.2-12.5":0.50554,"13.0-13.1":0.02623,"13.2":0.01669,"13.3":0.05485,"13.4-13.7":0.16692,"14.0-14.4":0.49839,"14.5-14.8":1.16131,"15.0-15.1":0.32908,"15.2-15.3":0.46023,"15.4":0.64862,"15.5":1.70023,"15.6":11.81341,"16.0":5.57524,"16.1":0.05962},P:{"4":0.12316,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.02053,"10.1":0.02053,"11.1-11.2":0.05132,"12.0":0.03079,"13.0":0.06158,"14.0":0.07184,"15.0":0.05132,"16.0":0.12316,"17.0":0.2771,"18.0":2.60684},I:{"0":0,"3":0,"4":0.03346,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0223,"4.2-4.3":0.02788,"4.4":0,"4.4.3-4.4.4":0.16171},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00469,"9":0.00469,"10":0,"11":0.12667,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.09837},H:{"0":0.25352},L:{"0":49.57421},S:{"2.5":0},R:{_:"0"},M:{"0":0.34976},Q:{"13.1":0}}; 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 5db830a2fb8299..3f5ab6dbbcdf03 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00475,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.00475,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00951,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00475,"101":0,"102":0.03328,"103":0.93178,"104":0.12836,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00951,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00475,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00951,"78":0,"79":0.00475,"80":0.03803,"81":0,"83":0.01426,"84":0.00951,"85":0,"86":0,"87":0.02377,"88":0,"89":0,"90":0.02852,"91":0.00475,"92":0,"93":0,"94":0.00951,"95":0.00475,"96":0.00475,"97":0,"98":0.01426,"99":0.02377,"100":0.03328,"101":0.0618,"102":0.09508,"103":2.03947,"104":5.29596,"105":0.01902,"106":0.00951,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00475,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.03328,"78":0,"79":0.00475,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01426,"89":0.25196,"90":0.00951,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00475,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00475,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.02377,"101":0.03803,"102":0.00475,"103":1.32637,"104":3.36583,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00475,"13":0.01426,"14":0.27098,"15":0.02852,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00951,"10.1":0,"11.1":0.02852,"12.1":0.05229,"13.1":0.13787,"14.1":0.50392,"15.1":0.03803,"15.2-15.3":0.07606,"15.4":0.32803,"15.5":1.32637,"15.6":2.98076,"16.0":0.00951},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.40715,"7.0-7.1":0,"8.1-8.4":0.00993,"9.0-9.2":0.04469,"9.3":0.56604,"10.0-10.2":0.0149,"10.3":0.98313,"11.0-11.2":0.0149,"11.3-11.4":0.26316,"12.0-12.1":0.00993,"12.2-12.5":2.22941,"13.0-13.1":0,"13.2":0,"13.3":0.06951,"13.4-13.7":0.22344,"14.0-14.4":0.83417,"14.5-14.8":2.48264,"15.0-15.1":0.50646,"15.2-15.3":0.68024,"15.4":1.30091,"15.5":9.65749,"15.6":29.14128,"16.0":0.20854},P:{"4":0.10913,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01091,"12.0":0.01091,"13.0":0.04365,"14.0":0.01091,"15.0":0.01091,"16.0":0.06548,"17.0":1.76785,"18.0":2.59722},I:{"0":0,"3":0,"4":0.00337,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00337,"4.4":0,"4.4.3-4.4.4":0.42736},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.52294,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":21.5554},S:{"2.5":0},R:{_:"0"},M:{"0":0.24656},Q:{"10.4":0},O:{"0":0.01049},H:{"0":0.04967}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00982,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00491,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00491,"85":0,"86":0,"87":0.00491,"88":0,"89":0,"90":0,"91":0.01964,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00491,"103":0.06384,"104":0.67772,"105":0.30939,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01473,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00491,"76":0.00491,"77":0,"78":0,"79":0.02947,"80":0.01964,"81":0.00491,"83":0.00491,"84":0.00491,"85":0,"86":0.00491,"87":0.03438,"88":0,"89":0,"90":0.01473,"91":0,"92":0.03438,"93":0,"94":0.00491,"95":0,"96":0.00491,"97":0.00491,"98":0.08349,"99":0.00491,"100":0.00982,"101":0.02947,"102":0.03929,"103":0.24064,"104":1.81707,"105":7.39106,"106":0.24555,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.02947,"90":0.40761,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00491,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00982,"101":0.01473,"102":0,"103":0.02947,"104":0.7121,"105":3.81585},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.02456,"13":0.00491,"14":0.24555,"15":0.0442,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00491,"10.1":0.01473,"11.1":0.00982,"12.1":0.03929,"13.1":0.1768,"14.1":0.52057,"15.1":0.02947,"15.2-15.3":0.0442,"15.4":0.19644,"15.5":0.4469,"15.6":3.60467,"16.0":0.14242,"16.1":0.00491},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.07655,"7.0-7.1":0,"8.1-8.4":0.01021,"9.0-9.2":0.03572,"9.3":0.34194,"10.0-10.2":0.01531,"10.3":1.04112,"11.0-11.2":0.0051,"11.3-11.4":0.21945,"12.0-12.1":0,"12.2-12.5":2.10776,"13.0-13.1":0,"13.2":0.0051,"13.3":0.05104,"13.4-13.7":0.19904,"14.0-14.4":0.85739,"14.5-14.8":2.47521,"15.0-15.1":0.36745,"15.2-15.3":0.48994,"15.4":0.78084,"15.5":2.69976,"15.6":30.24349,"16.0":7.91046,"16.1":0.01531},P:{"4":0.19364,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01076,"12.0":0,"13.0":0.10758,"14.0":0.02152,"15.0":0.01076,"16.0":0.03227,"17.0":0.11833,"18.0":3.37788},I:{"0":0,"3":0,"4":0.01071,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01071,"4.4":0,"4.4.3-4.4.4":0.35708},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.4911,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.01018},H:{"0":0.03854},L:{"0":20.51518},S:{"2.5":0},R:{_:"0"},M:{"0":0.23409},Q:{"13.1":0}}; 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 58805356667df8..7c959ce71b971d 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00392,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.02352,"74":0,"75":0,"76":0,"77":0,"78":0.00784,"79":0.00784,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00392,"87":0,"88":0.00392,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00392,"99":0.00392,"100":0,"101":0.00392,"102":0.00784,"103":0.25088,"104":0.06664,"105":0.00392,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01568,"50":0,"51":0,"52":0,"53":0.00392,"54":0,"55":0,"56":0.00392,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.01176,"67":0,"68":0.00392,"69":0.00392,"70":0.00392,"71":0,"72":0,"73":0.02352,"74":0.00784,"75":0.01176,"76":0.07056,"77":0.00392,"78":0,"79":0.03528,"80":0.00392,"81":0.02352,"83":0.03136,"84":0.00784,"85":0,"86":0.00784,"87":0.01568,"88":0.00392,"89":0.01176,"90":0.00784,"91":0.0196,"92":0.01176,"93":0.098,"94":0.00392,"95":0.01568,"96":0.02352,"97":0.01176,"98":0.02352,"99":0.02744,"100":0.03136,"101":0.06272,"102":0.09408,"103":2.85376,"104":6.29552,"105":0.04312,"106":0.0196,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00392,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00392,"64":0.00392,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00784,"89":0.30184,"90":0.03136,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00392,"13":0,"14":0,"15":0.00392,"16":0,"17":0,"18":0.00392,"79":0,"80":0,"81":0,"83":0,"84":0.00392,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00392,"93":0,"94":0.00392,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.02352,"102":0.00392,"103":0.39984,"104":1.0192,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00392,"14":0.01176,"15":0.00392,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00392,"12.1":0.00784,"13.1":0.06272,"14.1":0.04704,"15.1":0.01176,"15.2-15.3":0.01568,"15.4":0.04312,"15.5":0.14504,"15.6":0.28224,"16.0":0.00392},G:{"8":0,"3.2":0.00365,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00365,"6.0-6.1":0,"7.0-7.1":0.16961,"8.1-8.4":0.01641,"9.0-9.2":0,"9.3":0.12037,"10.0-10.2":0,"10.3":0.10213,"11.0-11.2":0.09848,"11.3-11.4":0.01277,"12.0-12.1":0.02918,"12.2-12.5":0.59453,"13.0-13.1":0.01094,"13.2":0.00365,"13.3":0.03283,"13.4-13.7":0.10942,"14.0-14.4":0.34833,"14.5-14.8":0.77326,"15.0-15.1":0.24438,"15.2-15.3":0.5307,"15.4":0.59818,"15.5":3.94835,"15.6":10.25113,"16.0":0.22614},P:{"4":0.2036,"5.0-5.4":0.01072,"6.2-6.4":0,"7.2-7.4":0.22503,"8.2":0,"9.2":0.02143,"10.1":0,"11.1-11.2":0.13931,"12.0":0.01072,"13.0":0.10716,"14.0":0.09644,"15.0":0.07501,"16.0":0.2036,"17.0":1.66095,"18.0":1.75739},I:{"0":0,"3":0,"4":0.03233,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03233,"4.2-4.3":0.09699,"4.4":0,"4.4.3-4.4.4":1.00226},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00784,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":60.4328},S:{"2.5":0},R:{_:"0"},M:{"0":0.10336},Q:{"10.4":0},O:{"0":0.38304},H:{"0":0.17844}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00398,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.03983,"74":0,"75":0,"76":0,"77":0,"78":0.00398,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00398,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00398,"99":0.00398,"100":0,"101":0,"102":0.00797,"103":0.01593,"104":0.2589,"105":0.11152,"106":0.00398,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00398,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00797,"50":0,"51":0,"52":0,"53":0.00398,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00398,"67":0,"68":0.00398,"69":0.00398,"70":0,"71":0,"72":0,"73":0.0239,"74":0.00398,"75":0.01195,"76":0.0478,"77":0.00398,"78":0,"79":0.02788,"80":0.00398,"81":0.02788,"83":0.03186,"84":0.00797,"85":0.00398,"86":0.00398,"87":0.01195,"88":0.00398,"89":0.01195,"90":0.00398,"91":0.01992,"92":0.00797,"93":0.10754,"94":0.00797,"95":0.01195,"96":0.01992,"97":0.01195,"98":0.0239,"99":0.02788,"100":0.0239,"101":0.03186,"102":0.05178,"103":0.3983,"104":2.23845,"105":6.9583,"106":0.10356,"107":0.01593,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00398,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00398,"64":0.01195,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.03983,"90":0.27881,"91":0.0239,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00797,"16":0,"17":0,"18":0.09161,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00398,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.01195,"102":0.00398,"103":0.02788,"104":0.27084,"105":1.33829},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00398,"14":0.01195,"15":0.00797,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00398,"12.1":0.00797,"13.1":0.04381,"14.1":0.05178,"15.1":0.01593,"15.2-15.3":0.01593,"15.4":0.03186,"15.5":0.06771,"15.6":0.32661,"16.0":0.04381,"16.1":0.00398},G:{"8":0.00397,"3.2":0.01191,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00397,"6.0-6.1":0,"7.0-7.1":0.18657,"8.1-8.4":0,"9.0-9.2":0.00397,"9.3":0.09527,"10.0-10.2":0,"10.3":0.12107,"11.0-11.2":0.0655,"11.3-11.4":0.00992,"12.0-12.1":0.01985,"12.2-12.5":0.53789,"13.0-13.1":0.01191,"13.2":0.00397,"13.3":0.01588,"13.4-13.7":0.17467,"14.0-14.4":0.3136,"14.5-14.8":0.81378,"15.0-15.1":0.18657,"15.2-15.3":0.31162,"15.4":0.42475,"15.5":1.28815,"15.6":10.97413,"16.0":3.48735,"16.1":0.06748},P:{"4":0.22386,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.2132,"8.2":0,"9.2":0.02132,"10.1":0,"11.1-11.2":0.1066,"12.0":0.03198,"13.0":0.09594,"14.0":0.1066,"15.0":0.0533,"16.0":0.13858,"17.0":0.35178,"18.0":3.08072},I:{"0":0,"3":0,"4":0.04203,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.08405,"4.4":0,"4.4.3-4.4.4":0.79849},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00398,"11":0.00797,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.41517},H:{"0":0.20507},L:{"0":59.03564},S:{"2.5":0},R:{_:"0"},M:{"0":0.09627},Q:{"13.1":0}}; 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 65a2abe5a82950..52e569c2cda688 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00292,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00583,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00875,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00583,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00292,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00292,"92":0,"93":0,"94":0,"95":0.00292,"96":0,"97":0,"98":0.00292,"99":0.00583,"100":0,"101":0.00292,"102":0.01458,"103":0.2711,"104":0.06122,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00292,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00292,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00292,"48":0,"49":0.00583,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00292,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00292,"64":0,"65":0.00292,"66":0,"67":0,"68":0,"69":0.00292,"70":0.00292,"71":0.00292,"72":0,"73":0,"74":0.00292,"75":0.00292,"76":0.00292,"77":0.00292,"78":0.00583,"79":0.01458,"80":0.00292,"81":0.01749,"83":0.00583,"84":0.00583,"85":0.00583,"86":0.01458,"87":0.00875,"88":0.01166,"89":0.01458,"90":0.00583,"91":0.01166,"92":0.03498,"93":0.00292,"94":0.00583,"95":0.00583,"96":0.01458,"97":0.01458,"98":0.03207,"99":0.01166,"100":0.03207,"101":0.02332,"102":0.06996,"103":1.41378,"104":4.05477,"105":0.02041,"106":0.00292,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00292,"64":0.00292,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00292,"80":0,"81":0,"82":0.00583,"83":0.00583,"84":0.01458,"85":0.00583,"86":0.00875,"87":0.00583,"88":0.01749,"89":0.14575,"90":0.00583,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00292,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00292,"90":0,"91":0,"92":0.00292,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00292,"100":0.00292,"101":0.01458,"102":0.00292,"103":0.17199,"104":0.49555,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01749,"14":0.01458,"15":0.00583,_:"0","3.1":0,"3.2":0,"5.1":0.00583,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00292,"13.1":0.01749,"14.1":0.04373,"15.1":0.01166,"15.2-15.3":0.00583,"15.4":0.02915,"15.5":0.11952,"15.6":0.13701,"16.0":0.00292},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00328,"6.0-6.1":0.00164,"7.0-7.1":0.02628,"8.1-8.4":0.00164,"9.0-9.2":0,"9.3":0.06076,"10.0-10.2":0.00164,"10.3":0.09032,"11.0-11.2":0.00821,"11.3-11.4":0.01478,"12.0-12.1":0.01478,"12.2-12.5":0.61092,"13.0-13.1":0.01314,"13.2":0.00493,"13.3":0.02792,"13.4-13.7":0.13959,"14.0-14.4":0.55344,"14.5-14.8":1.12165,"15.0-15.1":0.30546,"15.2-15.3":0.48446,"15.4":0.85068,"15.5":4.07769,"15.6":7.88606,"16.0":0.11824},P:{"4":0.13203,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.12188,"8.2":0,"9.2":0.03047,"10.1":0,"11.1-11.2":0.12188,"12.0":0.02031,"13.0":0.10157,"14.0":0.13203,"15.0":0.09141,"16.0":0.21329,"17.0":1.13753,"18.0":1.41176},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03485,"4.2-4.3":0.17424,"4.4":0,"4.4.3-4.4.4":1.11512},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01749,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":68.80028},S:{"2.5":0},R:{_:"0"},M:{"0":0.18421},Q:{"10.4":0},O:{"0":0.26215},H:{"0":0.24147}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00248,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00248,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.0124,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00248,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00248,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00496,"100":0.00248,"101":0.00248,"102":0.00248,"103":0.00744,"104":0.17856,"105":0.05456,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00248,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00248,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00248,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00248,"64":0,"65":0.00248,"66":0,"67":0.00248,"68":0,"69":0,"70":0,"71":0.00248,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00248,"79":0.00744,"80":0.00496,"81":0.00992,"83":0.00248,"84":0.00248,"85":0.00496,"86":0.00744,"87":0.00496,"88":0.00992,"89":0.00992,"90":0.00496,"91":0.00744,"92":0.0248,"93":0.00248,"94":0.00496,"95":0.00496,"96":0.00992,"97":0.0124,"98":0.00744,"99":0.00992,"100":0.0124,"101":0.0124,"102":0.02728,"103":0.06696,"104":0.79608,"105":3.15704,"106":0.05952,"107":0.00248,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00248,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00248,"72":0,"73":0.00248,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00248,"83":0.00496,"84":0.00992,"85":0,"86":0.00496,"87":0.00744,"88":0.00496,"89":0.0248,"90":0.08184,"91":0.00248,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00248,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00248,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00248,"102":0.00248,"103":0.00496,"104":0.07936,"105":0.40672},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00248,"14":0.0124,"15":0.00248,_:"0","3.1":0,"3.2":0,"5.1":0.01736,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00248,"13.1":0.01736,"14.1":0.0248,"15.1":0.00744,"15.2-15.3":0.00496,"15.4":0.01984,"15.5":0.03968,"15.6":0.10912,"16.0":0.01984,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00154,"6.0-6.1":0,"7.0-7.1":0.02005,"8.1-8.4":0.00154,"9.0-9.2":0,"9.3":0.04011,"10.0-10.2":0.00154,"10.3":0.08021,"11.0-11.2":0.00463,"11.3-11.4":0.00771,"12.0-12.1":0.01851,"12.2-12.5":0.56304,"13.0-13.1":0.00771,"13.2":0.00309,"13.3":0.02468,"13.4-13.7":0.12341,"14.0-14.4":0.4566,"14.5-14.8":0.83762,"15.0-15.1":0.20825,"15.2-15.3":0.31931,"15.4":0.48283,"15.5":1.30193,"15.6":7.47994,"16.0":2.9494,"16.1":0.02931},P:{"4":0.102,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.1326,"8.2":0,"9.2":0.0306,"10.1":0,"11.1-11.2":0.1428,"12.0":0.0306,"13.0":0.102,"14.0":0.1632,"15.0":0.153,"16.0":0.25499,"17.0":0.42839,"18.0":3.03952},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.05448,"4.2-4.3":0.07265,"4.4":0,"4.4.3-4.4.4":0.98071},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00992,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.19552},H:{"0":0.20646},L:{"0":71.77056},S:{"2.5":0},R:{_:"0"},M:{"0":0.19552},Q:{"13.1":0}}; 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 a09ce28cc692c7..c90d15ec91b105 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00647,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00647,"49":0,"50":0,"51":0,"52":0.04527,"53":0.00647,"54":0,"55":0,"56":0.0194,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00647,"67":0,"68":0.00647,"69":0,"70":0,"71":0,"72":0.00647,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03234,"79":0,"80":0.00647,"81":0.00647,"82":0,"83":0.00647,"84":0.00647,"85":0,"86":0,"87":0,"88":0.00647,"89":0.00647,"90":0.00647,"91":0.04527,"92":0,"93":0.00647,"94":0.00647,"95":0.00647,"96":0.00647,"97":0.00647,"98":0.00647,"99":0.00647,"100":0.01293,"101":0.02587,"102":0.10347,"103":2.28932,"104":0.42036,"105":0.00647,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00647,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.01293,"44":0,"45":0,"46":0,"47":0,"48":0.00647,"49":0.08407,"50":0,"51":0,"52":0.00647,"53":0,"54":0,"55":0.00647,"56":0.00647,"57":0,"58":0.00647,"59":0,"60":0,"61":0,"62":0.00647,"63":0.01293,"64":0,"65":0.00647,"66":0.00647,"67":0.00647,"68":0,"69":0.0194,"70":0.00647,"71":0.00647,"72":0.00647,"73":0.00647,"74":0.01293,"75":0.00647,"76":0.00647,"77":0.00647,"78":0.01293,"79":0.02587,"80":0.03234,"81":0.07114,"83":0.0388,"84":0.0388,"85":0.03234,"86":0.05174,"87":0.06467,"88":0.01293,"89":0.0388,"90":0.01293,"91":0.01293,"92":0.04527,"93":0.01293,"94":0.0194,"95":0.0388,"96":0.04527,"97":0.06467,"98":0.04527,"99":0.0388,"100":0.06467,"101":0.0582,"102":0.19401,"103":4.6045,"104":13.66477,"105":0.0388,"106":0.00647,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00647,"64":0.00647,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00647,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00647,"89":0.18754,"90":0.03234,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00647,"18":0.01293,"79":0,"80":0,"81":0,"83":0,"84":0.00647,"85":0.00647,"86":0.00647,"87":0,"88":0,"89":0.00647,"90":0.00647,"91":0.00647,"92":0.00647,"93":0,"94":0.00647,"95":0.00647,"96":0.01293,"97":0.00647,"98":0.00647,"99":0.01293,"100":0.0194,"101":0.02587,"102":0.05174,"103":2.23758,"104":7.21071,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00647,"13":0.03234,"14":0.12287,"15":0.0194,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00647,"10.1":0.01293,"11.1":0.0194,"12.1":0.0388,"13.1":0.13581,"14.1":0.25221,"15.1":0.0388,"15.2-15.3":0.03234,"15.4":0.10994,"15.5":0.42036,"15.6":0.99592,"16.0":0.00647},G:{"8":0.00734,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00367,"6.0-6.1":0,"7.0-7.1":0.08444,"8.1-8.4":0.02937,"9.0-9.2":0.30472,"9.3":0.17255,"10.0-10.2":0.01836,"10.3":0.1028,"11.0-11.2":0.09178,"11.3-11.4":0.04038,"12.0-12.1":0.06241,"12.2-12.5":0.59475,"13.0-13.1":0.03671,"13.2":0.02203,"13.3":0.09178,"13.4-13.7":0.2937,"14.0-14.4":0.98023,"14.5-14.8":2.59192,"15.0-15.1":0.47359,"15.2-15.3":0.83338,"15.4":1.45382,"15.5":7.26177,"15.6":21.07308,"16.0":0.06608},P:{"4":0.0105,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0105,"12.0":0.0105,"13.0":0.0105,"14.0":0.0105,"15.0":0,"16.0":0.05248,"17.0":0.37786,"18.0":0.59828},I:{"0":0,"3":0,"4":0.02682,"2.1":0,"2.2":0.06436,"2.3":0.08582,"4.1":0.03755,"4.2-4.3":0.27891,"4.4":0,"4.4.3-4.4.4":0.28427},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.01452,"10":0,"11":0.75505,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":23.48981},S:{"2.5":0},R:{_:"0"},M:{"0":0.3427},Q:{"10.4":0.02473},O:{"0":0.12719},H:{"0":0.10034}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00652,"49":0,"50":0,"51":0,"52":0.03261,"53":0.00652,"54":0,"55":0,"56":0.02609,"57":0,"58":0,"59":0,"60":0.00652,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00652,"67":0.00652,"68":0.00652,"69":0,"70":0,"71":0,"72":0.00652,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03913,"79":0.00652,"80":0.00652,"81":0.00652,"82":0.00652,"83":0.01304,"84":0.00652,"85":0,"86":0,"87":0,"88":0.00652,"89":0,"90":0.00652,"91":0.03261,"92":0.00652,"93":0.00652,"94":0.00652,"95":0.00652,"96":0,"97":0.00652,"98":0.00652,"99":0.00652,"100":0.00652,"101":0.01304,"102":0.05218,"103":0.1174,"104":1.80659,"105":0.62611,"106":0.00652,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00652,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.06522,"50":0,"51":0,"52":0.00652,"53":0,"54":0,"55":0,"56":0.00652,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00652,"63":0,"64":0,"65":0.00652,"66":0,"67":0.00652,"68":0,"69":0.01957,"70":0.00652,"71":0.00652,"72":0.00652,"73":0.00652,"74":0.01957,"75":0.00652,"76":0.00652,"77":0.00652,"78":0.01304,"79":0.01957,"80":0.02609,"81":0.05218,"83":0.0587,"84":0.03261,"85":0.07826,"86":0.07826,"87":0.07826,"88":0.01304,"89":0.03913,"90":0.01304,"91":0.01304,"92":0.03261,"93":0.00652,"94":0.01304,"95":0.03261,"96":0.03261,"97":0.06522,"98":0.05218,"99":0.03913,"100":0.04565,"101":0.03913,"102":0.09131,"103":0.35871,"104":4.20017,"105":15.268,"106":0.22827,"107":0.00652,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00652,"65":0,"66":0,"67":0,"68":0.00652,"69":0.00652,"70":0.00652,"71":0.00652,"72":0.00652,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00652,"90":0.18262,"91":0.00652,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00652,"18":0.01304,"79":0,"80":0,"81":0,"83":0.00652,"84":0.00652,"85":0.00652,"86":0.00652,"87":0.00652,"88":0,"89":0.00652,"90":0.00652,"91":0.00652,"92":0.00652,"93":0,"94":0.00652,"95":0,"96":0.00652,"97":0.00652,"98":0.00652,"99":0.01304,"100":0.01304,"101":0.01957,"102":0.01957,"103":0.0587,"104":1.33049,"105":8.13293},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00652,"13":0.03913,"14":0.27392,"15":0.01957,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00652,"10.1":0.00652,"11.1":0.01304,"12.1":0.03261,"13.1":0.14348,"14.1":0.20218,"15.1":0.03913,"15.2-15.3":0.03261,"15.4":0.08479,"15.5":0.19566,"15.6":1.13483,"16.0":0.13696,"16.1":0.00652},G:{"8":0.01493,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00373,"5.0-5.1":0,"6.0-6.1":0.00373,"7.0-7.1":0.08957,"8.1-8.4":0.04105,"9.0-9.2":0.39561,"9.3":0.17168,"10.0-10.2":0.01493,"10.3":0.08957,"11.0-11.2":0.0933,"11.3-11.4":0.04105,"12.0-12.1":0.05225,"12.2-12.5":0.5113,"13.0-13.1":0.02986,"13.2":0.01866,"13.3":0.07838,"13.4-13.7":0.26498,"14.0-14.4":0.9405,"14.5-14.8":2.1012,"15.0-15.1":0.40307,"15.2-15.3":0.64193,"15.4":0.98529,"15.5":2.299,"15.6":23.7178,"16.0":3.51568,"16.1":0.01866},P:{"4":0.01039,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01039,"10.1":0,"11.1-11.2":0.01039,"12.0":0.01039,"13.0":0.01039,"14.0":0.01039,"15.0":0,"16.0":0.04158,"17.0":0.07276,"18.0":0.74843},I:{"0":0,"3":0,"4":0.01886,"2.1":0,"2.2":0.0943,"2.3":0.14145,"4.1":0.01886,"4.2-4.3":0.3159,"4.4":0,"4.4.3-4.4.4":0.19802},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00765,"9":0.02295,"10":0,"11":0.58899,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.12869},H:{"0":0.10208},L:{"0":22.62},S:{"2.5":0},R:{_:"0"},M:{"0":0.27476},Q:{"13.1":0.02782}}; 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 4c9220667d8314..d11cab81534c2c 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.0024,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.10791,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0024,"69":0,"70":0,"71":0,"72":0,"73":0.0024,"74":0,"75":0,"76":0,"77":0,"78":0.0048,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.0024,"89":0,"90":0,"91":0.00719,"92":0,"93":0,"94":0,"95":0.0024,"96":0,"97":0.0024,"98":0,"99":0.0024,"100":0.0048,"101":0.0048,"102":0.01679,"103":0.32853,"104":0.07674,"105":0.0048,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.0024,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0024,"50":0,"51":0,"52":0,"53":0,"54":0.0024,"55":0,"56":0.0024,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.0024,"66":0.0024,"67":0,"68":0,"69":0.02878,"70":0.0024,"71":0,"72":0.0048,"73":0.0048,"74":0.0024,"75":0.0024,"76":0.0024,"77":0,"78":0.0024,"79":0.01439,"80":0.0024,"81":0.00719,"83":0.00959,"84":0.0024,"85":0.0024,"86":0.0048,"87":0.01199,"88":0.0024,"89":0.0024,"90":0.0048,"91":0.0048,"92":0.00719,"93":0.0048,"94":0.0048,"95":0.00719,"96":0.02158,"97":0.00719,"98":0.01199,"99":0.00719,"100":0.01439,"101":0.01439,"102":0.03837,"103":0.8345,"104":2.08626,"105":0.00959,"106":0.0024,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.0024,"24":0.00959,"25":0.0024,"26":0.0048,"27":0.02638,"28":0.01199,"29":0.0024,"30":0.01199,"31":0.0048,"32":0.03597,"33":0.01439,"34":0,"35":0.0048,"36":0,"37":0.0024,"38":0.01918,"39":0,"40":0,"41":0.0024,"42":0.00719,"43":0,"44":0.0024,"45":0.0048,"46":0.01918,"47":0.00959,"48":0,"49":0,"50":0.01439,"51":0.02158,"52":0,"53":0,"54":0.03117,"55":0.02398,"56":0.01199,"57":0.02158,"58":0.09832,"60":0.42924,"62":0.00959,"63":1.5587,"64":0.62348,"65":0,"66":0,"67":0,"68":0.0024,"69":0.0024,"70":0.0024,"71":0.0024,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.0024,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0024,"86":0.0024,"87":0,"88":0.0048,"89":0.1151,"90":0.01918,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02158},B:{"12":0.0024,"13":0.0024,"14":0,"15":0,"16":0.0024,"17":0,"18":0.0048,"79":0,"80":0,"81":0,"83":0,"84":0.0024,"85":0,"86":0,"87":0,"88":0,"89":0.0024,"90":0,"91":0,"92":0.00719,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00719,"100":0.0024,"101":0.0048,"102":0.0048,"103":0.09112,"104":0.21582,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0048,"12":0,"13":0.0024,"14":0.0048,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.0024,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0024,"13.1":0.00959,"14.1":0.01199,"15.1":0.0024,"15.2-15.3":0.0024,"15.4":0.00719,"15.5":0.02158,"15.6":0.03837,"16.0":0},G:{"8":0.00057,"3.2":0,"4.0-4.1":0.00057,"4.2-4.3":0,"5.0-5.1":0.00714,"6.0-6.1":0,"7.0-7.1":0.02657,"8.1-8.4":0,"9.0-9.2":0.00057,"9.3":0.04629,"10.0-10.2":0.00057,"10.3":0.02257,"11.0-11.2":0.00886,"11.3-11.4":0.006,"12.0-12.1":0.00514,"12.2-12.5":0.17315,"13.0-13.1":0.00257,"13.2":0.00314,"13.3":0.01857,"13.4-13.7":0.03143,"14.0-14.4":0.13029,"14.5-14.8":0.18943,"15.0-15.1":0.06143,"15.2-15.3":0.09143,"15.4":0.13457,"15.5":0.6823,"15.6":1.18974,"16.0":0.02229},P:{"4":0.19724,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06229,"8.2":0,"9.2":0,"10.1":0.01038,"11.1-11.2":0.01038,"12.0":0.01038,"13.0":0.01038,"14.0":0.04152,"15.0":0.02076,"16.0":0.06229,"17.0":0.28029,"18.0":0.25953},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00568,"4.2-4.3":0.0216,"4.4":0,"4.4.3-4.4.4":0.12506},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01199,"5.5":0},J:{"7":0,"10":0.0076},N:{"10":0.0076,"11":0},L:{"0":57.03078},S:{"2.5":0.0076},R:{_:"0"},M:{"0":0.12163},Q:{"10.4":0},O:{"0":0.23566},H:{"0":25.75116}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00238,"48":0,"49":0,"50":0,"51":0,"52":0.10238,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00238,"74":0,"75":0,"76":0,"77":0,"78":0.00476,"79":0.00238,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00238,"88":0.00238,"89":0,"90":0,"91":0.00476,"92":0,"93":0.00238,"94":0.00238,"95":0.00238,"96":0,"97":0,"98":0,"99":0.00476,"100":0.00238,"101":0.00238,"102":0.00714,"103":0.02143,"104":0.27382,"105":0.0881,"106":0.00714,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00238,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00238,"57":0,"58":0.00238,"59":0,"60":0,"61":0,"62":0.00238,"63":0,"64":0,"65":0.00238,"66":0.00238,"67":0,"68":0,"69":0.01905,"70":0.00238,"71":0,"72":0.00238,"73":0.00238,"74":0.00238,"75":0.01905,"76":0.00238,"77":0.00238,"78":0.00238,"79":0.00952,"80":0.00238,"81":0.00476,"83":0.00952,"84":0.00238,"85":0.00476,"86":0.00714,"87":0.00714,"88":0.00238,"89":0.00238,"90":0.00238,"91":0.00238,"92":0.00714,"93":0.00238,"94":0.00238,"95":0.00476,"96":0.03572,"97":0.00714,"98":0.01191,"99":0.00476,"100":0.00952,"101":0.00952,"102":0.01667,"103":0.07381,"104":0.6143,"105":2.30005,"106":0.0381,"107":0.00238,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00238,"24":0.01191,"25":0.00238,"26":0.00476,"27":0.01905,"28":0.01429,"29":0,"30":0.01429,"31":0.00476,"32":0.02381,"33":0.01905,"34":0,"35":0,"36":0,"37":0.00476,"38":0.02619,"39":0,"40":0,"41":0,"42":0.01667,"43":0,"44":0,"45":0.00476,"46":0.02143,"47":0.00714,"48":0,"49":0,"50":0.01667,"51":0.01905,"52":0,"53":0,"54":0.0381,"55":0.02619,"56":0.01429,"57":0.01905,"58":0.09048,"60":0.39287,"62":0.01191,"63":1.12621,"64":1.65003,"65":0.06429,"66":0,"67":0,"68":0,"69":0,"70":0.00238,"71":0.00714,"72":0.00238,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00238,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00238,"86":0,"87":0,"88":0,"89":0.00476,"90":0.10715,"91":0.00714,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02143},B:{"12":0.00238,"13":0.00238,"14":0,"15":0.00238,"16":0.00238,"17":0,"18":0.00476,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00238,"90":0,"91":0,"92":0.00476,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00238,"102":0.00238,"103":0.00952,"104":0.05238,"105":0.24524},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00476,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00238,"11.1":0,"12.1":0.00238,"13.1":0.00952,"14.1":0.01429,"15.1":0.00238,"15.2-15.3":0.00238,"15.4":0.00714,"15.5":0.01429,"15.6":0.04048,"16.0":0.00714,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00523,"6.0-6.1":0.00025,"7.0-7.1":0.03411,"8.1-8.4":0.00249,"9.0-9.2":0.00025,"9.3":0.03461,"10.0-10.2":0.001,"10.3":0.02291,"11.0-11.2":0.00797,"11.3-11.4":0.00573,"12.0-12.1":0.00448,"12.2-12.5":0.16258,"13.0-13.1":0.00274,"13.2":0.00124,"13.3":0.02091,"13.4-13.7":0.02639,"14.0-14.4":0.0727,"14.5-14.8":0.11802,"15.0-15.1":0.03635,"15.2-15.3":0.07469,"15.4":0.0722,"15.5":0.24923,"15.6":1.17269,"16.0":0.29753,"16.1":0.00847},P:{"4":0.16689,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05215,"8.2":0,"9.2":0,"10.1":0.01043,"11.1-11.2":0.01043,"12.0":0,"13.0":0.01043,"14.0":0.03129,"15.0":0.02086,"16.0":0.04172,"17.0":0.08345,"18.0":0.44852},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00235,"4.2-4.3":0.02235,"4.4":0,"4.4.3-4.4.4":0.11292},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01667,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00762},O:{"0":0.21333},H:{"0":29.57403},L:{"0":52.65329},S:{"2.5":0},R:{_:"0"},M:{"0":0.1219},Q:{"13.1":0}}; 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 bda99b5b06ba63..4f4edd3ceb50be 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0155,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.05168,"92":0,"93":0,"94":0,"95":0.00517,"96":0,"97":0,"98":0.00517,"99":0.01034,"100":0,"101":0.00517,"102":0.07235,"103":0.22222,"104":0.03101,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00517,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.07752,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00517,"68":0,"69":0,"70":0,"71":0.00517,"72":0,"73":0.01034,"74":0.02067,"75":0,"76":0,"77":0.00517,"78":0,"79":0.02584,"80":0.00517,"81":0.01034,"83":0.01034,"84":0.00517,"85":0.01034,"86":0.02584,"87":0.01034,"88":0.01034,"89":0.03101,"90":0.01034,"91":0.00517,"92":0.02067,"93":0.00517,"94":0.02067,"95":0.00517,"96":0.02584,"97":0.02584,"98":0.0155,"99":0.03101,"100":0.04134,"101":0.03101,"102":0.16538,"103":17.53502,"104":4.93544,"105":0.00517,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.03101,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00517,"62":0,"63":0.01034,"64":0.05168,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00517,"85":0.05168,"86":0.00517,"87":0.00517,"88":0.00517,"89":0.76486,"90":0.05685,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00517,"16":0,"17":0,"18":0.00517,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00517,"101":0.00517,"102":0.00517,"103":0.08269,"104":0.22222,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00517,"14":0.02067,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.10853,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00517,"13.1":0.0155,"14.1":0.02067,"15.1":0.01034,"15.2-15.3":0.0155,"15.4":0.03618,"15.5":0.10853,"15.6":0.12403,"16.0":0.00517},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.00648,"8.1-8.4":0.00093,"9.0-9.2":0.00278,"9.3":0.00926,"10.0-10.2":0.00555,"10.3":0.02129,"11.0-11.2":0.00278,"11.3-11.4":0.03425,"12.0-12.1":0.01481,"12.2-12.5":0.31843,"13.0-13.1":0.00926,"13.2":0.01203,"13.3":0.03147,"13.4-13.7":0.17032,"14.0-14.4":0.4147,"14.5-14.8":0.69426,"15.0-15.1":0.41285,"15.2-15.3":0.56559,"15.4":0.87754,"15.5":2.69835,"15.6":2.74463,"16.0":0.20272},P:{"4":0.23144,"5.0-5.4":0.01006,"6.2-6.4":0.04025,"7.2-7.4":0.20126,"8.2":0.01006,"9.2":0.04025,"10.1":0.02013,"11.1-11.2":0.06038,"12.0":0.05031,"13.0":0.10063,"14.0":0.10063,"15.0":0.05031,"16.0":0.21132,"17.0":0.55345,"18.0":0.39245},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00947,"4.2-4.3":0.00474,"4.4":0,"4.4.3-4.4.4":0.07579},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02584,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":59.33717},S:{"2.5":0},R:{_:"0"},M:{"0":0.05315},Q:{"10.4":0},O:{"0":0.42038},H:{"0":0.33395}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00421,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.02106,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00421,"99":0.00421,"100":0.00421,"101":0,"102":0.02948,"103":0.01263,"104":0.14317,"105":0.05053,"106":0.00421,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00421,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01263,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.01684,"64":0,"65":0,"66":0,"67":0.00421,"68":0.00421,"69":0.00421,"70":0.00421,"71":0.00842,"72":0,"73":0.00421,"74":0.01263,"75":0,"76":0,"77":0,"78":0,"79":0.00842,"80":0,"81":0.01263,"83":0.00842,"84":0.00421,"85":0.01263,"86":0.00842,"87":0.01263,"88":0.00842,"89":0.02106,"90":0.01263,"91":0.00421,"92":0.00421,"93":0,"94":0.00842,"95":0,"96":0.02106,"97":0.02106,"98":0.01263,"99":0.01263,"100":0.02106,"101":0.04632,"102":0.04632,"103":0.53901,"104":1.33489,"105":13.05831,"106":0.06317,"107":0.00421,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00842,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00842,"64":0.03369,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00421,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00421,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0379,"86":0,"87":0,"88":0,"89":0.02948,"90":0.37057,"91":0.02106,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00421},B:{"12":0,"13":0,"14":0,"15":0.00421,"16":0,"17":0,"18":0.00421,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00421,"102":0,"103":0.01263,"104":0.02948,"105":0.20213},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00421,"14":0.00842,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.04632,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00421,"13.1":0.01263,"14.1":0.02106,"15.1":0.00842,"15.2-15.3":0.00421,"15.4":0.02106,"15.5":0.04632,"15.6":0.08843,"16.0":0.0379,"16.1":0},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.00912,"8.1-8.4":0,"9.0-9.2":0.00203,"9.3":0.02735,"10.0-10.2":0.00101,"10.3":0.02026,"11.0-11.2":0.00304,"11.3-11.4":0.01114,"12.0-12.1":0.00608,"12.2-12.5":0.32109,"13.0-13.1":0.01114,"13.2":0.01418,"13.3":0.03849,"13.4-13.7":0.13472,"14.0-14.4":0.42744,"14.5-14.8":0.75461,"15.0-15.1":0.38693,"15.2-15.3":0.56925,"15.4":0.6047,"15.5":1.45959,"15.6":3.37904,"16.0":1.6328,"16.1":0.01317},P:{"4":0.25105,"5.0-5.4":0.01004,"6.2-6.4":0.05021,"7.2-7.4":0.1908,"8.2":0.01004,"9.2":0.04017,"10.1":0.02008,"11.1-11.2":0.0703,"12.0":0.04017,"13.0":0.11046,"14.0":0.15063,"15.0":0.08034,"16.0":0.29122,"17.0":0.28118,"18.0":0.85358},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00584,"4.2-4.3":0.00584,"4.4":0,"4.4.3-4.4.4":0.04674},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01263,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.43996},H:{"0":0.30692},L:{"0":67.34786},S:{"2.5":0},R:{_:"0"},M:{"0":0.06947},Q:{"13.1":0}}; 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 27a40ba293698a..5713c9857a8827 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.004,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.004,"48":0,"49":0,"50":0,"51":0.012,"52":0.004,"53":0,"54":0,"55":0,"56":0.008,"57":0,"58":0,"59":0,"60":0,"61":0.008,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.004,"69":0,"70":0.016,"71":0,"72":0.004,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02401,"79":0.012,"80":0.012,"81":0.02401,"82":0.012,"83":0.008,"84":0.004,"85":0,"86":0,"87":0.004,"88":0.004,"89":0.004,"90":0.004,"91":0.012,"92":0,"93":0,"94":0,"95":0.004,"96":0.008,"97":0,"98":0.004,"99":0.004,"100":0.004,"101":0.008,"102":0.02001,"103":0.72818,"104":0.13603,"105":0.008,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.008,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.004,"39":0,"40":0,"41":0.004,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.012,"49":0.004,"50":0.004,"51":0,"52":0,"53":0.008,"54":0,"55":0,"56":0.008,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.004,"63":0.004,"64":0,"65":0.008,"66":0,"67":0,"68":0.004,"69":0.008,"70":0.004,"71":0.004,"72":0.008,"73":0.05201,"74":0.004,"75":0.004,"76":0.008,"77":0,"78":0.008,"79":0.05601,"80":0.016,"81":0.02001,"83":0.11603,"84":0.15204,"85":0.19205,"86":0.12003,"87":0.13203,"88":0.008,"89":0.008,"90":0.016,"91":0.012,"92":0.04401,"93":0.012,"94":0.012,"95":0.008,"96":0.02401,"97":0.04001,"98":0.016,"99":0.03601,"100":0.04001,"101":0.03601,"102":0.09602,"103":2.59665,"104":7.03776,"105":0.03201,"106":0.02001,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.004,"38":0,"39":0,"40":0.004,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.02401,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.012,"64":0.008,"65":0,"66":0,"67":0,"68":0.004,"69":0,"70":0.008,"71":0.004,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.004,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.004,"86":0.004,"87":0.004,"88":0.004,"89":0.35609,"90":0.04801,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.004,"13":0,"14":0,"15":0,"16":0,"17":0.008,"18":0.012,"79":0,"80":0,"81":0,"83":0,"84":0.004,"85":0.008,"86":0.02401,"87":0,"88":0,"89":0.004,"90":0,"91":0,"92":0.008,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.004,"100":0.004,"101":0.004,"102":0.004,"103":0.25206,"104":0.62416,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02001,"14":0.07202,"15":0.02401,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.004,"11.1":0.008,"12.1":0.012,"13.1":0.07602,"14.1":0.17204,"15.1":0.04401,"15.2-15.3":0.03601,"15.4":0.08402,"15.5":0.34809,"15.6":0.50413,"16.0":0.02001},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.00747,"7.0-7.1":0.02241,"8.1-8.4":0.04855,"9.0-9.2":0.00747,"9.3":0.10083,"10.0-10.2":0.04108,"10.3":0.16431,"11.0-11.2":0.01867,"11.3-11.4":0.09336,"12.0-12.1":0.10456,"12.2-12.5":1.71033,"13.0-13.1":0.08962,"13.2":0.05228,"13.3":0.18672,"13.4-13.7":0.68339,"14.0-14.4":1.76635,"14.5-14.8":3.75676,"15.0-15.1":1.13898,"15.2-15.3":1.39291,"15.4":2.28916,"15.5":7.98778,"15.6":15.07184,"16.0":0.59376},P:{"4":0.14748,"5.0-5.4":0.02107,"6.2-6.4":0,"7.2-7.4":0.01053,"8.2":0,"9.2":0.02107,"10.1":0,"11.1-11.2":0.01053,"12.0":0.01053,"13.0":0.02107,"14.0":0.0316,"15.0":0.02107,"16.0":0.07374,"17.0":0.57937,"18.0":0.82165},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01785,"4.4":0,"4.4.3-4.4.4":0.09816},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01354,"9":0.00451,"10":0.01354,"11":0.14445,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":42.50986},S:{"2.5":0},R:{_:"0"},M:{"0":0.35394},Q:{"10.4":0.006},O:{"0":0.66589},H:{"0":0.51683}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00389,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00389,"48":0,"49":0,"50":0.00389,"51":0.00389,"52":0.00389,"53":0,"54":0,"55":0,"56":0.00778,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00778,"69":0,"70":0,"71":0.00389,"72":0.00389,"73":0,"74":0,"75":0.00389,"76":0,"77":0,"78":0.00778,"79":0.00389,"80":0.00778,"81":0.01167,"82":0.00389,"83":0.00389,"84":0.00389,"85":0,"86":0,"87":0.00389,"88":0.00389,"89":0.00389,"90":0.00389,"91":0.01167,"92":0,"93":0,"94":0,"95":0.00389,"96":0.00778,"97":0.00389,"98":0,"99":0.00389,"100":0.00389,"101":0.00389,"102":0.00778,"103":0.03112,"104":0.65352,"105":0.19061,"106":0.00778,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00389,"36":0,"37":0,"38":0.00778,"39":0,"40":0,"41":0.00778,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00389,"50":0,"51":0,"52":0,"53":0.00389,"54":0,"55":0,"56":0.01167,"57":0.00389,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00389,"64":0,"65":0.00389,"66":0,"67":0.00389,"68":0,"69":0.00778,"70":0.00389,"71":0.00389,"72":0.00389,"73":0.00389,"74":0.00389,"75":0.00389,"76":0.01556,"77":0,"78":0.01167,"79":0.04668,"80":0.00778,"81":0.01167,"83":0.04668,"84":0.05835,"85":0.09336,"86":0.06224,"87":0.06224,"88":0.00778,"89":0.01167,"90":0.01556,"91":0.01167,"92":0.0389,"93":0.03501,"94":0.01167,"95":0.00778,"96":0.02723,"97":0.04279,"98":0.01556,"99":0.02334,"100":0.03501,"101":0.03112,"102":0.05446,"103":0.22173,"104":2.23286,"105":7.01367,"106":0.10114,"107":0.01167,"108":0.00389,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00778,"38":0,"39":0,"40":0.00389,"41":0,"42":0,"43":0.00389,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.02334,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.01945,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00389,"71":0,"72":0.00389,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00389,"88":0.00389,"89":0.01945,"90":0.35788,"91":0.01167,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00389,"13":0,"14":0.00389,"15":0,"16":0,"17":0,"18":0.02334,"79":0,"80":0,"81":0,"83":0.00389,"84":0,"85":0.01167,"86":0.00389,"87":0,"88":0,"89":0.00389,"90":0,"91":0,"92":0.00778,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00389,"100":0.00389,"101":0,"102":0.00389,"103":0.00778,"104":0.10503,"105":0.64574},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00389,"11":0,"12":0,"13":0.01556,"14":0.06613,"15":0.01945,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00389,"11.1":0.00778,"12.1":0.00778,"13.1":0.07002,"14.1":0.1556,"15.1":0.03501,"15.2-15.3":0.03112,"15.4":0.06224,"15.5":0.17116,"15.6":0.60295,"16.0":0.05057,"16.1":0.01167},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.02508,"8.1-8.4":0.06807,"9.0-9.2":0.01433,"9.3":0.09673,"10.0-10.2":0.02866,"10.3":0.11822,"11.0-11.2":0.01791,"11.3-11.4":0.09315,"12.0-12.1":0.05374,"12.2-12.5":1.74113,"13.0-13.1":0.09315,"13.2":0.03583,"13.3":0.1433,"13.4-13.7":0.60904,"14.0-14.4":1.63723,"14.5-14.8":2.98428,"15.0-15.1":0.81324,"15.2-15.3":1.04969,"15.4":1.59066,"15.5":2.9592,"15.6":16.74849,"16.0":4.15219,"16.1":0.10031},P:{"4":0.23271,"5.0-5.4":0.02024,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01012,"12.0":0.01012,"13.0":0.03035,"14.0":0.03035,"15.0":0.02024,"16.0":0.07082,"17.0":0.172,"18.0":1.27482},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01482,"4.4":0,"4.4.3-4.4.4":0.07408},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.19839,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.70265},H:{"0":0.50326},L:{"0":45.57919},S:{"2.5":0},R:{_:"0"},M:{"0":0.1222},Q:{"13.1":0.02444}}; 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 c20fb40d46ec39..9a5940fb5d5ab5 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00367,"51":0,"52":0,"53":0,"54":0.00367,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.01835,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00367,"92":0,"93":0,"94":0,"95":0,"96":0.00734,"97":0,"98":0.01101,"99":0,"100":0,"101":0,"102":0.06239,"103":1.60379,"104":0.08808,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00734,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.02202,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00367,"79":0,"80":0,"81":0.00367,"83":0,"84":0,"85":0,"86":0.02936,"87":0.01101,"88":0,"89":0,"90":0,"91":0.01835,"92":0.00734,"93":0,"94":0.01835,"95":0,"96":0.02936,"97":0.00367,"98":0.00367,"99":0.00367,"100":0.00367,"101":0.01101,"102":0,"103":1.59645,"104":5.07928,"105":0.00734,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.01101,"60":0.00367,"62":0,"63":0.00734,"64":0.02936,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.10276,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.02569,"13":0,"14":0,"15":0,"16":0.00734,"17":0,"18":0.1468,"79":0,"80":0.02936,"81":0,"83":0,"84":0.06239,"85":0,"86":0,"87":0,"88":0,"89":0.00734,"90":0.00367,"91":0,"92":0.18717,"93":0.00367,"94":0,"95":0.01101,"96":0.00367,"97":0,"98":0.01835,"99":0.01101,"100":0.00367,"101":0.17616,"102":0.02936,"103":0.74134,"104":1.47901,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.02569,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01101,"14.1":0.24956,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0.02202,"16.0":0},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.02101,"12.0-12.1":0,"12.2-12.5":0.03151,"13.0-13.1":0.0105,"13.2":0.0105,"13.3":0.02101,"13.4-13.7":0.08403,"14.0-14.4":0.24158,"14.5-14.8":0.07352,"15.0-15.1":0.2941,"15.2-15.3":0.35712,"15.4":0.40963,"15.5":0.22057,"15.6":0.85078,"16.0":0},P:{"4":0.06023,"5.0-5.4":0,"6.2-6.4":0.03011,"7.2-7.4":0.57218,"8.2":0,"9.2":0.27103,"10.1":0.03011,"11.1-11.2":0.23088,"12.0":0,"13.0":0.3413,"14.0":0.11042,"15.0":0.19073,"16.0":0.15057,"17.0":0.50191,"18.0":0.20076},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.07138},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":78.26286},S:{"2.5":0},R:{_:"0"},M:{"0":0.03798},Q:{"10.4":0.01266},O:{"0":2.14587},H:{"0":0.22773}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00648,"55":0,"56":0.00972,"57":0,"58":0,"59":0.00324,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00324,"89":0,"90":0.00648,"91":0.00972,"92":0,"93":0,"94":0,"95":0,"96":0.00972,"97":0.00324,"98":0.00972,"99":0.00324,"100":0,"101":0,"102":0.00648,"103":0.04537,"104":1.13111,"105":0.36299,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.01296,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00324,"71":0.00324,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00648,"81":0.01945,"83":0,"84":0.00648,"85":0,"86":0.00324,"87":0.00324,"88":0,"89":0.00972,"90":0,"91":0.00648,"92":0.05834,"93":0.00648,"94":0.00324,"95":0,"96":0.02593,"97":0.02269,"98":0.02593,"99":0,"100":0.03565,"101":0.00324,"102":0.05186,"103":0.08751,"104":1.21538,"105":3.66233,"106":0.04213,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.01296,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.43429,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.04537,"91":0.00648,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00972,"13":0,"14":0.00324,"15":0,"16":0,"17":0.01296,"18":0.03565,"79":0,"80":0.00324,"81":0.00972,"83":0,"84":0.02269,"85":0.00972,"86":0,"87":0,"88":0,"89":0.00972,"90":0.00972,"91":0.00648,"92":0.00972,"93":0,"94":0,"95":0.00972,"96":0.03241,"97":0,"98":0,"99":0.01621,"100":0.00972,"101":0.06806,"102":0.02593,"103":0.06482,"104":0.43105,"105":1.33853},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00972,"12.1":0,"13.1":0.00648,"14.1":0.00648,"15.1":0,"15.2-15.3":0,"15.4":0.03241,"15.5":0,"15.6":0,"16.0":0,"16.1":0},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.03054,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.22422,"13.0-13.1":0,"13.2":0.19367,"13.3":0,"13.4-13.7":0.01018,"14.0-14.4":0.21403,"14.5-14.8":0.10181,"15.0-15.1":0.22422,"15.2-15.3":0.12218,"15.4":0.04073,"15.5":0.36698,"15.6":0.73374,"16.0":0,"16.1":0},P:{"4":0.34988,"5.0-5.4":0.02999,"6.2-6.4":0.12996,"7.2-7.4":0.79974,"8.2":0,"9.2":0.03999,"10.1":0.02999,"11.1-11.2":0.15995,"12.0":0,"13.0":0.06998,"14.0":0.10996,"15.0":0.10996,"16.0":0.20993,"17.0":0.37987,"18.0":0.43985},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.1313},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01296,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.42582},H:{"0":0.35194},L:{"0":83.00966},S:{"2.5":0},R:{_:"0"},M:{"0":0.01352},Q:{"13.1":0.00676}}; 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 a7ebbbc367a611..c74bf8d49b2535 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.03051,"47":0.00277,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00277,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00277,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00277,"82":0,"83":0,"84":0,"85":0,"86":0.00277,"87":0,"88":0,"89":0,"90":0,"91":0.0111,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00277,"100":0.01942,"101":0.00555,"102":0.03884,"103":0.82943,"104":0.0638,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.00277,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00555,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00277,"65":0,"66":0.03884,"67":0,"68":0.00277,"69":0,"70":0.00555,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00277,"80":0.00277,"81":0.07212,"83":0.19695,"84":0,"85":0,"86":0.00277,"87":0,"88":0.01942,"89":0.00277,"90":0,"91":0,"92":0.0111,"93":0.00277,"94":0.01664,"95":0,"96":0.0111,"97":0.05271,"98":0.01942,"99":0,"100":0.00832,"101":0.02219,"102":0.10541,"103":0.75175,"104":1.94457,"105":0,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00277,"38":0,"39":0,"40":0,"41":0,"42":0.00277,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00277,"60":0.00277,"62":0,"63":0.19695,"64":0.05825,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.04161,"80":0,"81":0.00277,"82":0.00277,"83":0.00277,"84":0,"85":0.05271,"86":0.01387,"87":0,"88":0,"89":0.19695,"90":0.01387,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00277,"13":0,"14":0.00277,"15":0.00277,"16":0,"17":0,"18":0.00555,"79":0,"80":0,"81":0,"83":0,"84":0.00277,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00277,"91":0,"92":0.00277,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.01387,"102":0.00832,"103":0.10541,"104":0.22192,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00832,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.01387,"15.1":0,"15.2-15.3":0,"15.4":0.00277,"15.5":0.00832,"15.6":0.04438,"16.0":0},G:{"8":0.00907,"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.00227,"10.0-10.2":0.00453,"10.3":0.01587,"11.0-11.2":0.05591,"11.3-11.4":0,"12.0-12.1":0.02493,"12.2-12.5":0.65882,"13.0-13.1":0.08462,"13.2":0.01133,"13.3":0.01813,"13.4-13.7":0.02493,"14.0-14.4":0.95951,"14.5-14.8":0.40269,"15.0-15.1":0.13826,"15.2-15.3":0.28332,"15.4":0.83712,"15.5":2.04067,"15.6":1.93414,"16.0":0.05364},P:{"4":0.09099,"5.0-5.4":0.02022,"6.2-6.4":0.02022,"7.2-7.4":0.25276,"8.2":0,"9.2":0.12132,"10.1":0.45496,"11.1-11.2":0.18199,"12.0":0,"13.0":0.04044,"14.0":0.1011,"15.0":0.02022,"16.0":0.15165,"17.0":0.60662,"18.0":0.33364},I:{"0":0,"3":0,"4":0.00241,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01045,"4.2-4.3":0.01045,"4.4":0,"4.4.3-4.4.4":0.13107},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01942,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":80.60102},S:{"2.5":0.0289},R:{_:"0"},M:{"0":0.04336},Q:{"10.4":0.00723},O:{"0":0.85989},H:{"0":1.51189}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.03215,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00378,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00378,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00378,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00946,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01324,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00378,"102":0.00378,"103":0.02647,"104":0.23259,"105":0.02647,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00189,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00946,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00189,"47":0,"48":0,"49":0.00189,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00378,"60":0,"61":0,"62":0.00567,"63":0.00189,"64":0,"65":0,"66":0.03782,"67":0,"68":0.00378,"69":0.00189,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00378,"78":0.00189,"79":0.01135,"80":0.01702,"81":0.03971,"83":0.00189,"84":0,"85":0,"86":0,"87":0.00189,"88":0,"89":0,"90":0.00189,"91":0,"92":0.00567,"93":0,"94":0.00189,"95":0.00946,"96":0.00378,"97":0.03215,"98":0.00189,"99":0.00378,"100":0.00189,"101":0.00378,"102":0.00567,"103":0.03404,"104":0.44817,"105":1.15918,"106":0.00756,"107":0.00378,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00189,"60":0.00756,"62":0,"63":0.0624,"64":0.04917,"65":0.01702,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00378,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00189,"86":0,"87":0,"88":0,"89":0.00567,"90":0.05673,"91":0.00189,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00756,"13":0,"14":0,"15":0,"16":0,"17":0.00189,"18":0.01702,"79":0,"80":0,"81":0.00189,"83":0,"84":0.00189,"85":0,"86":0,"87":0,"88":0,"89":0.00189,"90":0,"91":0,"92":0.00567,"93":0,"94":0,"95":0,"96":0,"97":0.00567,"98":0,"99":0,"100":0.00189,"101":0.00378,"102":0.00189,"103":0.00756,"104":0.0416,"105":0.17397},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00378,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00378,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00189,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.0208,"15.6":0.00756,"16.0":0.00189,"16.1":0},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.01176,"8.1-8.4":0,"9.0-9.2":0.0047,"9.3":0.00235,"10.0-10.2":0.0243,"10.3":0.02665,"11.0-11.2":0.03684,"11.3-11.4":0.0047,"12.0-12.1":0.01725,"12.2-12.5":1.32557,"13.0-13.1":0.07525,"13.2":0.029,"13.3":0.1411,"13.4-13.7":0.08231,"14.0-14.4":1.43218,"14.5-14.8":0.6671,"15.0-15.1":0.17481,"15.2-15.3":0.1654,"15.4":0.17951,"15.5":0.80349,"15.6":1.99815,"16.0":0.53383,"16.1":0},P:{"4":0.18331,"5.0-5.4":0.0611,"6.2-6.4":0.02037,"7.2-7.4":0.27497,"8.2":0,"9.2":0.12221,"10.1":0.22405,"11.1-11.2":0.23423,"12.0":0.05092,"13.0":0.02037,"14.0":0.07129,"15.0":0.01018,"16.0":0.0611,"17.0":1.35448,"18.0":0.33607},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00556,"4.2-4.3":0.02112,"4.4":0,"4.4.3-4.4.4":0.08169},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00756,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.21083},H:{"0":1.62754},L:{"0":83.4},S:{"2.5":0.00811},R:{_:"0"},M:{"0":0.09731},Q:{"13.1":0}}; 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 ad22104fc7bfdf..a91ed7ed822d23 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0128,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00427,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00427,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01707,"103":0.71686,"104":0.03414,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00427,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00427,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00427,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.02987,"77":0,"78":0,"79":0.0128,"80":0,"81":0.0256,"83":0.08107,"84":0.00427,"85":0,"86":0,"87":0.04694,"88":0.00427,"89":0.00427,"90":0.02134,"91":0.00853,"92":0.00427,"93":0.00853,"94":0,"95":0.02987,"96":0.00853,"97":0.00853,"98":0.00427,"99":0.00427,"100":0.05974,"101":0.01707,"102":0.15788,"103":2.70101,"104":7.29657,"105":0.00853,"106":0.00427,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.04694,"64":0.02134,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.02134,"84":0,"85":0,"86":0,"87":0,"88":0.0128,"89":0.20908,"90":0.01707,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00427,"14":0.00853,"15":0,"16":0,"17":0,"18":0.00853,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00427,"93":0,"94":0,"95":0.00427,"96":0,"97":0.00427,"98":0.01707,"99":0,"100":0,"101":0.04694,"102":0.0128,"103":0.77233,"104":2.03109,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00427,"9":0,"10":0,"11":0.00427,"12":0.00853,"13":0.00427,"14":0.04694,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00427,"11.1":0.00427,"12.1":0.00853,"13.1":0.08534,"14.1":0.09814,"15.1":0.00853,"15.2-15.3":0.02134,"15.4":0.26029,"15.5":0.30722,"15.6":0.69552,"16.0":0.0256},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.04754,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.16639,"10.0-10.2":0,"10.3":0.19412,"11.0-11.2":0.01981,"11.3-11.4":0.02575,"12.0-12.1":0,"12.2-12.5":0.68933,"13.0-13.1":0,"13.2":0.00396,"13.3":0.04358,"13.4-13.7":0.04754,"14.0-14.4":0.22978,"14.5-14.8":0.68933,"15.0-15.1":0.12677,"15.2-15.3":0.49917,"15.4":1.05974,"15.5":4.95998,"15.6":9.6268,"16.0":1.37271},P:{"4":0.21521,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.27978,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0538,"12.0":0.26901,"13.0":0.02152,"14.0":0.03228,"15.0":0.21521,"16.0":0.10761,"17.0":1.95843,"18.0":1.65713},I:{"0":0,"3":0,"4":0.02507,"2.1":0,"2.2":0,"2.3":0,"4.1":0.05015,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.91098},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.08107,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":51.38407},S:{"2.5":0},R:{_:"0"},M:{"0":1.03767},Q:{"10.4":0},O:{"0":0.24652},H:{"0":1.98109}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00445,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0757,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00445,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00445,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00445,"103":0.01336,"104":0.44975,"105":0.22265,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00445,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.01336,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.01336,"67":0,"68":0,"69":0,"70":0,"71":0.00445,"72":0,"73":0,"74":0,"75":0,"76":0.05344,"77":0,"78":0,"79":0.01336,"80":0.00445,"81":0.03562,"83":0.0757,"84":0,"85":0.00891,"86":0.00445,"87":0,"88":0.01336,"89":0,"90":0.01781,"91":0.00445,"92":0.00445,"93":0.00891,"94":0.0757,"95":0.01781,"96":0.02227,"97":0.01336,"98":0.00445,"99":0.00445,"100":0.01336,"101":0.01336,"102":0.05789,"103":0.21374,"104":2.64954,"105":8.0911,"106":0.08015,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.05344,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.04453,"90":0.16476,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00445,"14":0,"15":0,"16":0,"17":0,"18":0.01336,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00445,"93":0,"94":0,"95":0,"96":0,"97":0.00891,"98":0.00445,"99":0.00445,"100":0,"101":0,"102":0.00445,"103":0.03562,"104":0.51655,"105":2.70742},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00445,"11":0,"12":0,"13":0.00445,"14":0.01336,"15":0.00891,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00891,"12.1":0.00891,"13.1":0.0757,"14.1":0.08015,"15.1":0.00891,"15.2-15.3":0.00891,"15.4":0.04453,"15.5":0.17367,"15.6":0.99302,"16.0":0.08906,"16.1":0.00445},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.01341,"10.0-10.2":0,"10.3":0.21075,"11.0-11.2":0.01724,"11.3-11.4":0.00766,"12.0-12.1":0.00383,"12.2-12.5":0.40235,"13.0-13.1":0,"13.2":0,"13.3":0.03449,"13.4-13.7":0.03066,"14.0-14.4":0.13412,"14.5-14.8":0.33912,"15.0-15.1":0.11879,"15.2-15.3":0.56329,"15.4":0.26248,"15.5":1.45612,"15.6":10.09701,"16.0":4.0618,"16.1":0.94073},P:{"4":0.12814,"5.0-5.4":0.01068,"6.2-6.4":0,"7.2-7.4":0.29898,"8.2":0,"9.2":0.01068,"10.1":0.02136,"11.1-11.2":0.06407,"12.0":0.02136,"13.0":0.04271,"14.0":0.02136,"15.0":0.01068,"16.0":0.10678,"17.0":0.45915,"18.0":2.63746},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.67198,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.68878},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01781,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.12203},H:{"0":1.81703},L:{"0":53.43755},S:{"2.5":0},R:{_:"0"},M:{"0":0.41048},Q:{"13.1":0}}; 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 0bf44e8a250236..bac941c895be03 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.03187,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.03187,"104":0,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.0602,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.30453,"99":0,"100":0.21246,"101":0,"102":0.03187,"103":0.09207,"104":0.42492,"105":0,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.12039,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0.03187,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.09207,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.03187,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.18059,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0.36472,"15.2-15.3":0.0602,"15.4":2.00067,"15.5":4.91137,"15.6":2.39372,"16.0":0.42492},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.68911,"15.2-15.3":1.84054,"15.4":8.784,"15.5":58.11222,"15.6":16.75677,"16.0":1.03803},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":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 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":0.47082},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.155,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.1925,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.115,"105":0,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0.0375,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.0775,"101":0,"102":0.0375,"103":0.155,"104":0.115,"105":0.1925,"106":0.0375,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.0375,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.0775,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0.0775},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0.0375,"15.2-15.3":0.0375,"15.4":1.0375,"15.5":2.5375,"15.6":0.4625,"16.0":0.0775,"16.1":0.385},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.19642,"15.0-15.1":0.19642,"15.2-15.3":0.19642,"15.4":11.84115,"15.5":28.33083,"15.6":36.2904,"16.0":15.71337,"16.1":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":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 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":0.77},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"13.1":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 de04e1d3f29e21..65c13c3f96e9d2 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00372,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00372,"79":0,"80":0.00372,"81":0.00372,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00744,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00372,"102":0.00372,"103":0.17489,"104":0.03349,"105":0.00372,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00744,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00372,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00372,"69":0,"70":0.01488,"71":0,"72":0,"73":0,"74":0,"75":0.00372,"76":0,"77":0.04465,"78":0.00372,"79":0.01116,"80":0.00744,"81":0.01116,"83":0.01488,"84":0.02233,"85":0.02233,"86":0.02605,"87":0.02605,"88":0.00372,"89":0.00744,"90":0.04093,"91":0.00372,"92":0.00372,"93":0.00372,"94":0.03721,"95":0.00372,"96":0.01488,"97":0.01488,"98":0.01116,"99":0.01116,"100":0.01861,"101":0.03721,"102":0.07442,"103":2.3033,"104":6.67547,"105":0.01488,"106":0.00372,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00372,"64":0.00372,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.04837,"90":0.00744,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00372,"79":0,"80":0,"81":0,"83":0,"84":0.00372,"85":0,"86":0.00372,"87":0,"88":0,"89":0,"90":0,"91":0.00372,"92":0.00372,"93":0,"94":0.00372,"95":0.00372,"96":0.00372,"97":0.00372,"98":0.00372,"99":0.00372,"100":0.00372,"101":0.01116,"102":0.01116,"103":0.56931,"104":1.58515,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00372,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01116,"15":0.00372,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00372,"13.1":0.01116,"14.1":0.02605,"15.1":0.00744,"15.2-15.3":0.00744,"15.4":0.02605,"15.5":0.07442,"15.6":0.16745,"16.0":0.00372},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00495,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.18798,"9.3":0.00989,"10.0-10.2":0.00247,"10.3":0.00989,"11.0-11.2":0.02721,"11.3-11.4":0,"12.0-12.1":0.09893,"12.2-12.5":0.43779,"13.0-13.1":0.2325,"13.2":0.04699,"13.3":0.26465,"13.4-13.7":1.07344,"14.0-14.4":4.47433,"14.5-14.8":3.50971,"15.0-15.1":0.80137,"15.2-15.3":0.36853,"15.4":0.56888,"15.5":3.39841,"15.6":9.05995,"16.0":0.14346},P:{"4":0.01011,"5.0-5.4":0.01011,"6.2-6.4":0,"7.2-7.4":0,"8.2":0.01011,"9.2":0.01011,"10.1":0.02022,"11.1-11.2":0.01011,"12.0":0.08088,"13.0":0.16177,"14.0":0.08088,"15.0":0.05055,"16.0":0.1921,"17.0":4.15535,"18.0":6.11676},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":1.39698},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00388,"10":0,"11":0.17473,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":35.21268},S:{"2.5":0},R:{_:"0"},M:{"0":0.08163},Q:{"10.4":0.00628},O:{"0":0.05023},H:{"0":0.10106}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00385,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00385,"76":0,"77":0,"78":0.0077,"79":0.00385,"80":0.00385,"81":0.00385,"82":0.00385,"83":0.00385,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00385,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00385,"103":0.00385,"104":0.14622,"105":0.04618,"106":0.00385,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.0077,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00385,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00385,"64":0,"65":0,"66":0,"67":0,"68":0.00385,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00385,"75":0.00385,"76":0,"77":0.04618,"78":0.00385,"79":0.00385,"80":0.01154,"81":0.01154,"83":0.02694,"84":0.05387,"85":0.05387,"86":0.06542,"87":0.03848,"88":0.00385,"89":0.00385,"90":0.03463,"91":0.00385,"92":0.00385,"93":0.00385,"94":0.03078,"95":0.00385,"96":0.01154,"97":0.0077,"98":0.0077,"99":0.01154,"100":0.01924,"101":0.03463,"102":0.05772,"103":0.11159,"104":1.90091,"105":7.51899,"106":0.10774,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00385,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00385,"71":0.00385,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.04618,"91":0.00385,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00385,"79":0,"80":0,"81":0,"83":0.00385,"84":0.00385,"85":0.0077,"86":0.00385,"87":0.00385,"88":0,"89":0,"90":0,"91":0.00385,"92":0.00385,"93":0,"94":0.00385,"95":0.00385,"96":0.00385,"97":0.00385,"98":0.00385,"99":0.0077,"100":0.00385,"101":0.0077,"102":0.0077,"103":0.01924,"104":0.2963,"105":1.97018},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00385,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0077,"15":0.00385,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00385,"10.1":0,"11.1":0,"12.1":0.00385,"13.1":0.01154,"14.1":0.02309,"15.1":0.0077,"15.2-15.3":0.0077,"15.4":0.01924,"15.5":0.04233,"15.6":0.1847,"16.0":0.04233,"16.1":0.00385},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00749,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.19473,"9.3":0.00999,"10.0-10.2":0.00499,"10.3":0.00749,"11.0-11.2":0.02996,"11.3-11.4":0,"12.0-12.1":0.09487,"12.2-12.5":0.40693,"13.0-13.1":0.23966,"13.2":0.05492,"13.3":0.25964,"13.4-13.7":1.05352,"14.0-14.4":4.36137,"14.5-14.8":3.31534,"15.0-15.1":0.72398,"15.2-15.3":0.28959,"15.4":0.38696,"15.5":1.04603,"15.6":9.34187,"16.0":2.89094,"16.1":0.03495},P:{"4":0.01013,"5.0-5.4":0.01013,"6.2-6.4":0,"7.2-7.4":0,"8.2":0.01013,"9.2":0,"10.1":0.02026,"11.1-11.2":0.02026,"12.0":0.06079,"13.0":0.15196,"14.0":0.06079,"15.0":0.02026,"16.0":0.14183,"17.0":0.51668,"18.0":9.10768},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":2.47679},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00403,"10":0,"11":0.16913,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.04922},H:{"0":0.08736},L:{"0":34.03244},S:{"2.5":0},R:{_:"0"},M:{"0":0.07998},Q:{"13.1":0.00615}}; 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 9cac2b18a13125..58d2806b3b850f 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00286,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.06281,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00286,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01142,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00286,"101":0.00286,"102":0.01713,"103":0.19985,"104":0.03426,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00286,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00286,"48":0,"49":0.00286,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00286,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00286,"65":0.00286,"66":0,"67":0.00857,"68":0.00286,"69":0,"70":0,"71":0.00286,"72":0,"73":0.00286,"74":0,"75":0.00286,"76":0,"77":0,"78":0.00571,"79":0.00571,"80":0.00286,"81":0.00571,"83":0.00286,"84":0.00286,"85":0.00571,"86":0.00857,"87":0.00571,"88":0.00857,"89":0.00571,"90":0.01142,"91":0.00857,"92":0.04854,"93":0.00286,"94":0.00286,"95":0.00857,"96":0.00571,"97":0.00571,"98":0.00571,"99":0.00857,"100":0.00857,"101":0.02284,"102":0.05139,"103":1.26762,"104":3.60016,"105":0.01428,"106":0.00571,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00571,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00286,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00286,"47":0,"48":0,"49":0,"50":0,"51":0.00286,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00286,"62":0,"63":0.06567,"64":0.05996,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00571,"89":0.24839,"90":0.01428,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.01428,"14":0,"15":0,"16":0,"17":0,"18":0.00286,"79":0,"80":0,"81":0,"83":0,"84":0.00286,"85":0,"86":0.00286,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00286,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00286,"100":0.00286,"101":0.03141,"102":0.00571,"103":0.197,"104":0.53389,"105":0},E:{"4":0,"5":0,"6":0,"7":0.0257,"8":0,"9":0,"10":0,"11":0,"12":0.00286,"13":0.00857,"14":0.05139,"15":0.01428,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00286,"12.1":0.01142,"13.1":0.03997,"14.1":0.15988,"15.1":0.0257,"15.2-15.3":0.01713,"15.4":0.06852,"15.5":0.19985,"15.6":0.28836,"16.0":0.00571},G:{"8":0.00409,"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.00818,"8.1-8.4":0.00818,"9.0-9.2":0.00409,"9.3":0.20047,"10.0-10.2":0.01636,"10.3":0.08182,"11.0-11.2":0.02864,"11.3-11.4":0.045,"12.0-12.1":0.04909,"12.2-12.5":0.92461,"13.0-13.1":0.06546,"13.2":0.05319,"13.3":0.20456,"13.4-13.7":0.38048,"14.0-14.4":2.01696,"14.5-14.8":4.26303,"15.0-15.1":1.29282,"15.2-15.3":2.0006,"15.4":3.09704,"15.5":10.35483,"15.6":15.5302,"16.0":0.24956},P:{"4":0.17483,"5.0-5.4":0,"6.2-6.4":0.01028,"7.2-7.4":0.11312,"8.2":0,"9.2":0.02057,"10.1":0.01028,"11.1-11.2":0.07199,"12.0":0.04114,"13.0":0.09256,"14.0":0.12341,"15.0":0.05142,"16.0":0.19539,"17.0":1.62486,"18.0":1.70713},I:{"0":0,"3":0,"4":0.01821,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.03643,"4.4":0,"4.4.3-4.4.4":0.11535},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0257,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":42.08725},S:{"2.5":0},R:{_:"0"},M:{"0":0.12861},Q:{"10.4":0},O:{"0":1.62906},H:{"0":0.85232}}; +module.exports={C:{"2":0,"3":0,"4":0.00318,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00318,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.06998,"53":0,"54":0,"55":0.00636,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00954,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01591,"103":0.01272,"104":0.17496,"105":0.07953,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00636,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00318,"48":0,"49":0.00318,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00636,"57":0,"58":0.00318,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00318,"65":0.00318,"66":0,"67":0,"68":0.00636,"69":0.00318,"70":0.00636,"71":0,"72":0,"73":0.00318,"74":0,"75":0.00318,"76":0.00318,"77":0,"78":0.00636,"79":0.00318,"80":0.00636,"81":0.00318,"83":0.00318,"84":0.00318,"85":0.01272,"86":0.01272,"87":0.00636,"88":0.00636,"89":0.00318,"90":0.00954,"91":0.00954,"92":0.04453,"93":0.00318,"94":0.00636,"95":0.00954,"96":0.01272,"97":0.00636,"98":0.00636,"99":0.00954,"100":0.00636,"101":0.02863,"102":0.03817,"103":0.10815,"104":1.05291,"105":5.15322,"106":0.10179,"107":0.00318,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00954,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00318,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00636,"47":0,"48":0,"49":0,"50":0,"51":0.00318,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00318,"60":0.00318,"62":0,"63":0.01909,"64":0.12088,"65":0.00954,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.02863,"90":0.27675,"91":0.01591,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00318,"79":0,"80":0,"81":0,"83":0.00318,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00318,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00318,"100":0.00318,"101":0.01591,"102":0.00318,"103":0.00954,"104":0.13996,"105":0.78253},E:{"4":0,"5":0,"6":0,"7":0.03499,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00636,"14":0.07316,"15":0.01909,_:"0","3.1":0,"3.2":0,"5.1":0.00318,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00318,"12.1":0.00954,"13.1":0.04135,"14.1":0.15269,"15.1":0.03181,"15.2-15.3":0.01591,"15.4":0.0668,"15.5":0.12406,"15.6":0.48033,"16.0":0.04453,"16.1":0.00636},G:{"8":0.0125,"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.01666,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.17494,"10.0-10.2":0.00417,"10.3":0.08747,"11.0-11.2":0.0125,"11.3-11.4":0.03749,"12.0-12.1":0.05831,"12.2-12.5":0.83307,"13.0-13.1":0.11663,"13.2":0.04582,"13.3":0.20827,"13.4-13.7":0.40404,"14.0-14.4":1.95771,"14.5-14.8":3.57802,"15.0-15.1":0.97052,"15.2-15.3":1.61198,"15.4":2.19096,"15.5":4.47773,"15.6":16.73213,"16.0":7.07273,"16.1":0.05415},P:{"4":0.2258,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.43107,"8.2":0.01026,"9.2":0.03079,"10.1":0.01026,"11.1-11.2":0.10264,"12.0":0.02053,"13.0":0.08211,"14.0":0.14369,"15.0":0.09237,"16.0":0.20527,"17.0":0.48238,"18.0":3.1509},I:{"0":0,"3":0,"4":0.00522,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01565,"4.4":0,"4.4.3-4.4.4":0.07823},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00318,"11":0.02227,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":1.49336},H:{"0":0.8328},L:{"0":39.33166},S:{"2.5":0},R:{_:"0"},M:{"0":0.12956},Q:{"13.1":0}}; 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 f65cbc3d85b31f..11381c7af11875 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00459,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00459,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00919,"99":0,"100":0,"101":0.00919,"102":0.01837,"103":1.33656,"104":0.13779,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00459,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00459,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.05052,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00919,"76":0.03215,"77":0,"78":0,"79":0.00459,"80":0,"81":0,"83":0.00919,"84":0,"85":0,"86":0.00919,"87":0.00919,"88":0.00919,"89":0.00919,"90":0.00459,"91":0.01378,"92":0.01837,"93":0.01837,"94":0,"95":0,"96":0.00459,"97":0.00459,"98":0.01837,"99":0.01378,"100":0.01378,"101":0.02297,"102":0.21128,"103":4.0051,"104":7.56467,"105":0.01837,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.38122,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.03674,"16":0,"17":0,"18":0.00459,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00459,"86":0,"87":0,"88":0,"89":0,"90":0.00459,"91":0,"92":0.00459,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00459,"99":0,"100":0.04134,"101":0.01378,"102":0.01378,"103":1.07476,"104":2.00255,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00459,"13":0.01837,"14":0.04593,"15":0.04593,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00459,"11.1":0,"12.1":0.02756,"13.1":0.16076,"14.1":0.28017,"15.1":0.04593,"15.2-15.3":0.05971,"15.4":0.25721,"15.5":0.4593,"15.6":1.27226,"16.0":0.00459},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.03303,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01835,"10.0-10.2":0,"10.3":0.0734,"11.0-11.2":0.00367,"11.3-11.4":0.00367,"12.0-12.1":0.0367,"12.2-12.5":0.45874,"13.0-13.1":0.00367,"13.2":0.0367,"13.3":0.01835,"13.4-13.7":0.08441,"14.0-14.4":1.69551,"14.5-14.8":1.82029,"15.0-15.1":0.27524,"15.2-15.3":0.97253,"15.4":1.01657,"15.5":7.89402,"15.6":22.10032,"16.0":0.13946},P:{"4":0.04151,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.51892,"8.2":0,"9.2":0,"10.1":0.01038,"11.1-11.2":0.05189,"12.0":0.01038,"13.0":0.11416,"14.0":0.03114,"15.0":0.01038,"16.0":0.10378,"17.0":1.61904,"18.0":2.77105},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0504,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.45356},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0101,"9":0.00505,"10":0.00505,"11":0.03031,"5.5":0},J:{"7":0,"10":0.01622},N:{"10":0,"11":0},L:{"0":34.45378},S:{"2.5":0},R:{_:"0"},M:{"0":0.20547},Q:{"10.4":0},O:{"0":0.02163},H:{"0":0.05631}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01529,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.0051,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.01019,"99":0,"100":0,"101":0,"102":0,"103":0.07643,"104":0.66235,"105":0.18342,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01019,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.01019,"64":0,"65":0,"66":0,"67":0.0051,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.02038,"77":0.01019,"78":0,"79":0.07643,"80":0,"81":0,"83":0.01019,"84":0.0051,"85":0,"86":0.01529,"87":0.0051,"88":0.0051,"89":0,"90":0.0051,"91":0.01019,"92":0.04076,"93":0.0051,"94":0.01529,"95":0.0051,"96":0,"97":0,"98":0.01529,"99":0.01019,"100":0.01529,"101":0.0051,"102":0.107,"103":0.3108,"104":3.45951,"105":12.36557,"106":0.14776,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0.0051,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.04586,"90":0.77954,"91":0.0051,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.04076,"13":0,"14":0,"15":0.03057,"16":0,"17":0,"18":0.0051,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.01019,"101":0.0051,"102":0.01019,"103":0.02038,"104":0.60121,"105":2.72583},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0051,"14":0.03057,"15":0.01529,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.0051,"12.1":0.03567,"13.1":0.14776,"14.1":0.2038,"15.1":0.02548,"15.2-15.3":0.05605,"15.4":0.16304,"15.5":0.27004,"15.6":1.87496,"16.0":0.1019,"16.1":0.01529},G:{"8":0.00713,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00713,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03563,"10.0-10.2":0,"10.3":0.0855,"11.0-11.2":0.00713,"11.3-11.4":0.01069,"12.0-12.1":0.03563,"12.2-12.5":0.5807,"13.0-13.1":0.00356,"13.2":0.00356,"13.3":0.01781,"13.4-13.7":0.06413,"14.0-14.4":0.85502,"14.5-14.8":0.99752,"15.0-15.1":0.17813,"15.2-15.3":0.26719,"15.4":0.64126,"15.5":1.54615,"15.6":25.5614,"16.0":4.22164,"16.1":0.03563},P:{"4":0.11418,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.35292,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.04152,"12.0":0.01038,"13.0":0.0519,"14.0":0.02076,"15.0":0,"16.0":0.07266,"17.0":0.17646,"18.0":4.33889},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.25576,"4.4":0,"4.4.3-4.4.4":0.17051},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02038,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.03434},H:{"0":0.05572},L:{"0":31.16706},S:{"2.5":0},R:{_:"0"},M:{"0":0.16677},Q:{"13.1":0}}; 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 e7ec4b7ace75f1..c86aa8f982ade7 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00467,"52":0.18672,"53":0,"54":0,"55":0,"56":0.00934,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00467,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00467,"79":0.014,"80":0,"81":0,"82":0,"83":0,"84":0.00467,"85":0,"86":0,"87":0,"88":0.00467,"89":0,"90":0,"91":0.03268,"92":0.00467,"93":0.00467,"94":0.00467,"95":0.02334,"96":0.00467,"97":0.00934,"98":0.014,"99":0.00934,"100":0.014,"101":0.03734,"102":0.03268,"103":0.71887,"104":0.12604,"105":0.00467,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.00467,"28":0,"29":0,"30":0,"31":0.00467,"32":0.00467,"33":0,"34":0.00467,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00467,"41":0.00467,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.014,"50":0,"51":0.00467,"52":0,"53":0,"54":0,"55":0,"56":0.00467,"57":0.00467,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00467,"66":0,"67":0.00467,"68":0.00467,"69":0.014,"70":0.00467,"71":0.00467,"72":0.00467,"73":0,"74":0.03268,"75":0,"76":0.00467,"77":0,"78":0.00467,"79":0.02801,"80":0.03268,"81":0.02334,"83":0.03268,"84":0.04201,"85":0.04668,"86":0.07002,"87":0.04668,"88":0.01867,"89":0.02334,"90":0.04201,"91":0.06068,"92":0.02801,"93":0.02334,"94":0.01867,"95":0.02801,"96":0.03734,"97":0.05135,"98":0.05602,"99":0.05135,"100":0.06535,"101":0.09803,"102":0.30342,"103":3.1369,"104":8.36972,"105":0.01867,"106":0.014,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.014,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.014,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00467,"71":0.00467,"72":0.014,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01867,"80":0,"81":0.00467,"82":0.00467,"83":0,"84":0.00467,"85":0.07936,"86":0.00467,"87":0.00467,"88":0.01867,"89":1.35839,"90":0.22873,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0.31276,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00934,"79":0,"80":0,"81":0,"83":0,"84":0.00934,"85":0.00467,"86":0.00467,"87":0.00467,"88":0.00467,"89":0.00934,"90":0.00934,"91":0.00467,"92":0.00934,"93":0.00467,"94":0.00467,"95":0.00467,"96":0.00467,"97":0.00467,"98":0.00934,"99":0.00467,"100":0.00934,"101":0.01867,"102":0.01867,"103":0.34543,"104":0.77956,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00467,"10":0,"11":0,"12":0,"13":0.02334,"14":0.04668,"15":0.00934,_:"0","3.1":0,"3.2":0,"5.1":0.06068,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00467,"13.1":0.04201,"14.1":0.09803,"15.1":0.04201,"15.2-15.3":0.01867,"15.4":0.1027,"15.5":0.24274,"15.6":0.3361,"16.0":0.00934},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.00423,"8.1-8.4":0.01693,"9.0-9.2":0.00212,"9.3":0.03386,"10.0-10.2":0.0127,"10.3":0.02963,"11.0-11.2":0.02116,"11.3-11.4":0.01905,"12.0-12.1":0.02116,"12.2-12.5":0.62434,"13.0-13.1":0.04868,"13.2":0.04233,"13.3":0.08042,"13.4-13.7":0.3746,"14.0-14.4":0.84445,"14.5-14.8":1.51958,"15.0-15.1":0.66455,"15.2-15.3":0.89736,"15.4":1.88995,"15.5":5.62118,"15.6":8.14182,"16.0":0.22646},P:{"4":0.11202,"5.0-5.4":0,"6.2-6.4":0.01018,"7.2-7.4":0.09165,"8.2":0,"9.2":0.02037,"10.1":0.01018,"11.1-11.2":0.09165,"12.0":0.02037,"13.0":0.07128,"14.0":0.07128,"15.0":0.07128,"16.0":0.16293,"17.0":0.86558,"18.0":0.88594},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00919,"4.4":0,"4.4.3-4.4.4":0.08882},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05602,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":50.49196},S:{"2.5":0},R:{_:"0"},M:{"0":0.1493},Q:{"10.4":0.00533},O:{"0":0.44256},H:{"0":0.29278}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00394,"48":0,"49":0,"50":0,"51":0.00394,"52":0.12214,"53":0,"54":0,"55":0.00394,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00394,"91":0.02758,"92":0,"93":0,"94":0,"95":0,"96":0.00394,"97":0,"98":0.00394,"99":0.00394,"100":0.00788,"101":0.00788,"102":0.01182,"103":0.03546,"104":0.42158,"105":0.16548,"106":0.00394,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00788,"50":0,"51":0.01182,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00394,"66":0,"67":0,"68":0.00394,"69":0.00394,"70":0.00394,"71":0.00788,"72":0.00788,"73":0.00394,"74":0.00788,"75":0,"76":0,"77":0.00394,"78":0.00394,"79":0.02758,"80":0.01576,"81":0.00788,"83":0.01576,"84":0.01182,"85":0.00788,"86":0.0197,"87":0.0197,"88":0.01182,"89":0.00788,"90":0.00394,"91":0.03152,"92":0.01182,"93":0.01182,"94":0.00394,"95":0.00788,"96":0.01576,"97":0.03152,"98":0.02758,"99":0.01576,"100":0.02758,"101":0.03546,"102":0.09456,"103":0.18124,"104":1.8124,"105":6.74528,"106":0.12214,"107":0.00394,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00394,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.02364,"73":0,"74":0,"75":0,"76":0.00788,"77":0,"78":0,"79":0.00788,"80":0,"81":0,"82":0,"83":0,"84":0.00394,"85":0.06304,"86":0.00394,"87":0,"88":0.00394,"89":0.05516,"90":0.85892,"91":0.0788,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0.20488,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00788,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00394,"86":0,"87":0,"88":0,"89":0.00394,"90":0,"91":0,"92":0.00394,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00394,"101":0.00788,"102":0.00394,"103":0.00788,"104":0.12608,"105":0.71314},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00394,"14":0.02364,"15":0.00788,_:"0","3.1":0,"3.2":0,"5.1":0.03546,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01576,"14.1":0.05516,"15.1":0.0197,"15.2-15.3":0.01182,"15.4":0.0985,"15.5":0.0788,"15.6":0.2758,"16.0":0.04728,"16.1":0.00394},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.0113,"9.0-9.2":0.00226,"9.3":0.02713,"10.0-10.2":0.00904,"10.3":0.02487,"11.0-11.2":0.02487,"11.3-11.4":0.00904,"12.0-12.1":0.02261,"12.2-12.5":0.67601,"13.0-13.1":0.02939,"13.2":0.01809,"13.3":0.07913,"13.4-13.7":0.22157,"14.0-14.4":0.82297,"14.5-14.8":1.41758,"15.0-15.1":0.52905,"15.2-15.3":0.89984,"15.4":1.37236,"15.5":2.84646,"15.6":8.99383,"16.0":4.11483,"16.1":0.06783},P:{"4":0.15308,"5.0-5.4":0,"6.2-6.4":0.01021,"7.2-7.4":0.10205,"8.2":0,"9.2":0.03062,"10.1":0.02041,"11.1-11.2":0.07144,"12.0":0.03062,"13.0":0.08164,"14.0":0.09185,"15.0":0.06123,"16.0":0.17349,"17.0":0.30615,"18.0":1.61241},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0026,"4.2-4.3":0.0078,"4.4":0,"4.4.3-4.4.4":0.08324},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04728,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.35148},H:{"0":0.21228},L:{"0":56.01628},S:{"2.5":0},R:{_:"0"},M:{"0":0.05454},Q:{"13.1":0.01212}}; 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 ab3cc67272b160..ab3f70611451bb 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,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00301,"48":0,"49":0,"50":0,"51":0,"52":0.00602,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00902,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00301,"67":0,"68":0,"69":0,"70":0,"71":0.01805,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00301,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00301,"85":0,"86":0,"87":0,"88":0.00301,"89":0,"90":0,"91":0.00301,"92":0.00301,"93":0.00301,"94":0.00602,"95":0.00902,"96":0,"97":0.00902,"98":0.00301,"99":0.00301,"100":0.00301,"101":0.00602,"102":0.01203,"103":0.38202,"104":0.08422,"105":0.00602,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00301,"39":0,"40":0,"41":0.02106,"42":0,"43":0.00902,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00602,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00902,"57":0,"58":0.00301,"59":0,"60":0,"61":0,"62":0.00301,"63":0.00301,"64":0.00301,"65":0.00301,"66":0,"67":0,"68":0.00602,"69":0.00902,"70":0.00301,"71":0.00301,"72":0.00301,"73":0.00301,"74":0.00602,"75":0.00301,"76":0.00902,"77":0,"78":0.00902,"79":0.03008,"80":0.00301,"81":0.01203,"83":0.02707,"84":0.01203,"85":0.00602,"86":0.02406,"87":0.03309,"88":0.01203,"89":0.01805,"90":0.02707,"91":0.01504,"92":0.03008,"93":0.00902,"94":0.01504,"95":0.01203,"96":0.02707,"97":0.03008,"98":0.02106,"99":0.02707,"100":0.04211,"101":0.05414,"102":0.09024,"103":1.51302,"104":3.91942,"105":0.01203,"106":0.00902,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00301,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00301,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00301,"64":0.00301,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00301,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00301,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00301,"86":0,"87":0,"88":0.00301,"89":0.09024,"90":0.00902,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00301,"13":0,"14":0,"15":0.00301,"16":0.00301,"17":0,"18":0.00902,"79":0,"80":0,"81":0,"83":0,"84":0.00301,"85":0.00301,"86":0.00301,"87":0.00301,"88":0.00301,"89":0.00301,"90":0.00602,"91":0.00301,"92":0.00902,"93":0.00301,"94":0.00301,"95":0.00301,"96":0.00301,"97":0.00301,"98":0.00301,"99":0.00301,"100":0.00902,"101":0.00902,"102":0.02106,"103":0.24966,"104":0.64973,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01203,"14":0.01805,"15":0.00602,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00301,"13.1":0.01504,"14.1":0.03008,"15.1":0.00902,"15.2-15.3":0.01504,"15.4":0.02106,"15.5":0.06317,"15.6":0.12934,"16.0":0.00301},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00457,"5.0-5.1":0,"6.0-6.1":0.00914,"7.0-7.1":0.00457,"8.1-8.4":0,"9.0-9.2":0.0701,"9.3":0.10515,"10.0-10.2":0.01219,"10.3":0.09906,"11.0-11.2":0.05029,"11.3-11.4":0.032,"12.0-12.1":0.04115,"12.2-12.5":1.36393,"13.0-13.1":0.08077,"13.2":0.04419,"13.3":0.06705,"13.4-13.7":0.34289,"14.0-14.4":0.92351,"14.5-14.8":1.52242,"15.0-15.1":0.50443,"15.2-15.3":0.76045,"15.4":0.84427,"15.5":2.98693,"15.6":5.27742,"16.0":0.07925},P:{"4":0.31533,"5.0-5.4":0,"6.2-6.4":0.01017,"7.2-7.4":0.26447,"8.2":0,"9.2":0.12206,"10.1":0.01017,"11.1-11.2":0.12206,"12.0":0.05086,"13.0":0.22378,"14.0":0.18309,"15.0":0.13223,"16.0":0.31533,"17.0":1.16976,"18.0":1.01718},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01371,"4.4":0,"4.4.3-4.4.4":0.17133},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00578,"10":0,"11":0.06942,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":68.92907},S:{"2.5":0},R:{_:"0"},M:{"0":0.11886},Q:{"10.4":0.04195},O:{"0":1.1327},H:{"0":0.26478}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00273,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00273,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00273,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00273,"92":0,"93":0.00273,"94":0.00819,"95":0.00273,"96":0,"97":0.00546,"98":0.00273,"99":0.00273,"100":0.00273,"101":0.00273,"102":0.00546,"103":0.0191,"104":0.29473,"105":0.08733,"106":0.00819,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.01365,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00273,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00273,"57":0,"58":0.00273,"59":0,"60":0,"61":0,"62":0.00273,"63":0.00273,"64":0,"65":0,"66":0,"67":0,"68":0.00273,"69":0.00819,"70":0.00273,"71":0.00546,"72":0.00273,"73":0.00273,"74":0.00273,"75":0.00546,"76":0.00546,"77":0.00273,"78":0.00819,"79":0.01365,"80":0.00546,"81":0.01092,"83":0.02456,"84":0.0191,"85":0.00546,"86":0.01637,"87":0.02183,"88":0.01092,"89":0.01365,"90":0.02729,"91":0.01365,"92":0.02183,"93":0.01092,"94":0.01637,"95":0.01365,"96":0.0191,"97":0.02183,"98":0.01637,"99":0.02456,"100":0.02183,"101":0.03821,"102":0.04639,"103":0.1501,"104":0.99336,"105":3.4631,"106":0.0655,"107":0.00273,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00546,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00546,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00546,"86":0,"87":0,"88":0,"89":0.00819,"90":0.08187,"91":0.00273,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00273,"15":0,"16":0.00273,"17":0.00273,"18":0.00546,"79":0,"80":0,"81":0,"83":0,"84":0.00546,"85":0.00273,"86":0.00273,"87":0.00273,"88":0.00273,"89":0.00546,"90":0.00546,"91":0.00273,"92":0.01092,"93":0,"94":0.00273,"95":0.00273,"96":0.00273,"97":0.00273,"98":0.00273,"99":0.00273,"100":0.01365,"101":0.00546,"102":0.01365,"103":0.02456,"104":0.12826,"105":0.5267},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00819,"14":0.01365,"15":0.00273,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00273,"13.1":0.0191,"14.1":0.03002,"15.1":0.01637,"15.2-15.3":0.01092,"15.4":0.01092,"15.5":0.03002,"15.6":0.15828,"16.0":0.01637,"16.1":0.00273},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.00671,"7.0-7.1":0.00335,"8.1-8.4":0,"9.0-9.2":0.00503,"9.3":0.10399,"10.0-10.2":0.01174,"10.3":0.05535,"11.0-11.2":0.04193,"11.3-11.4":0.04528,"12.0-12.1":0.04193,"12.2-12.5":1.3602,"13.0-13.1":0.05367,"13.2":0.02851,"13.3":0.10566,"13.4-13.7":0.34215,"14.0-14.4":0.9409,"14.5-14.8":1.54804,"15.0-15.1":0.50483,"15.2-15.3":0.65746,"15.4":0.75138,"15.5":1.67886,"15.6":6.17539,"16.0":1.78955,"16.1":0.02851},P:{"4":0.52222,"5.0-5.4":0.01004,"6.2-6.4":0.03013,"7.2-7.4":0.31132,"8.2":0.01004,"9.2":0.09038,"10.1":0.02009,"11.1-11.2":0.16068,"12.0":0.04017,"13.0":0.11047,"14.0":0.15064,"15.0":0.15064,"16.0":0.26111,"17.0":0.49209,"18.0":1.68716},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.03549,"4.4":0,"4.4.3-4.4.4":0.22179},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.10916,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.96704},H:{"0":0.19963},L:{"0":69.48914},S:{"2.5":0},R:{_:"0"},M:{"0":0.10179},Q:{"13.1":0.02181}}; 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 2c3afb3b982a40..967966310ade6b 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00928,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00619,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00928,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00619,"100":0,"101":0.00309,"102":0.01547,"103":0.41137,"104":0.0897,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00309,"39":0,"40":0.00309,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00309,"49":0.00928,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00619,"66":0,"67":0.00309,"68":0,"69":0,"70":0.00309,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00619,"80":0.00309,"81":0.02165,"83":0.00619,"84":0.00619,"85":0.00619,"86":0.01547,"87":0.01237,"88":0.00619,"89":0.00619,"90":0.00309,"91":0.01237,"92":0.00928,"93":0.00309,"94":0.00619,"95":0.00928,"96":0.00928,"97":0.00928,"98":0.01237,"99":0.01237,"100":0.01856,"101":0.02474,"102":0.05877,"103":1.64548,"104":4.14153,"105":0.00928,"106":0.00309,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00928,"64":0.01237,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00309,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00619,"86":0,"87":0,"88":0.00309,"89":0.15156,"90":0.01856,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00309,"17":0,"18":0.00928,"79":0,"80":0,"81":0,"83":0,"84":0.00309,"85":0,"86":0,"87":0,"88":0,"89":0.00309,"90":0,"91":0,"92":0.00309,"93":0,"94":0,"95":0,"96":0.00619,"97":0.00309,"98":0,"99":0,"100":0.00309,"101":0.00619,"102":0.00309,"103":0.20105,"104":0.4856,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01237,"14":0.04949,"15":0.00619,_:"0","3.1":0,"3.2":0,"5.1":0.02474,"6.1":0,"7.1":0,"9.1":0.00619,"10.1":0,"11.1":0.00619,"12.1":0.01237,"13.1":0.03712,"14.1":0.0897,"15.1":0.01547,"15.2-15.3":0.03402,"15.4":0.04949,"15.5":0.19795,"15.6":0.21342,"16.0":0.00619},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.00426,"7.0-7.1":0.02982,"8.1-8.4":0.00213,"9.0-9.2":0.00639,"9.3":0.18528,"10.0-10.2":0.01278,"10.3":0.18315,"11.0-11.2":0.02343,"11.3-11.4":0.04472,"12.0-12.1":0.04472,"12.2-12.5":1.05632,"13.0-13.1":0.01704,"13.2":0.00639,"13.3":0.07454,"13.4-13.7":0.17037,"14.0-14.4":0.55372,"14.5-14.8":1.36726,"15.0-15.1":0.39612,"15.2-15.3":0.78585,"15.4":1.10318,"15.5":5.3881,"15.6":9.66664,"16.0":0.16612},P:{"4":0.19355,"5.0-5.4":0.01019,"6.2-6.4":0.02037,"7.2-7.4":0.3056,"8.2":0,"9.2":0.05093,"10.1":0.02037,"11.1-11.2":0.18336,"12.0":0.04075,"13.0":0.21392,"14.0":0.19355,"15.0":0.11205,"16.0":0.27504,"17.0":2.27164,"18.0":2.58743},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00272,"4.2-4.3":0.00906,"4.4":0,"4.4.3-4.4.4":0.12318},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00309,"9":0,"10":0,"11":0.0433,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":60.28423},S:{"2.5":0},R:{_:"0"},M:{"0":0.13123},Q:{"10.4":0},O:{"0":0.20721},H:{"0":0.32042}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01402,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00701,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00701,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00351,"100":0.00351,"101":0,"102":0.00701,"103":0.03856,"104":0.40658,"105":0.16824,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00351,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01402,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00351,"64":0,"65":0.00701,"66":0,"67":0.00351,"68":0.00351,"69":0.00351,"70":0.00351,"71":0,"72":0,"73":0.00351,"74":0.00351,"75":0,"76":0.00351,"77":0,"78":0.00701,"79":0.01052,"80":0.00351,"81":0.02103,"83":0.00351,"84":0.00701,"85":0.02454,"86":0.01753,"87":0.01402,"88":0.00351,"89":0.00701,"90":0.00351,"91":0.01402,"92":0.01052,"93":0.00351,"94":0.00351,"95":0.00701,"96":0.01402,"97":0.01052,"98":0.01052,"99":0.01402,"100":0.01753,"101":0.01402,"102":0.04907,"103":0.17525,"104":1.45458,"105":6.25292,"106":0.09814,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00351,"64":0.02454,"65":0.00351,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00351,"86":0,"87":0,"88":0,"89":0.01402,"90":0.18927,"91":0.00701,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00351,"15":0.00351,"16":0.00351,"17":0.02103,"18":0.00701,"79":0,"80":0,"81":0,"83":0,"84":0.00351,"85":0,"86":0,"87":0,"88":0,"89":0.00351,"90":0.00351,"91":0,"92":0.00701,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00351,"102":0.00351,"103":0.01402,"104":0.1367,"105":0.701},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00701,"14":0.04557,"15":0.00701,_:"0","3.1":0,"3.2":0,"5.1":0.10515,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01402,"12.1":0.02103,"13.1":0.04557,"14.1":0.09814,"15.1":0.01753,"15.2-15.3":0.04206,"15.4":0.04206,"15.5":0.10866,"15.6":0.30844,"16.0":0.05258,"16.1":0.00351},G:{"8":0.0042,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0021,"7.0-7.1":0.03989,"8.1-8.4":0.0042,"9.0-9.2":0.0021,"9.3":0.13856,"10.0-10.2":0.0084,"10.3":0.14696,"11.0-11.2":0.02309,"11.3-11.4":0.03359,"12.0-12.1":0.02939,"12.2-12.5":0.93212,"13.0-13.1":0.0126,"13.2":0.0063,"13.3":0.06508,"13.4-13.7":0.17635,"14.0-14.4":0.53954,"14.5-14.8":1.25962,"15.0-15.1":0.31491,"15.2-15.3":0.62981,"15.4":0.74528,"15.5":1.91043,"15.6":10.24704,"16.0":3.18265,"16.1":0.02519},P:{"4":0.2039,"5.0-5.4":0,"6.2-6.4":0.01019,"7.2-7.4":0.36701,"8.2":0,"9.2":0.04078,"10.1":0.01019,"11.1-11.2":0.16312,"12.0":0.03058,"13.0":0.13253,"14.0":0.15292,"15.0":0.09175,"16.0":0.26507,"17.0":0.65247,"18.0":4.38377},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00255,"4.2-4.3":0.02551,"4.4":0,"4.4.3-4.4.4":0.10204},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00733,"9":0.00366,"10":0,"11":0.06962,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.18836},H:{"0":0.28286},L:{"0":58.19849},S:{"2.5":0},R:{_:"0"},M:{"0":0.11691},Q:{"13.1":0}}; 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 04a999e158f660..2a233fda97e091 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.01639,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0041,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.05326,"88":0,"89":0.0041,"90":0,"91":0.0041,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.0041,"99":0,"100":0.0041,"101":0,"102":0.03687,"103":0.36873,"104":0.06555,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0041,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.0041,"57":0,"58":0,"59":0,"60":0.0041,"61":0,"62":0,"63":0,"64":0,"65":0.0041,"66":0,"67":0.0041,"68":0,"69":0.0041,"70":0.00819,"71":0,"72":0,"73":0.0041,"74":0.0041,"75":0.00819,"76":0.03687,"77":0.0041,"78":0.0041,"79":0.06555,"80":0,"81":0.02049,"83":0.03687,"84":0,"85":0,"86":0.0041,"87":0.00819,"88":0.00819,"89":0.00819,"90":0.0041,"91":0,"92":0.0041,"93":0.03687,"94":0.00819,"95":0.01639,"96":0.03687,"97":0.03278,"98":0.08194,"99":0.03687,"100":0.04916,"101":0.02458,"102":0.11881,"103":2.85971,"104":6.44868,"105":0.05326,"106":0.03687,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0041,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0041,"64":0.0041,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01229,"89":0.23763,"90":0.02049,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.0041,"15":0,"16":0,"17":0,"18":0.01229,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.0041,"91":0,"92":0.02868,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.07784,"101":0.01229,"102":0.0041,"103":0.66371,"104":1.57325,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00819,"14":0.01229,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.02868,"11.1":0,"12.1":0.0041,"13.1":0.05326,"14.1":0.02868,"15.1":0.01639,"15.2-15.3":0.00819,"15.4":0.06146,"15.5":0.14749,"15.6":0.2745,"16.0":0},G:{"8":0.00767,"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.00153,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.19493,"10.0-10.2":0,"10.3":0.05986,"11.0-11.2":0.01228,"11.3-11.4":0.01074,"12.0-12.1":0.00614,"12.2-12.5":0.50036,"13.0-13.1":0.0046,"13.2":0.0046,"13.3":0.02302,"13.4-13.7":0.02302,"14.0-14.4":0.24711,"14.5-14.8":0.56636,"15.0-15.1":0.18418,"15.2-15.3":0.16423,"15.4":0.76282,"15.5":3.65293,"15.6":8.74555,"16.0":0.17651},P:{"4":0.14722,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.53632,"8.2":0,"9.2":0.03155,"10.1":0.01052,"11.1-11.2":0.10516,"12.0":0.02103,"13.0":0.08413,"14.0":0.05258,"15.0":0.09464,"16.0":0.14722,"17.0":2.76572,"18.0":3.27049},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.13856,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.87097},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00819,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":58.25763},S:{"2.5":0},R:{_:"0"},M:{"0":0.15938},Q:{"10.4":0},O:{"0":0.40731},H:{"0":0.1956}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00442,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00442,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.08846,"88":0,"89":0,"90":0,"91":0.00442,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00442,"99":0,"100":0,"101":0,"102":0.00442,"103":0.01769,"104":0.31846,"105":0.1725,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.01769,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00885,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00442,"68":0.00442,"69":0.00885,"70":0,"71":0,"72":0,"73":0.00442,"74":0.00442,"75":0.00442,"76":0.03981,"77":0,"78":0,"79":0.02654,"80":0,"81":0.02654,"83":0.03096,"84":0.01327,"85":0.00442,"86":0.00442,"87":0.01327,"88":0.00885,"89":0.00442,"90":0.02212,"91":0.00442,"92":0.00885,"93":0.05308,"94":0.05308,"95":0.00885,"96":0.06635,"97":0.02654,"98":0.01769,"99":0.01769,"100":0.02212,"101":0.05308,"102":0.03981,"103":0.33615,"104":2.5388,"105":8.99196,"106":0.16365,"107":0.01327,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01327,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.02212,"64":0.00885,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00442,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.14596,"90":0.37153,"91":0.01769,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00442,"18":0.02212,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00885,"93":0,"94":0.00885,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.07961,"101":0.01769,"102":0,"103":0.02212,"104":0.33615,"105":1.68959},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00442,"14":0.00885,"15":0.00442,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.05308,"11.1":0,"12.1":0.00442,"13.1":0.04865,"14.1":0.03096,"15.1":0.00885,"15.2-15.3":0.00885,"15.4":0.01769,"15.5":0.07077,"15.6":0.3848,"16.0":0.03981,"16.1":0.00442},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.02326,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.37526,"10.0-10.2":0,"10.3":0.05427,"11.0-11.2":0.02481,"11.3-11.4":0.01085,"12.0-12.1":0.00465,"12.2-12.5":0.43108,"13.0-13.1":0.00155,"13.2":0.0031,"13.3":0.01085,"13.4-13.7":0.02636,"14.0-14.4":0.18918,"14.5-14.8":0.43419,"15.0-15.1":0.17833,"15.2-15.3":0.13801,"15.4":0.5815,"15.5":0.75207,"15.6":8.93493,"16.0":2.96487,"16.1":0.01706},P:{"4":0.11623,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.4649,"8.2":0,"9.2":0.01057,"10.1":0.01057,"11.1-11.2":0.16906,"12.0":0.04226,"13.0":0.07396,"14.0":0.0317,"15.0":0.0634,"16.0":0.12679,"17.0":0.51773,"18.0":4.78639},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.10335,"4.2-4.3":0.10335,"4.4":0,"4.4.3-4.4.4":0.72347},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00442,"11":0.02654,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.01115},O:{"0":0.37366},H:{"0":0.2112},L:{"0":56.72503},S:{"2.5":0},R:{_:"0"},M:{"0":0.13385},Q:{"13.1":0}}; 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 19c13bc2cd3d2d..7febaa4b7c985d 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,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.05546,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01849,"79":0,"80":0,"81":0.00616,"82":0,"83":0,"84":0.01232,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.02465,"92":0,"93":0,"94":0.01232,"95":0.00616,"96":0.00616,"97":0.00616,"98":0.01232,"99":0,"100":0.03081,"101":0.04313,"102":0.54842,"103":5.04668,"104":1.18927,"105":0.01232,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.02465,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.14789,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00616,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.02465,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.11092,"80":0,"81":0.00616,"83":0,"84":0.09859,"85":0,"86":0.00616,"87":0.10475,"88":0,"89":0.08011,"90":0.00616,"91":0.00616,"92":0,"93":0.03081,"94":0,"95":0.06162,"96":0.01849,"97":0.14173,"98":0.01232,"99":0.04313,"100":0.1787,"101":0.06778,"102":0.19102,"103":3.93136,"104":10.25973,"105":0.01849,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.01232,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00616,"86":0.00616,"87":0.00616,"88":0.00616,"89":0.78874,"90":0.02465,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.02465,"98":0.39437,"99":0,"100":0.01849,"101":0.01849,"102":0.16021,"103":1.50969,"104":5.53348,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0493,"14":0.16637,"15":0.07394,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.34507,"12.1":0.06162,"13.1":1.08451,"14.1":0.40669,"15.1":0.19718,"15.2-15.3":0.11708,"15.4":0.2588,"15.5":0.75176,"15.6":2.29843,"16.0":0.15405},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.01878,"10.0-10.2":0,"10.3":0.05633,"11.0-11.2":0.04507,"11.3-11.4":0,"12.0-12.1":0.00751,"12.2-12.5":2.03544,"13.0-13.1":0,"13.2":0.01502,"13.3":0,"13.4-13.7":0.13144,"14.0-14.4":0.42812,"14.5-14.8":1.26934,"15.0-15.1":0.27415,"15.2-15.3":0.60838,"15.4":1.3144,"15.5":6.92877,"15.6":24.19625,"16.0":0.22157},P:{"4":0.23784,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.01034,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0.01034,"17.0":0.88932,"18.0":1.58215},I:{"0":0,"3":0,"4":0.04045,"2.1":0,"2.2":0.00279,"2.3":0,"4.1":0.07532,"4.2-4.3":0.15344,"4.4":0,"4.4.3-4.4.4":0.01395},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01232,"9":0,"10":0,"11":0.05546,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":19.02344},S:{"2.5":0},R:{_:"0"},M:{"0":0.86739},Q:{"10.4":0},O:{"0":0.00384},H:{"0":0.18168}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00673,"78":0.00673,"79":0,"80":0,"81":0.01346,"82":0.00673,"83":0,"84":0.03364,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.03364,"92":0,"93":0,"94":0.00673,"95":0.01346,"96":0,"97":0.01346,"98":0,"99":0.00673,"100":0.00673,"101":0.02691,"102":0.08746,"103":0.14802,"104":6.23686,"105":3.63312,"106":0.02018,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00673,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.26912,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00673,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01346,"74":0.00673,"75":0,"76":0,"77":0,"78":0,"79":0.19511,"80":0,"81":0,"83":0.00673,"84":0.10092,"85":0,"86":0.37004,"87":0.04037,"88":0,"89":0.00673,"90":0.00673,"91":0.02018,"92":0.01346,"93":0.00673,"94":0,"95":0.10765,"96":0.01346,"97":0.07401,"98":0.01346,"99":0.01346,"100":0.01346,"101":0.02691,"102":0.23548,"103":0.32294,"104":2.66429,"105":15.13127,"106":0.51806,"107":0.00673,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.11438,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00673,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00673,"83":0,"84":0,"85":0,"86":0,"87":0.00673,"88":0.02018,"89":0.0471,"90":0.841,"91":0.04037,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00673},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00673,"18":0.00673,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00673,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.08074,"99":0,"100":0.00673,"101":0.00673,"102":0.01346,"103":0.54497,"104":1.41961,"105":5.26802},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.11438,"14":0.18166,"15":0.03364,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00673,"10.1":0,"11.1":0.20857,"12.1":0.00673,"13.1":0.59206,"14.1":0.53824,"15.1":0.12783,"15.2-15.3":0.14802,"15.4":0.24894,"15.5":0.47096,"15.6":2.38844,"16.0":0.43059,"16.1":0.1211},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.00648,"10.0-10.2":0,"10.3":0.1167,"11.0-11.2":0.01297,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.1556,"13.0-13.1":0,"13.2":0.01297,"13.3":0.01297,"13.4-13.7":0.18154,"14.0-14.4":0.13615,"14.5-14.8":0.93687,"15.0-15.1":0.22692,"15.2-15.3":0.59,"15.4":1.00495,"15.5":1.10544,"15.6":22.68912,"16.0":4.79457,"16.1":0.00973},P:{"4":0.01008,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01008,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.01008,"14.0":0,"15.0":0,"16.0":0.01008,"17.0":0.01008,"18.0":2.39952},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.09979,"4.4":0,"4.4.3-4.4.4":0.00966},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00673,"9":0,"10":0,"11":0.06728,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.0229},H:{"0":0.44917},L:{"0":17.55398},S:{"2.5":0},R:{_:"0"},M:{"0":0.3043},Q:{"13.1":0}}; 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 a69d82a7314b5a..67ae52d96a786a 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00392,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00785,"92":0.00392,"93":0,"94":0.00392,"95":0.00392,"96":0,"97":0.00392,"98":0.00392,"99":0.00785,"100":0.00392,"101":0.00785,"102":0.02354,"103":0.52961,"104":0.11769,"105":0.00392,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00392,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00392,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00392,"61":0,"62":0,"63":0.00392,"64":0.00392,"65":0,"66":0,"67":0,"68":0.00392,"69":0.00392,"70":0.00785,"71":0.00392,"72":0.00392,"73":0.00392,"74":0.02354,"75":0,"76":0,"77":0.00392,"78":0.00392,"79":0.01177,"80":0.00785,"81":0.03923,"83":0.00785,"84":0.00392,"85":0.00785,"86":0.01177,"87":0.01569,"88":0.00785,"89":0.00392,"90":0.00785,"91":0.01569,"92":0.01962,"93":0.00785,"94":0.01177,"95":0.01177,"96":0.01962,"97":0.01177,"98":0.01569,"99":0.01569,"100":0.01962,"101":0.03138,"102":0.06669,"103":2.22434,"104":5.97473,"105":0.02354,"106":0.00392,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.01569,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00392,"52":0,"53":0,"54":0.00392,"55":0.00392,"56":0,"57":0,"58":0.00785,"60":0.01177,"62":0,"63":0.10592,"64":0.06669,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00392,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00392,"80":0,"81":0,"82":0,"83":0,"84":0.00392,"85":0.00785,"86":0.00392,"87":0,"88":0.01569,"89":0.3413,"90":0.05885,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00392,"13":0,"14":0.00392,"15":0.00392,"16":0.00392,"17":0.00392,"18":0.00785,"79":0,"80":0,"81":0,"83":0,"84":0.00392,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01177,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00392,"99":0.00392,"100":0.00392,"101":0.00785,"102":0.00785,"103":1.28674,"104":3.41301,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00392,"14":0.01177,"15":0.00392,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01177,"14.1":0.02354,"15.1":0.00785,"15.2-15.3":0.00785,"15.4":0.01962,"15.5":0.04708,"15.6":0.05492,"16.0":0},G:{"8":0.00089,"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.00716,"8.1-8.4":0.00358,"9.0-9.2":0.00268,"9.3":0.05099,"10.0-10.2":0.00716,"10.3":0.04741,"11.0-11.2":0.02058,"11.3-11.4":0.02505,"12.0-12.1":0.04205,"12.2-12.5":0.69868,"13.0-13.1":0.03847,"13.2":0.01968,"13.3":0.0832,"13.4-13.7":0.15745,"14.0-14.4":0.54749,"14.5-14.8":0.70047,"15.0-15.1":0.38468,"15.2-15.3":0.44551,"15.4":0.5797,"15.5":1.99227,"15.6":3.01927,"16.0":0.06799},P:{"4":0.53864,"5.0-5.4":0.01016,"6.2-6.4":0.02033,"7.2-7.4":0.87402,"8.2":0.03049,"9.2":0.0813,"10.1":0.03049,"11.1-11.2":0.24391,"12.0":0.04065,"13.0":0.18293,"14.0":0.18293,"15.0":0.11179,"16.0":0.35571,"17.0":0.90451,"18.0":0.5488},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0011,"4.2-4.3":0.00552,"4.4":0,"4.4.3-4.4.4":0.06123},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01177,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":66.19147},S:{"2.5":0},R:{_:"0"},M:{"0":0.11546},Q:{"10.4":0},O:{"0":1.3734},H:{"0":1.36929}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00388,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00388,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00776,"92":0.00388,"93":0,"94":0,"95":0,"96":0.00388,"97":0.00388,"98":0.00388,"99":0.00776,"100":0.00388,"101":0.00388,"102":0.00776,"103":0.06599,"104":0.45419,"105":0.14363,"106":0.00388,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00388,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00388,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00388,"64":0.00388,"65":0.00388,"66":0,"67":0.00388,"68":0.00388,"69":0.00388,"70":0.00776,"71":0,"72":0.00388,"73":0.00388,"74":0.02717,"75":0,"76":0.00388,"77":0.00776,"78":0.00388,"79":0.00776,"80":0.00388,"81":0.03494,"83":0.00776,"84":0.00388,"85":0.00388,"86":0.01165,"87":0.01553,"88":0.00776,"89":0.00388,"90":0.00776,"91":0.01165,"92":0.01553,"93":0.00388,"94":0.01165,"95":0.01553,"96":0.01553,"97":0.01165,"98":0.01165,"99":0.01165,"100":0.01165,"101":0.01941,"102":0.03106,"103":0.11646,"104":1.62656,"105":6.11803,"106":0.1087,"107":0.00388,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.01553,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00388,"52":0,"53":0,"54":0.00388,"55":0,"56":0,"57":0,"58":0.00776,"60":0.01165,"62":0,"63":0.05435,"64":0.12811,"65":0.00388,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00388,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00388,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00388,"86":0,"87":0,"88":0.00388,"89":0.01553,"90":0.34938,"91":0.01553,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00388,"13":0,"14":0.00388,"15":0,"16":0,"17":0,"18":0.01165,"79":0,"80":0,"81":0,"83":0,"84":0.00388,"85":0,"86":0,"87":0,"88":0,"89":0.00388,"90":0,"91":0,"92":0.01165,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00388,"101":0.00388,"102":0.00388,"103":0.01553,"104":0.74534,"105":4.08775},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00388,"14":0.00776,"15":0.00388,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00388,"13.1":0.01165,"14.1":0.01941,"15.1":0.00776,"15.2-15.3":0.00388,"15.4":0.01553,"15.5":0.02329,"15.6":0.07376,"16.0":0.01165,"16.1":0.00388},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.00259,"7.0-7.1":0.00345,"8.1-8.4":0.00689,"9.0-9.2":0.00345,"9.3":0.03878,"10.0-10.2":0.00603,"10.3":0.04567,"11.0-11.2":0.01723,"11.3-11.4":0.01896,"12.0-12.1":0.0405,"12.2-12.5":0.63768,"13.0-13.1":0.03016,"13.2":0.01551,"13.3":0.06722,"13.4-13.7":0.13615,"14.0-14.4":0.45413,"14.5-14.8":0.63596,"15.0-15.1":0.33349,"15.2-15.3":0.37571,"15.4":0.40415,"15.5":0.87724,"15.6":2.98762,"16.0":1.14955,"16.1":0.00948},P:{"4":0.52078,"5.0-5.4":0.01021,"6.2-6.4":0.02042,"7.2-7.4":0.91903,"8.2":0.03063,"9.2":0.08169,"10.1":0.02042,"11.1-11.2":0.21444,"12.0":0.04085,"13.0":0.16338,"14.0":0.16338,"15.0":0.10211,"16.0":0.38803,"17.0":0.45952,"18.0":1.09262},I:{"0":0,"3":0,"4":0.00177,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00177,"4.2-4.3":0.0065,"4.4":0,"4.4.3-4.4.4":0.06383},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01165,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":1.40102},H:{"0":1.36694},L:{"0":66.95509},S:{"2.5":0},R:{_:"0"},M:{"0":0.11624},Q:{"13.1":0}}; 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 c6b051d3b6257c..c153bfd35c97b1 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00222,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00445,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.06002,"92":0,"93":0,"94":0,"95":0,"96":0.00222,"97":0,"98":0.01112,"99":0,"100":0,"101":0.00222,"102":0.00667,"103":0.16895,"104":0.02445,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00222,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00222,"44":0,"45":0,"46":0,"47":0.00222,"48":0,"49":0.00222,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00445,"63":0,"64":0.00445,"65":0.00222,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00222,"75":0.00667,"76":0.00445,"77":0,"78":0,"79":0.00889,"80":0.00222,"81":0.01556,"83":0,"84":0,"85":0.00445,"86":0.00667,"87":0.00667,"88":0.00667,"89":0.00222,"90":0.00222,"91":0.00222,"92":0.00445,"93":0.00445,"94":0.00222,"95":0.00222,"96":0.00667,"97":0.00222,"98":0.00889,"99":0.00889,"100":0.01112,"101":0.00889,"102":0.01334,"103":0.47128,"104":1.13818,"105":0.00222,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00445,"25":0,"26":0,"27":0.00222,"28":0,"29":0,"30":0.00222,"31":0,"32":0.00222,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00222,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00222,"54":0,"55":0.00222,"56":0,"57":0.00445,"58":0.01334,"60":0.24675,"62":0,"63":0.24453,"64":0.06447,"65":0,"66":0,"67":0.00889,"68":0,"69":0,"70":0.00222,"71":0,"72":0.00222,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00667,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00222,"89":0.06669,"90":0.01112,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02445},B:{"12":0.01112,"13":0.00667,"14":0.00222,"15":0.00667,"16":0.00445,"17":0.00445,"18":0.02223,"79":0,"80":0,"81":0,"83":0,"84":0.00222,"85":0.00445,"86":0,"87":0,"88":0,"89":0.00222,"90":0.00445,"91":0.00222,"92":0.01334,"93":0,"94":0,"95":0.00445,"96":0.00222,"97":0.00222,"98":0.00222,"99":0.00222,"100":0.01334,"101":0.00889,"102":0.01556,"103":0.15783,"104":0.36013,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00222,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00222,"12.1":0,"13.1":0.00667,"14.1":0.00445,"15.1":0.00222,"15.2-15.3":0.00222,"15.4":0.00222,"15.5":0.00889,"15.6":0.00889,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00259,"6.0-6.1":0,"7.0-7.1":0.0375,"8.1-8.4":0,"9.0-9.2":0.00129,"9.3":0.14222,"10.0-10.2":0.01164,"10.3":0.0543,"11.0-11.2":0.00517,"11.3-11.4":0.02198,"12.0-12.1":0.128,"12.2-12.5":1.43,"13.0-13.1":0.60769,"13.2":0.02586,"13.3":0.17584,"13.4-13.7":0.39694,"14.0-14.4":2.28076,"14.5-14.8":2.04933,"15.0-15.1":0.60769,"15.2-15.3":0.74862,"15.4":0.57795,"15.5":1.95106,"15.6":1.58516,"16.0":0.08275},P:{"4":0.80881,"5.0-5.4":0.01037,"6.2-6.4":0,"7.2-7.4":0.07259,"8.2":0,"9.2":0.04148,"10.1":0.06222,"11.1-11.2":0.07259,"12.0":0,"13.0":0.02074,"14.0":0.06222,"15.0":0.03111,"16.0":0.09332,"17.0":0.32145,"18.0":0.23849},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02153,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.32301},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01778,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":71.32147},S:{"2.5":0.09332},R:{_:"0"},M:{"0":0.1011},Q:{"10.4":0},O:{"0":0.45107},H:{"0":7.28177}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00668,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00223,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00891,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00891,"99":0,"100":0.00223,"101":0,"102":0.01337,"103":0.02896,"104":0.16487,"105":0.06238,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00446,"41":0,"42":0,"43":0.00223,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00223,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.01337,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.01782,"75":0.00668,"76":0.00891,"77":0.00223,"78":0.00223,"79":0.05793,"80":0.00223,"81":0.01337,"83":0.00223,"84":0.00223,"85":0,"86":0.00446,"87":0.00446,"88":0.00223,"89":0,"90":0.00223,"91":0.00446,"92":0.01114,"93":0.00668,"94":0.00223,"95":0.00891,"96":0.00223,"97":0.00223,"98":0.00446,"99":0.00446,"100":0.00668,"101":0.00223,"102":0.0156,"103":0.06016,"104":0.40772,"105":1.13405,"106":0.01337,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00223,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00223,"43":0,"44":0,"45":0,"46":0.00446,"47":0,"48":0,"49":0,"50":0.00223,"51":0,"52":0,"53":0,"54":0,"55":0.00446,"56":0,"57":0.00223,"58":0.02005,"60":0.06907,"62":0,"63":0.13591,"64":0.14705,"65":0.00446,"66":0,"67":0.02005,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.0713,"91":0.00223,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02451},B:{"12":0.00891,"13":0.00668,"14":0.00223,"15":0.00668,"16":0.00223,"17":0.00223,"18":0.02451,"79":0,"80":0,"81":0,"83":0,"84":0.00446,"85":0.00446,"86":0,"87":0,"88":0,"89":0.00446,"90":0.00446,"91":0,"92":0.01782,"93":0,"94":0,"95":0.00223,"96":0,"97":0,"98":0,"99":0.00668,"100":0.00446,"101":0.00223,"102":0.00446,"103":0.01782,"104":0.16042,"105":0.42778},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00668,"14":0.00223,"15":0.00223,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00446,"14.1":0.00668,"15.1":0,"15.2-15.3":0,"15.4":0.00223,"15.5":0.01782,"15.6":0.0156,"16.0":0.00223,"16.1":0},G:{"8":0.0026,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00911,"6.0-6.1":0.03124,"7.0-7.1":0.02473,"8.1-8.4":0.06248,"9.0-9.2":0,"9.3":0.05207,"10.0-10.2":0,"10.3":0.09242,"11.0-11.2":0.01302,"11.3-11.4":0.02864,"12.0-12.1":0.07029,"12.2-12.5":1.32519,"13.0-13.1":1.21063,"13.2":0.03254,"13.3":0.27597,"13.4-13.7":0.43479,"14.0-14.4":1.54128,"14.5-14.8":1.57252,"15.0-15.1":0.5181,"15.2-15.3":0.71076,"15.4":0.5181,"15.5":0.78886,"15.6":2.71676,"16.0":0.85525,"16.1":0.00521},P:{"4":0.06331,"5.0-5.4":0.01055,"6.2-6.4":0.01055,"7.2-7.4":0.05276,"8.2":0,"9.2":0.05276,"10.1":0.06331,"11.1-11.2":0.08442,"12.0":0.01055,"13.0":0.0211,"14.0":0.10552,"15.0":0.04221,"16.0":0.13718,"17.0":0.18994,"18.0":0.44319},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.07145,"4.2-4.3":0.06124,"4.4":0,"4.4.3-4.4.4":0.29601},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01782,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00777},O:{"0":0.54404},H:{"0":7.46104},L:{"0":71.27106},S:{"2.5":0.10104},R:{_:"0"},M:{"0":0.10881},Q:{"13.1":0}}; 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 b68526bf4397f1..ad9d6c38a92c35 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00332,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00995,"53":0,"54":0,"55":0,"56":0.00332,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00332,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00663,"89":0,"90":0.00332,"91":0.00663,"92":0.00332,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00663,"100":0.00332,"101":0.00332,"102":0.01658,"103":0.5173,"104":0.06632,"105":0.00332,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00663,"35":0.00332,"36":0,"37":0,"38":0,"39":0,"40":0.00995,"41":0,"42":0,"43":0.00995,"44":0.01658,"45":0,"46":0.00663,"47":0,"48":0,"49":0.00332,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00995,"56":0,"57":0,"58":0.00332,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00332,"65":0,"66":0,"67":0,"68":0.00332,"69":0.00332,"70":0.00663,"71":0,"72":0,"73":0,"74":0.00332,"75":0.00995,"76":0,"77":0.0199,"78":0.00663,"79":0.00995,"80":0.00332,"81":0.08953,"83":0.00332,"84":0,"85":0.00332,"86":0.00332,"87":0.00663,"88":0.00332,"89":0,"90":0.00332,"91":0.00332,"92":0.00995,"93":0.00332,"94":0.00663,"95":0.01326,"96":0.00995,"97":0.00663,"98":0.00995,"99":0.00663,"100":0.0199,"101":0.063,"102":0.06632,"103":1.19376,"104":3.10709,"105":0.01326,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.01658,"22":0,"23":0,"24":0,"25":0.00332,"26":0.063,"27":0,"28":0.01658,"29":0,"30":0.00332,"31":0.00332,"32":0.04311,"33":0,"34":0,"35":0.07295,"36":0.00332,"37":0,"38":0.00332,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00332,"46":0.00663,"47":0.00663,"48":0,"49":0,"50":0.00663,"51":0.00663,"52":0,"53":0,"54":0.01326,"55":0,"56":0.04311,"57":0.00332,"58":0.03648,"60":0.063,"62":0,"63":0.30176,"64":0.10943,"65":0.00332,"66":0,"67":0.00663,"68":0.00663,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.02321,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00332,"87":0,"88":0.00332,"89":0.41118,"90":0.06964,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.05306},B:{"12":0.00995,"13":0.00995,"14":0.00332,"15":0.00332,"16":0.00663,"17":0.00663,"18":0.03979,"79":0,"80":0,"81":0,"83":0,"84":0.00663,"85":0.00995,"86":0,"87":0,"88":0.01658,"89":0.00663,"90":0.00332,"91":0,"92":0.0199,"93":0,"94":0,"95":0,"96":0.00332,"97":0,"98":0,"99":0.00332,"100":0.00995,"101":0.00995,"102":0.00995,"103":0.32497,"104":0.8091,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00663,"14":0.00332,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00332,"10.1":0,"11.1":0,"12.1":0.00332,"13.1":0.00663,"14.1":0.02984,"15.1":0.00332,"15.2-15.3":0,"15.4":0.01658,"15.5":0.00995,"15.6":0.06964,"16.0":0},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.00268,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.12832,"10.0-10.2":0.00938,"10.3":0.05964,"11.0-11.2":0.00436,"11.3-11.4":0.00469,"12.0-12.1":0.01307,"12.2-12.5":0.20437,"13.0-13.1":0.00402,"13.2":0.00302,"13.3":0.01709,"13.4-13.7":0.05964,"14.0-14.4":0.11726,"14.5-14.8":0.17422,"15.0-15.1":0.1769,"15.2-15.3":0.49351,"15.4":0.15546,"15.5":0.71195,"15.6":0.99841,"16.0":0.01307},P:{"4":0.56674,"5.0-5.4":0.01012,"6.2-6.4":0.02024,"7.2-7.4":0.95131,"8.2":0,"9.2":0.08096,"10.1":0,"11.1-11.2":0.12144,"12.0":0.02024,"13.0":0.1012,"14.0":0.1518,"15.0":0.06072,"16.0":0.19229,"17.0":0.63758,"18.0":0.31373},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0065,"4.2-4.3":0.00731,"4.4":0,"4.4.3-4.4.4":0.12598},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02984,"5.5":0},J:{"7":0,"10":0.00668},N:{"10":0,"11":0},L:{"0":74.82575},S:{"2.5":0.03342},R:{_:"0"},M:{"0":0.09358},Q:{"10.4":0.01337},O:{"0":1.05607},H:{"0":5.85338}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00641,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00321,"69":0,"70":0,"71":0,"72":0.00321,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00962,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00321,"92":0,"93":0,"94":0,"95":0,"96":0.00321,"97":0,"98":0,"99":0,"100":0.00321,"101":0.00321,"102":0.00321,"103":0.03526,"104":0.4455,"105":0.10897,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00641,"41":0.00321,"42":0,"43":0,"44":0.00321,"45":0,"46":0.00641,"47":0,"48":0,"49":0.01282,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.01923,"56":0.00321,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00321,"66":0.00321,"67":0,"68":0,"69":0.00641,"70":0.00962,"71":0.00321,"72":0,"73":0,"74":0.00321,"75":0.01282,"76":0,"77":0.02244,"78":0.00641,"79":0.00962,"80":0.00321,"81":0.08974,"83":0.00321,"84":0.00321,"85":0,"86":0,"87":0.00641,"88":0.00641,"89":0.00321,"90":0.00321,"91":0.00641,"92":0.01282,"93":0.00321,"94":0.00962,"95":0.00962,"96":0.01282,"97":0.00641,"98":0.00962,"99":0.00321,"100":0.00962,"101":0.05128,"102":0.02885,"103":0.08013,"104":0.99996,"105":3.15693,"106":0.02564,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.01282,"22":0,"23":0,"24":0,"25":0.00321,"26":0.08333,"27":0,"28":0.03205,"29":0,"30":0.00641,"31":0.00641,"32":0.02885,"33":0,"34":0,"35":0.08654,"36":0.00321,"37":0,"38":0.00321,"39":0,"40":0,"41":0,"42":0.00641,"43":0,"44":0,"45":0.00962,"46":0.00962,"47":0.00321,"48":0,"49":0,"50":0.01603,"51":0.01282,"52":0,"53":0,"54":0.00321,"55":0.00321,"56":0.01923,"57":0.00962,"58":0.02885,"60":0.05128,"62":0,"63":0.19871,"64":0.38781,"65":0.01923,"66":0.00641,"67":0.00321,"68":0.00321,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00321,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00641,"89":0.00962,"90":0.33332,"91":0.02564,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.04167},B:{"12":0.02564,"13":0.00962,"14":0.00962,"15":0,"16":0.00641,"17":0.00962,"18":0.05769,"79":0,"80":0.00321,"81":0,"83":0,"84":0.00641,"85":0.00641,"86":0,"87":0,"88":0,"89":0.00321,"90":0,"91":0,"92":0.00962,"93":0,"94":0.00321,"95":0,"96":0.00321,"97":0,"98":0.00321,"99":0.00321,"100":0.00641,"101":0.00641,"102":0.01603,"103":0.01923,"104":0.24358,"105":0.86535},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00962,"11.1":0,"12.1":0.05769,"13.1":0.00321,"14.1":0.03205,"15.1":0.00321,"15.2-15.3":0,"15.4":0.04808,"15.5":0.00962,"15.6":0.04808,"16.0":0.00321,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00143,"5.0-5.1":0.00677,"6.0-6.1":0,"7.0-7.1":0.02031,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04775,"10.0-10.2":0.00214,"10.3":0.02102,"11.0-11.2":0.00036,"11.3-11.4":0.01354,"12.0-12.1":0.00321,"12.2-12.5":0.23056,"13.0-13.1":0.00891,"13.2":0.00214,"13.3":0.04704,"13.4-13.7":0.05238,"14.0-14.4":0.14967,"14.5-14.8":0.3282,"15.0-15.1":0.17782,"15.2-15.3":0.66745,"15.4":0.07733,"15.5":0.45613,"15.6":0.93471,"16.0":0.24909,"16.1":0},P:{"4":0.42382,"5.0-5.4":0,"6.2-6.4":0.04036,"7.2-7.4":0.91827,"8.2":0,"9.2":0.03027,"10.1":0.09082,"11.1-11.2":0.14127,"12.0":0.01009,"13.0":0.05045,"14.0":0.07064,"15.0":0.15136,"16.0":0.16145,"17.0":0.36327,"18.0":0.58527},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00521,"4.4":0,"4.4.3-4.4.4":0.10325},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03526,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.01359},O:{"0":1.2231},H:{"0":6.87052},L:{"0":73.70855},S:{"2.5":0.02718},R:{_:"0"},M:{"0":0.06116},Q:{"13.1":0}}; 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 4fbaca359c2854..2a6f2bef4ea194 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00567,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.03401,"49":0,"50":0,"51":0.00567,"52":0.08504,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01134,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00567,"67":0,"68":0.00567,"69":0,"70":0,"71":0,"72":0.00567,"73":0,"74":0,"75":0,"76":0,"77":0.02268,"78":0.05102,"79":0.00567,"80":0.00567,"81":0,"82":0,"83":0.00567,"84":0.01134,"85":0.00567,"86":0,"87":0,"88":0.00567,"89":0.00567,"90":0.00567,"91":0.24944,"92":0.00567,"93":0,"94":0.01134,"95":0.04535,"96":0.03968,"97":0.01134,"98":0.01134,"99":0.02835,"100":0.01701,"101":0.01701,"102":0.10204,"103":2.15989,"104":0.53289,"105":0.00567,"106":0.00567,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.03401,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01701,"50":0,"51":0,"52":0,"53":0.01701,"54":0,"55":0,"56":0.02835,"57":0,"58":0,"59":0,"60":0,"61":0.00567,"62":0.00567,"63":0.00567,"64":0.01134,"65":0.00567,"66":0.01134,"67":0.00567,"68":0.00567,"69":0,"70":0.00567,"71":0.01134,"72":0,"73":0.00567,"74":0.00567,"75":0,"76":0.00567,"77":0.00567,"78":0.03401,"79":0.05669,"80":0.02835,"81":0.03401,"83":0.02268,"84":0.02268,"85":0.04535,"86":0.05669,"87":0.09637,"88":0.03968,"89":0.03401,"90":0.02835,"91":0.04535,"92":0.06236,"93":0.06803,"94":0.04535,"95":0.0907,"96":0.20975,"97":0.22109,"98":0.02268,"99":0.04535,"100":0.08504,"101":0.07937,"102":0.32313,"103":5.31752,"104":13.45254,"105":0.03968,"106":0.00567,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00567,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00567,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00567,"60":0,"62":0,"63":0.01134,"64":0.01134,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00567,"71":0.00567,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00567,"79":0.00567,"80":0.00567,"81":0,"82":0.04535,"83":0.00567,"84":0.00567,"85":0.01134,"86":0.00567,"87":0.00567,"88":0.05102,"89":2.18823,"90":0.19275,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00567,"16":0,"17":0,"18":0.00567,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00567,"91":0,"92":0.00567,"93":0,"94":0.00567,"95":0,"96":0.01134,"97":0.01701,"98":0.00567,"99":0,"100":0.00567,"101":0.01701,"102":0.01134,"103":0.65194,"104":2.10887,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01701,"14":0.06236,"15":0.02268,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00567,"10.1":0,"11.1":0.00567,"12.1":0.01701,"13.1":0.0907,"14.1":0.17007,"15.1":0.05669,"15.2-15.3":0.03401,"15.4":0.10204,"15.5":0.27211,"15.6":0.39683,"16.0":0.01134},G:{"8":0.00174,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00521,"7.0-7.1":0,"8.1-8.4":0.00174,"9.0-9.2":0,"9.3":0.03475,"10.0-10.2":0.01043,"10.3":0.14248,"11.0-11.2":0.00695,"11.3-11.4":0.03301,"12.0-12.1":0.0139,"12.2-12.5":0.18939,"13.0-13.1":0.01564,"13.2":0.00869,"13.3":0.0278,"13.4-13.7":0.14769,"14.0-14.4":0.36836,"14.5-14.8":0.93306,"15.0-15.1":0.39616,"15.2-15.3":0.58208,"15.4":0.88963,"15.5":4.68617,"15.6":8.69296,"16.0":0.17897},P:{"4":0.11183,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01017,"10.1":0,"11.1-11.2":0.04067,"12.0":0.01017,"13.0":0.07117,"14.0":0.04067,"15.0":0.0305,"16.0":0.13217,"17.0":1.27084,"18.0":1.64701},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01485,"4.2-4.3":0.03464,"4.4":0,"4.4.3-4.4.4":0.14351},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00589,"9":0,"10":0,"11":0.14718,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0.00866},L:{"0":42.58294},S:{"2.5":0},R:{_:"0"},M:{"0":0.40278},Q:{"10.4":0},O:{"0":0.04331},H:{"0":0.50024}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00595,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00595,"46":0,"47":0,"48":0.02976,"49":0,"50":0,"51":0.00595,"52":0.10714,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00595,"60":0.01786,"61":0,"62":0,"63":0.00595,"64":0.00595,"65":0,"66":0.0119,"67":0,"68":0.0119,"69":0,"70":0,"71":0,"72":0.00595,"73":0,"74":0,"75":0.0119,"76":0,"77":0.0119,"78":0.05952,"79":0.00595,"80":0.02381,"81":0.00595,"82":0.02381,"83":0.00595,"84":0.00595,"85":0,"86":0,"87":0.00595,"88":0.0119,"89":0.00595,"90":0.00595,"91":0.24403,"92":0.00595,"93":0,"94":0.0119,"95":0.03571,"96":0.02976,"97":0.0119,"98":0.0119,"99":0.01786,"100":0.01786,"101":0.01786,"102":0.06547,"103":0.1488,"104":2.44627,"105":0.76781,"106":0.0119,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00595,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.02381,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.02381,"42":0,"43":0,"44":0.00595,"45":0,"46":0.00595,"47":0,"48":0,"49":0.02381,"50":0,"51":0,"52":0,"53":0.0119,"54":0,"55":0,"56":0.04166,"57":0.00595,"58":0.00595,"59":0,"60":0.00595,"61":0.0119,"62":0.00595,"63":0.0119,"64":0.0119,"65":0.01786,"66":0.02976,"67":0.01786,"68":0.00595,"69":0.00595,"70":0.01786,"71":0.01786,"72":0.00595,"73":0.00595,"74":0.0119,"75":0.00595,"76":0.0119,"77":0.00595,"78":0.0119,"79":0.07738,"80":0.05357,"81":0.04762,"83":0.05357,"84":0.02976,"85":0.1607,"86":0.08333,"87":0.11904,"88":0.02976,"89":0.02976,"90":0.02381,"91":0.02976,"92":0.05952,"93":0.07738,"94":0.02976,"95":0.05952,"96":0.13094,"97":0.20237,"98":0.02976,"99":0.04166,"100":0.13094,"101":0.04762,"102":0.15475,"103":0.41069,"104":4.54733,"105":15.72518,"106":0.20237,"107":0.00595,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00595,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00595,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.0119,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.01786,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.04762,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00595,"78":0,"79":0.00595,"80":0.0119,"81":0,"82":0.03571,"83":0,"84":0.00595,"85":0.02381,"86":0,"87":0.00595,"88":0.00595,"89":0.17261,"90":2.27366,"91":0.07142,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00595,"16":0,"17":0,"18":0.01786,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00595,"86":0.00595,"87":0,"88":0,"89":0,"90":0.00595,"91":0,"92":0.00595,"93":0,"94":0.00595,"95":0,"96":0.00595,"97":0.0119,"98":0,"99":0,"100":0,"101":0.00595,"102":0.00595,"103":0.02381,"104":0.44045,"105":2.62483},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00595,"9":0,"10":0,"11":0.00595,"12":0.00595,"13":0.0119,"14":0.07142,"15":0.02381,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00595,"10.1":0,"11.1":0.00595,"12.1":0.0119,"13.1":0.07738,"14.1":0.1607,"15.1":0.04762,"15.2-15.3":0.04166,"15.4":0.07738,"15.5":0.1488,"15.6":0.54758,"16.0":0.12499,"16.1":0.01786},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00172,"6.0-6.1":0.00515,"7.0-7.1":0.00172,"8.1-8.4":0,"9.0-9.2":0.00172,"9.3":0.04461,"10.0-10.2":0.03431,"10.3":0.12868,"11.0-11.2":0.00343,"11.3-11.4":0.01887,"12.0-12.1":0.01029,"12.2-12.5":0.19387,"13.0-13.1":0.01201,"13.2":0.02402,"13.3":0.02574,"13.4-13.7":0.13554,"14.0-14.4":0.41348,"14.5-14.8":0.79436,"15.0-15.1":0.19044,"15.2-15.3":0.42206,"15.4":0.61936,"15.5":1.50466,"15.6":9.20811,"16.0":3.02648,"16.1":0.07034},P:{"4":0.09151,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01017,"12.0":0.01017,"13.0":0.0305,"14.0":0.04067,"15.0":0.02033,"16.0":0.08134,"17.0":0.22368,"18.0":2.53168},I:{"0":0,"3":0,"4":0.00866,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01732,"4.2-4.3":0.01732,"4.4":0,"4.4.3-4.4.4":0.14289},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00595,"9":0,"10":0,"11":0.1607,"5.5":0},N:{"10":0,"11":0.01619},J:{"7":0,"10":0},O:{"0":0.06882},H:{"0":0.44839},L:{"0":39.78834},S:{"2.5":0},R:{_:"0"},M:{"0":0.3967},Q:{"13.1":0}}; 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 b710309734ed16..610983aafa7210 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.0044,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.0044,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02641,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.0044,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0088,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.07922,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.02641,"85":0,"86":0,"87":0.0044,"88":0.0088,"89":0.0088,"90":0,"91":0.22005,"92":0.0044,"93":0.0044,"94":0.02201,"95":0.0044,"96":0,"97":0.0088,"98":0.0044,"99":0.0132,"100":0.0176,"101":0.0176,"102":0.18484,"103":2.00246,"104":0.36528,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.0044,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02641,"50":0,"51":0,"52":0,"53":0.0088,"54":0,"55":0.0044,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.0044,"63":0,"64":0,"65":0,"66":0,"67":0.0044,"68":0,"69":0,"70":0,"71":0,"72":0.25086,"73":0.0044,"74":0.0044,"75":0.0044,"76":0.0044,"77":0.03521,"78":0.0176,"79":0.02201,"80":0.0044,"81":0.0088,"83":0.0088,"84":0.0044,"85":0.03081,"86":0.02201,"87":0.37409,"88":0.0044,"89":0.0088,"90":0.0132,"91":0.02641,"92":0.05721,"93":0,"94":0.0044,"95":0.02201,"96":0.02201,"97":0.06602,"98":0.02641,"99":0.0176,"100":0.09242,"101":0.11443,"102":0.12323,"103":2.1917,"104":5.34281,"105":0.0176,"106":0.0044,"107":0.0044,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.0044,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.0044,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.0044,"60":0,"62":0,"63":0.03521,"64":0.0176,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.0088,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.0044,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.0044,"87":0,"88":0.0088,"89":0.41369,"90":0.06602,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0044},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.0044,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.0044,"91":0,"92":0.0088,"93":0,"94":0,"95":0.0044,"96":0.0088,"97":0.0044,"98":0.0176,"99":0.02201,"100":0.04401,"101":0.0176,"102":0.16284,"103":0.72176,"104":1.81321,"105":0.0044},E:{"4":0,"5":0,"6":0,"7":0.0044,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.06161,"14":0.06602,"15":0.02641,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.0044,"10.1":0.0044,"11.1":0.0088,"12.1":0.11883,"13.1":0.27726,"14.1":0.23765,"15.1":0.08362,"15.2-15.3":0.05721,"15.4":0.12763,"15.5":0.66455,"15.6":1.16186,"16.0":0.0132},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.30612,"5.0-5.1":0,"6.0-6.1":0.00589,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.93013,"9.3":0.03826,"10.0-10.2":0,"10.3":0.10302,"11.0-11.2":0.0206,"11.3-11.4":0.00883,"12.0-12.1":0.02355,"12.2-12.5":0.43269,"13.0-13.1":0.00883,"13.2":0.00589,"13.3":0.0471,"13.4-13.7":0.17955,"14.0-14.4":0.50922,"14.5-14.8":1.56003,"15.0-15.1":0.48861,"15.2-15.3":0.77118,"15.4":1.17149,"15.5":6.89945,"15.6":14.92918,"16.0":0.989},P:{"4":0.16567,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03106,"8.2":0,"9.2":0,"10.1":0.01035,"11.1-11.2":0.01035,"12.0":0.01035,"13.0":0.03106,"14.0":0.05177,"15.0":0.07248,"16.0":0.1139,"17.0":1.57383,"18.0":2.2572},I:{"0":0,"3":0.08266,"4":0,"2.1":0.03882,"2.2":0.12899,"2.3":0,"4.1":0.10269,"4.2-4.3":0.09017,"4.4":0,"4.4.3-4.4.4":0.33187},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.15844,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":33.77453},S:{"2.5":0},R:{_:"0"},M:{"0":0.79506},Q:{"10.4":2.29559},O:{"0":1.47254},H:{"0":0.59899}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00421,"49":0,"50":0,"51":0,"52":0.01263,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00421,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00421,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.04632,"79":0,"80":0.00421,"81":0.00421,"82":0,"83":0,"84":0,"85":0.00842,"86":0,"87":0.00421,"88":0.00421,"89":0.00421,"90":0,"91":0.17265,"92":0,"93":0.00421,"94":0.01263,"95":0.00421,"96":0,"97":0.00421,"98":0,"99":0.00842,"100":0.02106,"101":0.02106,"102":0.10106,"103":0.10528,"104":1.41069,"105":0.51795,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00421,"48":0,"49":0.01684,"50":0,"51":0,"52":0,"53":0.00842,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00421,"69":0.00421,"70":0,"71":0,"72":0.1516,"73":0,"74":0,"75":0,"76":0.00421,"77":0.00421,"78":0.00421,"79":0.02106,"80":0.00421,"81":0.00421,"83":0.00842,"84":0.00842,"85":0.05474,"86":0.01263,"87":0.02106,"88":0,"89":0.00421,"90":0.01684,"91":0.02948,"92":0.03369,"93":0.00842,"94":0.00421,"95":0.00842,"96":0.01684,"97":0.02106,"98":0.01263,"99":0.01263,"100":0.06317,"101":0.06317,"102":0.10949,"103":0.20213,"104":1.54123,"105":5.54168,"106":0.13054,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00421,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00421,"60":0,"62":0,"63":0.00842,"64":0.02106,"65":0,"66":0,"67":0,"68":0,"69":0.00421,"70":0,"71":0.00421,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00842,"87":0.00421,"88":0.00421,"89":0.02948,"90":0.4969,"91":0.02948,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00421,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00421,"97":0,"98":0.0379,"99":0.02106,"100":0.00842,"101":0.00842,"102":0.21055,"103":0.04211,"104":0.31583,"105":1.76862},E:{"4":0.00421,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0758,"14":0.08001,"15":0.02527,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00842,"10.1":0,"11.1":0.00842,"12.1":0.06738,"13.1":0.39583,"14.1":0.26529,"15.1":0.04632,"15.2-15.3":0.05474,"15.4":0.13896,"15.5":0.52216,"15.6":1.38542,"16.0":0.14317,"16.1":0.00842},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.29345,"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.88034,"9.3":0.04119,"10.0-10.2":0,"10.3":0.04891,"11.0-11.2":0.03089,"11.3-11.4":0.00257,"12.0-12.1":0.00772,"12.2-12.5":0.31661,"13.0-13.1":0.01287,"13.2":0.00772,"13.3":0.03346,"13.4-13.7":0.139,"14.0-14.4":0.34236,"14.5-14.8":1.13003,"15.0-15.1":0.29602,"15.2-15.3":0.41958,"15.4":0.62808,"15.5":1.87137,"15.6":13.43168,"16.0":5.06069,"16.1":0.18019},P:{"4":0.12282,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02047,"8.2":0,"9.2":0,"10.1":0.01024,"11.1-11.2":0.01024,"12.0":0.01024,"13.0":0.03071,"14.0":0.03071,"15.0":0.01024,"16.0":0.07165,"17.0":0.16377,"18.0":2.91708},I:{"0":0,"3":0.07354,"4":0,"2.1":0.0361,"2.2":0.10964,"2.3":0,"4.1":0.08023,"4.2-4.3":0.07622,"4.4":0,"4.4.3-4.4.4":0.2848},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.02527,"9":0.00842,"10":0.00842,"11":0.08422,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":1.20411},H:{"0":0.45489},L:{"0":26.40197},S:{"2.5":0},R:{_:"0"},M:{"0":0.59048},Q:{"13.1":2.00299}}; 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 0d979a96aac7fe..ca25062802af5e 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.04771,"53":0,"54":0,"55":0,"56":0.00682,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01363,"69":0,"70":0,"71":0,"72":0,"73":0.00682,"74":0,"75":0.00682,"76":0,"77":0,"78":0.01363,"79":0.00682,"80":0,"81":0.00682,"82":0,"83":0,"84":0.00682,"85":0.00682,"86":0,"87":0.00682,"88":0.01363,"89":0,"90":0.00682,"91":0.05452,"92":0,"93":0.00682,"94":0,"95":0.00682,"96":0.00682,"97":0.00682,"98":0.00682,"99":0.02726,"100":0.01363,"101":0.02045,"102":0.19082,"103":2.52837,"104":0.45661,"105":0.00682,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00682,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.04089,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00682,"70":0.00682,"71":0.00682,"72":0.00682,"73":0,"74":0.00682,"75":0,"76":0.00682,"77":0,"78":0.00682,"79":0.09541,"80":0.01363,"81":0.02726,"83":0.00682,"84":0.06134,"85":0.05452,"86":0.06134,"87":0.07497,"88":0.01363,"89":0.01363,"90":0.02045,"91":0.02726,"92":0.03408,"93":0.06134,"94":0.05452,"95":0.00682,"96":0.05452,"97":0.04771,"98":0.03408,"99":0.04771,"100":0.10223,"101":0.11586,"102":0.3612,"103":8.6755,"104":23.77072,"105":0.06815,"106":0.00682,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00682,"64":0.00682,"65":0,"66":0,"67":0,"68":0.00682,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00682,"83":0.00682,"84":0.00682,"85":0.01363,"86":0.00682,"87":0,"88":0.03408,"89":1.20626,"90":0.1363,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00682,"79":0,"80":0,"81":0,"83":0,"84":0.01363,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00682,"93":0,"94":0,"95":0.01363,"96":0.00682,"97":0.00682,"98":0.00682,"99":0.00682,"100":0.00682,"101":0.05452,"102":0.04771,"103":1.24033,"104":3.55743,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00682,"9":0,"10":0,"11":0,"12":0.00682,"13":0.00682,"14":0.06815,"15":0.01363,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00682,"10.1":0,"11.1":0,"12.1":0.02726,"13.1":0.08178,"14.1":0.12949,"15.1":0.02726,"15.2-15.3":0.02726,"15.4":0.09541,"15.5":0.32712,"15.6":0.59972,"16.0":0.02045},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.00305,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01067,"10.0-10.2":0,"10.3":0.03353,"11.0-11.2":0.00457,"11.3-11.4":0.00915,"12.0-12.1":0.00762,"12.2-12.5":0.21035,"13.0-13.1":0.00762,"13.2":0.00915,"13.3":0.02134,"13.4-13.7":0.1067,"14.0-14.4":0.34144,"14.5-14.8":0.86579,"15.0-15.1":0.34601,"15.2-15.3":0.55941,"15.4":0.75604,"15.5":4.03017,"15.6":7.73415,"16.0":0.17834},P:{"4":0.06165,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01027,"12.0":0.01027,"13.0":0.02055,"14.0":0.09247,"15.0":0.03082,"16.0":0.12329,"17.0":1.34592,"18.0":1.48976},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.01659,"4.1":0.01659,"4.2-4.3":0.01659,"4.4":0,"4.4.3-4.4.4":0.12164},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00682,"9":0,"10":0,"11":0.06815,"5.5":0},J:{"7":0,"10":0.00319},N:{"10":0,"11":0},L:{"0":31.84274},S:{"2.5":0},R:{_:"0"},M:{"0":0.32487},Q:{"10.4":0},O:{"0":0.08918},H:{"0":0.3136}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00647,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.04532,"53":0,"54":0,"55":0,"56":0.01295,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01942,"69":0,"70":0,"71":0,"72":0.00647,"73":0,"74":0,"75":0.00647,"76":0,"77":0,"78":0.0259,"79":0.00647,"80":0.00647,"81":0,"82":0.01942,"83":0.00647,"84":0,"85":0.00647,"86":0,"87":0.01295,"88":0.01295,"89":0,"90":0.00647,"91":0.04532,"92":0.00647,"93":0.01295,"94":0,"95":0.00647,"96":0.00647,"97":0.00647,"98":0,"99":0.01942,"100":0.00647,"101":0.01295,"102":0.11653,"103":0.16832,"104":2.36948,"105":0.73804,"106":0.00647,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00647,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.04532,"50":0,"51":0,"52":0,"53":0.00647,"54":0.01942,"55":0,"56":0,"57":0.00647,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.01295,"66":0,"67":0,"68":0.00647,"69":0.00647,"70":0.01295,"71":0.00647,"72":0.00647,"73":0,"74":0.01295,"75":0.00647,"76":0.00647,"77":0,"78":0.00647,"79":0.11653,"80":0.01295,"81":0.08416,"83":0.50497,"84":0.07121,"85":0.08416,"86":0.13595,"87":0.11006,"88":0.01295,"89":0.00647,"90":0.01295,"91":0.01942,"92":0.0259,"93":0.00647,"94":0.30428,"95":0.01295,"96":0.07121,"97":0.04532,"98":0.01942,"99":0.03237,"100":0.06474,"101":0.08416,"102":0.08416,"103":0.46613,"104":8.01481,"105":18.67102,"106":0.18775,"107":0.00647,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.01295,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.04532,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00647,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01295,"86":0.01942,"87":0,"88":0.00647,"89":0.11653,"90":1.28185,"91":0.04532,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01942,"79":0,"80":0,"81":0,"83":0,"84":0.01295,"85":0,"86":0.00647,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00647,"93":0,"94":0,"95":0,"96":0,"97":0.00647,"98":0,"99":0.01295,"100":0.00647,"101":0.00647,"102":0.03237,"103":0.01942,"104":1.17827,"105":3.39885},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00647,"13":0.01295,"14":0.07121,"15":0.01942,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00647,"10.1":0,"11.1":0.00647,"12.1":0.03884,"13.1":0.09064,"14.1":0.12948,"15.1":0.03237,"15.2-15.3":0.03237,"15.4":0.12301,"15.5":0.15538,"15.6":0.71861,"16.0":0.15538,"16.1":0.01295},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.01351,"10.0-10.2":0.01688,"10.3":0.01013,"11.0-11.2":0.00507,"11.3-11.4":0.00675,"12.0-12.1":0.00844,"12.2-12.5":0.21781,"13.0-13.1":0.00675,"13.2":0.01013,"13.3":0.02026,"13.4-13.7":0.11144,"14.0-14.4":0.336,"14.5-14.8":0.90332,"15.0-15.1":0.29379,"15.2-15.3":0.33431,"15.4":0.56901,"15.5":1.51961,"15.6":8.85764,"16.0":3.33808,"16.1":0.06416},P:{"4":0.04099,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01025,"12.0":0.01025,"13.0":0.03074,"14.0":0.11273,"15.0":0.03074,"16.0":0.09223,"17.0":0.30743,"18.0":2.75665},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.02385,"4.1":0.0159,"4.2-4.3":0.03974,"4.4":0,"4.4.3-4.4.4":0.16693},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00647,"9":0,"10":0,"11":0.07769,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.11988},H:{"0":0.35719},L:{"0":34.00418},S:{"2.5":0.00353},R:{_:"0"},M:{"0":0.35613},Q:{"13.1":0.00353}}; 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 443ae1b7cf3319..598f2aff4758c5 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00155,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00155,"46":0,"47":0,"48":0,"49":0.00155,"50":0,"51":0,"52":0.00155,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00155,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00155,"88":0,"89":0,"90":0,"91":0.00155,"92":0,"93":0,"94":0.0031,"95":0.00155,"96":0,"97":0.00155,"98":0,"99":0.00465,"100":0.00465,"101":0.00155,"102":0.0062,"103":0.09151,"104":0.01861,"105":0.00155,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00155,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00155,"33":0.00155,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00155,"41":0,"42":0,"43":0.0031,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00155,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00465,"64":0,"65":0.00155,"66":0,"67":0,"68":0,"69":0.00155,"70":0,"71":0.00155,"72":0.00155,"73":0,"74":0,"75":0.00155,"76":0.00155,"77":0,"78":0.00155,"79":0.00465,"80":0.00155,"81":0.00931,"83":0.00465,"84":0.0031,"85":0.00155,"86":0.00776,"87":0.01396,"88":0.00776,"89":0.0031,"90":0.0031,"91":0.0031,"92":0.00465,"93":0.00155,"94":0.00776,"95":0.0031,"96":0.0062,"97":0.0062,"98":0.00776,"99":0.00776,"100":0.00931,"101":0.00931,"102":0.02482,"103":0.39395,"104":0.97713,"105":0.00465,"106":0.00155,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00155,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00155,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00155,"58":0.0062,"60":0.02637,"62":0,"63":0.11788,"64":0.076,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00155,"72":0,"73":0.00155,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.0031,"80":0,"81":0,"82":0,"83":0,"84":0.01086,"85":0.0031,"86":0.00155,"87":0.00155,"88":0.00465,"89":0.0698,"90":0.00776,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00155},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.0031,"79":0,"80":0,"81":0,"83":0,"84":0.00155,"85":0,"86":0,"87":0,"88":0,"89":0.00155,"90":0.00155,"91":0,"92":0.00465,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00155,"100":0.00155,"101":0.00776,"102":0.0031,"103":0.05273,"104":0.13028,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0031,"14":0.00465,"15":0.00465,_:"0","3.1":0,"3.2":0,"5.1":0.0031,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.0031,"12.1":0,"13.1":0.00465,"14.1":0.00931,"15.1":0.00155,"15.2-15.3":0.00155,"15.4":0.0062,"15.5":0.01706,"15.6":0.02327,"16.0":0.00155},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00184,"5.0-5.1":0.00276,"6.0-6.1":0.00092,"7.0-7.1":0.00829,"8.1-8.4":0.00184,"9.0-9.2":0.00184,"9.3":0.06169,"10.0-10.2":0.00276,"10.3":0.03959,"11.0-11.2":0.01105,"11.3-11.4":0.02302,"12.0-12.1":0.03775,"12.2-12.5":0.51466,"13.0-13.1":0.03867,"13.2":0.01105,"13.3":0.1556,"13.4-13.7":0.11416,"14.0-14.4":0.55886,"14.5-14.8":0.71537,"15.0-15.1":0.41891,"15.2-15.3":0.52295,"15.4":0.79823,"15.5":2.24739,"15.6":2.79704,"16.0":0.10772},P:{"4":0.2125,"5.0-5.4":0.01012,"6.2-6.4":0.0506,"7.2-7.4":0.48572,"8.2":0.01012,"9.2":0.06071,"10.1":0.03036,"11.1-11.2":0.13155,"12.0":0.04048,"13.0":0.15179,"14.0":0.25298,"15.0":0.12143,"16.0":0.33393,"17.0":0.92084,"18.0":0.66786},I:{"0":0,"3":0,"4":0.00085,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00057,"4.2-4.3":0.00596,"4.4":0,"4.4.3-4.4.4":0.06899},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01086,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":80.02092},S:{"2.5":0},R:{_:"0"},M:{"0":0.08449},Q:{"10.4":0},O:{"0":0.36331},H:{"0":2.76764}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00338,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00338,"88":0,"89":0,"90":0,"91":0.00169,"92":0,"93":0,"94":0.00506,"95":0,"96":0,"97":0.00675,"98":0.00169,"99":0.00169,"100":0,"101":0,"102":0.00169,"103":0.00844,"104":0.08609,"105":0.03207,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00169,"34":0,"35":0,"36":0,"37":0,"38":0.00169,"39":0,"40":0.00338,"41":0.00169,"42":0,"43":0.00169,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00169,"50":0,"51":0,"52":0,"53":0,"54":0.00169,"55":0,"56":0.00169,"57":0,"58":0,"59":0,"60":0.00169,"61":0,"62":0,"63":0.00338,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00169,"70":0.00169,"71":0.00338,"72":0,"73":0.00169,"74":0,"75":0.00169,"76":0.00169,"77":0,"78":0.00338,"79":0.00506,"80":0.00169,"81":0.00844,"83":0.00338,"84":0.00169,"85":0.00169,"86":0.02532,"87":0.00844,"88":0.00675,"89":0.00169,"90":0.00506,"91":0.00338,"92":0.00675,"93":0.00169,"94":0.0135,"95":0.00338,"96":0.00506,"97":0.00675,"98":0.00844,"99":0.00506,"100":0.01182,"101":0.00675,"102":0.01182,"103":0.04051,"104":0.3376,"105":1.2373,"106":0.0287,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00169,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00169,"47":0,"48":0,"49":0,"50":0,"51":0.00169,"52":0,"53":0,"54":0.00169,"55":0,"56":0,"57":0.00169,"58":0.00675,"60":0.02532,"62":0,"63":0.05064,"64":0.21438,"65":0.00844,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00169,"72":0.00169,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00338,"80":0,"81":0,"82":0,"83":0,"84":0.01519,"85":0.00338,"86":0.00169,"87":0,"88":0.00506,"89":0.00338,"90":0.10634,"91":0.00675,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00169},B:{"12":0.00338,"13":0,"14":0.01013,"15":0,"16":0,"17":0,"18":0.00506,"79":0,"80":0,"81":0,"83":0,"84":0.00169,"85":0,"86":0,"87":0,"88":0,"89":0.00169,"90":0.00169,"91":0,"92":0.00338,"93":0,"94":0,"95":0,"96":0.00169,"97":0,"98":0,"99":0.00169,"100":0.00169,"101":0.00506,"102":0.00338,"103":0.00675,"104":0.04389,"105":0.18062},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00169,"13":0.00675,"14":0.01013,"15":0.01013,_:"0","3.1":0,"3.2":0,"5.1":0.02194,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00169,"12.1":0,"13.1":0.00844,"14.1":0.01013,"15.1":0.00338,"15.2-15.3":0.00169,"15.4":0.00675,"15.5":0.0135,"15.6":0.04558,"16.0":0.00506,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00291,"6.0-6.1":0,"7.0-7.1":0.02234,"8.1-8.4":0.00194,"9.0-9.2":0.00097,"9.3":0.10199,"10.0-10.2":0.00291,"10.3":0.04857,"11.0-11.2":0.00874,"11.3-11.4":0.03982,"12.0-12.1":0.02234,"12.2-12.5":0.53033,"13.0-13.1":0.02331,"13.2":0.00583,"13.3":0.04662,"13.4-13.7":0.09033,"14.0-14.4":0.63038,"14.5-14.8":0.74111,"15.0-15.1":0.47885,"15.2-15.3":0.45457,"15.4":0.63523,"15.5":1.08689,"15.6":3.03144,"16.0":1.46084,"16.1":0.03302},P:{"4":0.24167,"5.0-5.4":0.02014,"6.2-6.4":0.07049,"7.2-7.4":0.55382,"8.2":0.01007,"9.2":0.07049,"10.1":0.02014,"11.1-11.2":0.18125,"12.0":0.05035,"13.0":0.15104,"14.0":0.24167,"15.0":0.1309,"16.0":0.37257,"17.0":0.50348,"18.0":1.4198},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00139,"4.2-4.3":0.0052,"4.4":0,"4.4.3-4.4.4":0.08211},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01182,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.42391},H:{"0":3.1241},L:{"0":78.18718},S:{"2.5":0},R:{_:"0"},M:{"0":0.05818},Q:{"13.1":0}}; 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 46a7d10dbe5789..3e7ceb7bd578bc 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.06343,"53":0,"54":0,"55":0.01057,"56":0,"57":0,"58":0.00352,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.03172,"66":0,"67":0,"68":0.00352,"69":0,"70":0,"71":0,"72":0.00352,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01057,"79":0.00352,"80":0.00352,"81":0.00352,"82":0.00352,"83":0.00352,"84":0.00352,"85":0,"86":0,"87":0.00352,"88":0,"89":0.00352,"90":0,"91":0.02114,"92":0.00352,"93":0,"94":0.00352,"95":0.00352,"96":0,"97":0.00352,"98":0.00352,"99":0.00705,"100":0.00705,"101":0.01057,"102":0.03524,"103":0.59908,"104":0.12334,"105":0.00352,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00352,"39":0,"40":0,"41":0,"42":0,"43":0.00705,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02819,"50":0,"51":0,"52":0,"53":0.00352,"54":0,"55":0,"56":0.00705,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00352,"64":0.01057,"65":0.00352,"66":0.00352,"67":0.00352,"68":0.00705,"69":0.00705,"70":0.00352,"71":0.00352,"72":0.00705,"73":0.00352,"74":0.01762,"75":0.0141,"76":0.00352,"77":0.00352,"78":0.00352,"79":0.03876,"80":0.00705,"81":0.03172,"83":0.0141,"84":0.03172,"85":0.02819,"86":0.03876,"87":0.05286,"88":0.0141,"89":0.01057,"90":0.00705,"91":0.01057,"92":0.01762,"93":0.01762,"94":0.00705,"95":0.0141,"96":0.02114,"97":0.02819,"98":0.01762,"99":0.02467,"100":0.02819,"101":0.04229,"102":0.09162,"103":2.15316,"104":6.12824,"105":0.02467,"106":0.00352,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00352,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00352,"38":0,"39":0,"40":0.00352,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00352,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0141,"64":0.01057,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00352,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00352,"80":0,"81":0,"82":0.00352,"83":0,"84":0.00352,"85":0.0141,"86":0,"87":0.00352,"88":0.01057,"89":0.45107,"90":0.06696,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00352,"16":0,"17":0.00352,"18":0.01057,"79":0,"80":0,"81":0,"83":0,"84":0.00352,"85":0,"86":0,"87":0,"88":0,"89":0.00352,"90":0,"91":0,"92":0.00705,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00352,"100":0,"101":0.00705,"102":0.00352,"103":0.20087,"104":0.58146,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00352,"12":0,"13":0.00705,"14":0.01762,"15":0.00352,_:"0","3.1":0,"3.2":0,"5.1":0.00352,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00352,"12.1":0.00705,"13.1":0.02467,"14.1":0.03876,"15.1":0.00705,"15.2-15.3":0.00705,"15.4":0.02467,"15.5":0.05286,"15.6":0.06343,"16.0":0},G:{"8":0.0048,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01201,"6.0-6.1":0,"7.0-7.1":0.07324,"8.1-8.4":0.0072,"9.0-9.2":0,"9.3":0.18129,"10.0-10.2":0.04562,"10.3":0.15487,"11.0-11.2":0.18849,"11.3-11.4":0.16088,"12.0-12.1":0.25092,"12.2-12.5":1.57516,"13.0-13.1":0.01561,"13.2":0.01441,"13.3":0.07684,"13.4-13.7":0.14767,"14.0-14.4":0.419,"14.5-14.8":0.87042,"15.0-15.1":0.36978,"15.2-15.3":0.46582,"15.4":0.69633,"15.5":2.82376,"15.6":3.35201,"16.0":0.09725},P:{"4":0.71651,"5.0-5.4":0.01024,"6.2-6.4":0.03071,"7.2-7.4":0.27637,"8.2":0.01024,"9.2":0.08189,"10.1":0.01024,"11.1-11.2":0.11259,"12.0":0.03071,"13.0":0.16377,"14.0":0.1433,"15.0":0.07165,"16.0":0.19448,"17.0":1.42278,"18.0":1.36136},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01413,"4.2-4.3":0.02402,"4.4":0,"4.4.3-4.4.4":0.16061},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00392,"9":0,"10":0,"11":0.03132,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":68.34195},S:{"2.5":0},R:{_:"0"},M:{"0":0.19428},Q:{"10.4":0},O:{"0":0.1878},H:{"0":0.44757}}; +module.exports={C:{"2":0,"3":0,"4":0.00392,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00392,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.07061,"53":0,"54":0,"55":0.00785,"56":0,"57":0,"58":0.00392,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.02354,"66":0,"67":0,"68":0.00392,"69":0,"70":0,"71":0,"72":0.00392,"73":0.00392,"74":0,"75":0.00392,"76":0,"77":0,"78":0.01177,"79":0,"80":0.00392,"81":0.01177,"82":0.00392,"83":0.00785,"84":0.00392,"85":0,"86":0,"87":0.00392,"88":0.00392,"89":0.00392,"90":0,"91":0.01569,"92":0.00392,"93":0.00392,"94":0.00392,"95":0.00392,"96":0,"97":0.00392,"98":0.00392,"99":0.01177,"100":0.00785,"101":0.00392,"102":0.04708,"103":0.05885,"104":0.66691,"105":0.22361,"106":0.00392,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00392,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00392,"39":0,"40":0.00392,"41":0,"42":0,"43":0.00392,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.05885,"50":0.00392,"51":0,"52":0,"53":0.00392,"54":0,"55":0,"56":0.00785,"57":0.00392,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00392,"64":0.00392,"65":0.00392,"66":0.00392,"67":0.00785,"68":0.00785,"69":0.00785,"70":0.00392,"71":0.00392,"72":0.00392,"73":0.00785,"74":0.02354,"75":0.01962,"76":0.00392,"77":0.00392,"78":0.00392,"79":0.051,"80":0.01177,"81":0.03138,"83":0.03923,"84":0.04315,"85":0.08631,"86":0.08238,"87":0.07454,"88":0.01569,"89":0.01177,"90":0.00785,"91":0.01569,"92":0.01962,"93":0.01962,"94":0.01177,"95":0.01177,"96":0.02354,"97":0.02354,"98":0.02354,"99":0.02354,"100":0.03138,"101":0.03531,"102":0.06669,"103":0.25107,"104":1.89873,"105":7.93623,"106":0.25107,"107":0.00392,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00392,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00392,"37":0,"38":0,"39":0,"40":0.00392,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00392,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00392,"64":0.02354,"65":0,"66":0,"67":0,"68":0,"69":0.00392,"70":0.00392,"71":0.00392,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00392,"80":0,"81":0,"82":0.00392,"83":0,"84":0.00392,"85":0.01569,"86":0,"87":0,"88":0.00785,"89":0.04708,"90":0.55707,"91":0.02746,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00392,"13":0,"14":0.00392,"15":0.00392,"16":0,"17":0.00392,"18":0.01962,"79":0,"80":0.00392,"81":0,"83":0,"84":0.00785,"85":0,"86":0,"87":0,"88":0,"89":0.00392,"90":0,"91":0,"92":0.00785,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00392,"100":0,"101":0.00785,"102":0.00392,"103":0.01569,"104":0.14907,"105":0.81206},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00392,"12":0,"13":0.00392,"14":0.02354,"15":0.00392,_:"0","3.1":0,"3.2":0,"5.1":0.02354,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00392,"12.1":0.00392,"13.1":0.03138,"14.1":0.04708,"15.1":0.01177,"15.2-15.3":0.00785,"15.4":0.02354,"15.5":0.03923,"15.6":0.09415,"16.0":0.02354,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02393,"6.0-6.1":0.00218,"7.0-7.1":0.09572,"8.1-8.4":0.00761,"9.0-9.2":0.00218,"9.3":0.18056,"10.0-10.2":0.05003,"10.3":0.18382,"11.0-11.2":0.20123,"11.3-11.4":0.15989,"12.0-12.1":0.24365,"12.2-12.5":1.5924,"13.0-13.1":0.01523,"13.2":0.01088,"13.3":0.06961,"13.4-13.7":0.13596,"14.0-14.4":0.34589,"14.5-14.8":0.69831,"15.0-15.1":0.28824,"15.2-15.3":0.30782,"15.4":0.42747,"15.5":1.11163,"15.6":3.49153,"16.0":1.06704,"16.1":0.01523},P:{"4":0.94363,"5.0-5.4":0.01015,"6.2-6.4":0.02029,"7.2-7.4":0.26381,"8.2":0.01015,"9.2":0.09132,"10.1":0.01015,"11.1-11.2":0.10147,"12.0":0.03044,"13.0":0.13191,"14.0":0.11161,"15.0":0.07103,"16.0":0.14205,"17.0":0.4363,"18.0":2.13077},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01647,"4.2-4.3":0.02373,"4.4":0,"4.4.3-4.4.4":0.16903},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00409,"7":0,"8":0.00817,"9":0.00409,"10":0,"11":0.08173,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00608},O:{"0":0.14585},H:{"0":0.47752},L:{"0":66.5857},S:{"2.5":0},R:{_:"0"},M:{"0":0.17623},Q:{"13.1":0}}; 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 922e6f08d8cd2d..5e2ab11787e2fb 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,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00625,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.04374,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.19997,"79":0.00625,"80":0,"81":0,"82":0.00625,"83":0.03125,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.39994,"92":0,"93":0,"94":0,"95":0.00625,"96":0.0125,"97":0,"98":0,"99":0,"100":0.00625,"101":0.0125,"102":0.05624,"103":2.95578,"104":0.47492,"105":0,"106":0,"3.5":1.13732,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.93735,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00625,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.0125,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.04374,"78":0,"79":0.00625,"80":0.04374,"81":0,"83":0,"84":0.00625,"85":0.40619,"86":0.49367,"87":0.24996,"88":0.00625,"89":0.00625,"90":0.025,"91":0.00625,"92":0,"93":0.00625,"94":0.00625,"95":0,"96":0.01875,"97":0,"98":0.00625,"99":0.07499,"100":0.025,"101":0.28745,"102":0.39994,"103":6.33024,"104":11.80436,"105":0.08124,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.3312,"90":0.07499,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00625,"18":0.00625,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.03125,"98":0,"99":0,"100":0,"101":0.00625,"102":0,"103":1.25605,"104":2.08717,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.04374,"14":0.3187,"15":0.0125,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00625,"11.1":0.08124,"12.1":0.09374,"13.1":0.53117,"14.1":0.42493,"15.1":0.12498,"15.2-15.3":0.05624,"15.4":0.45618,"15.5":1.11232,"15.6":4.11184,"16.0":0.03749},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.02112,"10.0-10.2":0,"10.3":0.14364,"11.0-11.2":0,"11.3-11.4":0.17744,"12.0-12.1":0.0169,"12.2-12.5":0.44782,"13.0-13.1":0.02112,"13.2":0.01267,"13.3":0.04225,"13.4-13.7":0.44782,"14.0-14.4":0.42247,"14.5-14.8":1.78283,"15.0-15.1":0.48584,"15.2-15.3":1.19137,"15.4":3.52341,"15.5":11.48699,"15.6":21.75303,"16.0":0.25348},P:{"4":0.01032,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.37155,"12.0":0.01032,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0.45412,"18.0":0.85664},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.02},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00625,"10":0,"11":0.025,"5.5":0},J:{"7":0,"10":0.00375},N:{"10":0,"11":0},L:{"0":15.75175},S:{"2.5":0},R:{_:"0"},M:{"0":0.29633},Q:{"10.4":0},O:{"0":0},H:{"0":0.06037}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00635,"48":0,"49":0,"50":0,"51":0,"52":0.01269,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00635,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00635,"68":0.00635,"69":0,"70":0,"71":0,"72":0.00635,"73":0,"74":0,"75":0.02538,"76":0,"77":0,"78":0.43153,"79":0,"80":0,"81":0,"82":0,"83":0.20942,"84":0.01269,"85":0,"86":0,"87":0,"88":0.00635,"89":0,"90":0,"91":0.12057,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.01269,"99":0,"100":0.00635,"101":0.00635,"102":0.04442,"103":0.10154,"104":1.92918,"105":0.52672,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.68537,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.05077,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00635,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.13327,"78":0,"79":0.02538,"80":0.17769,"81":0.02538,"83":0,"84":0.19673,"85":0.05711,"86":0.37441,"87":0.20307,"88":0.00635,"89":0.01269,"90":0.00635,"91":0.01269,"92":0.00635,"93":0.00635,"94":0.00635,"95":0.00635,"96":0.00635,"97":0,"98":0.00635,"99":0.00635,"100":0.03173,"101":0.05077,"102":0.32999,"103":1.76419,"104":3.75049,"105":12.527,"106":0.26653,"107":0.00635,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00635,"89":0.12057,"90":0.41884,"91":0.03173,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00635,"18":0.01904,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00635,"100":0,"101":0,"102":0.02538,"103":0.03173,"104":0.57749,"105":3.01435},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.03173,"14":0.81863,"15":0.05077,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.01269,"11.1":0.01269,"12.1":0.64095,"13.1":0.56479,"14.1":0.72979,"15.1":0.05077,"15.2-15.3":0.06981,"15.4":0.19038,"15.5":0.84402,"15.6":5.27987,"16.0":0.7869,"16.1":0.03173},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.02102,"10.0-10.2":0,"10.3":0.08408,"11.0-11.2":0,"11.3-11.4":0.22281,"12.0-12.1":0,"12.2-12.5":0.5339,"13.0-13.1":0.05886,"13.2":0,"13.3":0.07988,"13.4-13.7":0.28167,"14.0-14.4":0.40778,"14.5-14.8":2.37944,"15.0-15.1":0.70626,"15.2-15.3":1.0636,"15.4":1.5891,"15.5":2.67792,"15.6":25.96363,"16.0":4.92283,"16.1":0.09669},P:{"4":0,"5.0-5.4":0.01028,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.67837,"12.0":0.01028,"13.0":0,"14.0":0.01028,"15.0":0,"16.0":0.01028,"17.0":0.2364,"18.0":2.2304},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00635,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00635,"10":0,"11":0.00635,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.04843},L:{"0":13.28964},S:{"2.5":0},R:{_:"0"},M:{"0":0.21924},Q:{"13.1":0}}; 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 a7033e967592d2..5dec375cf3ecf1 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:{"52":0.07563,"55":0.00445,"60":0.00445,"68":0.01335,"78":0.03114,"82":0.08008,"87":0.09788,"91":0.24914,"93":0.0178,"96":0.00445,"97":0.0089,"98":0.0089,"99":0.02225,"100":0.00445,"101":0.0178,"102":0.28029,"103":2.16221,"104":0.28029,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 83 84 85 86 88 89 90 92 94 95 105 106 3.5","3.6":0.04449},D:{"49":0.11123,"61":0.00445,"63":0.00445,"64":0.0089,"67":0.01335,"68":0.0178,"69":0.0178,"70":0.01335,"71":0.02225,"72":0.01335,"74":0.04449,"75":0.53833,"77":0.0089,"78":0.02225,"79":0.10678,"80":0.2358,"81":0.0089,"83":0.0178,"84":0.10233,"85":0.05339,"86":0.11567,"87":0.03114,"88":0.02225,"89":0.02225,"90":0.01335,"91":0.0178,"92":0.05339,"93":0.01335,"94":0.06674,"95":0.01335,"96":0.12012,"97":0.08898,"98":0.05339,"99":0.07563,"100":0.08453,"101":0.19131,"102":0.60062,"103":7.91922,"104":19.77136,"105":0.05339,"106":0.02669,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 62 65 66 73 76 107 108"},F:{"36":0.00445,"79":0.0089,"82":0.00445,"84":0.0089,"85":0.04449,"87":0.01335,"88":0.02225,"89":2.51813,"90":0.36037,_:"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 83 86 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.0089,"92":0.0089,"97":0.00445,"101":0.01335,"102":0.02225,"103":0.39151,"104":1.08556,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 98 99 100 105"},E:{"4":0,"11":0.00445,"13":0.03114,"14":0.07118,"15":0.0089,_:"0 5 6 7 8 9 10 12 3.1 3.2 6.1 7.1 10.1 11.1","5.1":0.0089,"9.1":0.0089,"12.1":0.01335,"13.1":0.08008,"14.1":0.16461,"15.1":0.04449,"15.2-15.3":0.02225,"15.4":0.13347,"15.5":0.25804,"15.6":0.42266,"16.0":0.01335},G:{"8":0.00202,"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.00505,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01717,"10.0-10.2":0.00101,"10.3":0.03738,"11.0-11.2":0.01717,"11.3-11.4":0.01414,"12.0-12.1":0.01111,"12.2-12.5":0.30712,"13.0-13.1":0.01717,"13.2":0.00909,"13.3":0.02526,"13.4-13.7":0.1384,"14.0-14.4":0.25862,"14.5-14.8":0.75264,"15.0-15.1":0.16972,"15.2-15.3":0.27984,"15.4":0.50109,"15.5":2.42764,"15.6":4.9371,"16.0":0.16669},P:{"4":0.2273,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05166,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02066,"12.0":0,"13.0":0.031,"14.0":0.04133,"15.0":0.02066,"16.0":0.08266,"17.0":0.80589,"18.0":1.03319},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00828,"4.2-4.3":0.02483,"4.4":0,"4.4.3-4.4.4":0.06124},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01335,"11":0.28919,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":43.63078},S:{"2.5":0},R:{_:"0"},M:{"0":0.37185},Q:{"10.4":0},O:{"0":0.07215},H:{"0":0.2417}}; +module.exports={C:{"52":0.0715,"68":0.01129,"78":0.01505,"87":0.12794,"89":0.00376,"91":0.15805,"93":0.00753,"94":0.00376,"99":0.01882,"100":0.00753,"101":0.00753,"102":0.03387,"103":0.13171,"104":1.19287,"105":0.40264,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 88 90 92 95 96 97 98 106 107 3.5","3.6":0.05645},D:{"34":0.00753,"40":0.00376,"49":0.07526,"51":0.02258,"56":0.00376,"64":0.01129,"65":0.00753,"67":0.01505,"68":0.01882,"69":0.01129,"70":0.01129,"71":0.01882,"72":0.01129,"73":0.00753,"74":0.03387,"75":0.01129,"76":0.01129,"77":0.01129,"78":0.00376,"79":0.03387,"80":0.03387,"81":0.00376,"83":0.01505,"84":0.01505,"85":0.03763,"86":0.06397,"87":0.02634,"88":0.02258,"89":0.02258,"90":0.01505,"91":0.00753,"92":0.03387,"93":0.01129,"94":0.02634,"95":0.01882,"96":0.09784,"97":0.05645,"98":0.04516,"99":0.05268,"100":0.08655,"101":0.12042,"102":0.29351,"103":0.39135,"104":5.39614,"105":19.14991,"106":0.2446,"107":0.01505,_:"4 5 6 7 8 9 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 50 52 53 54 55 57 58 59 60 61 62 63 66 108 109"},F:{"36":0.00376,"71":0.00753,"82":0.00753,"83":0.00376,"84":0.00376,"85":0.11289,"87":0.00753,"89":0.10536,"90":2.32553,"91":0.06021,_:"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 72 73 74 75 76 77 78 79 80 81 86 88 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00376,"92":0.00376,"102":0.01505,"103":0.01129,"104":0.18062,"105":1.05364,_:"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"},E:{"4":0,"12":0.04892,"13":0.02258,"14":0.05645,"15":0.00376,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1 11.1 16.1","5.1":0.01129,"12.1":0.01505,"13.1":0.04892,"14.1":0.09784,"15.1":0.02634,"15.2-15.3":0.0301,"15.4":0.04892,"15.5":0.11289,"15.6":0.42522,"16.0":0.08279},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.00232,"8.1-8.4":0.00116,"9.0-9.2":0,"9.3":0.01738,"10.0-10.2":0,"10.3":0.02666,"11.0-11.2":0.00579,"11.3-11.4":0.00348,"12.0-12.1":0.00811,"12.2-12.5":0.27699,"13.0-13.1":0.00927,"13.2":0.00811,"13.3":0.0255,"13.4-13.7":0.0846,"14.0-14.4":0.22368,"14.5-14.8":0.70465,"15.0-15.1":0.14371,"15.2-15.3":0.27236,"15.4":0.41839,"15.5":0.99903,"15.6":5.72528,"16.0":2.41876,"16.1":0.04288},P:{"4":0.08419,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03157,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.04209,"12.0":0,"13.0":0.03157,"14.0":0.04209,"15.0":0.03157,"16.0":0.08419,"17.0":0.1789,"18.0":1.99942},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00691,"4.4":0,"4.4.3-4.4.4":0.04922},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01129,"11":0.21825,_:"6 7 9 10 5.5"},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.0686},H:{"0":0.17121},L:{"0":49.34424},S:{"2.5":0},R:{_:"0"},M:{"0":0.27438},Q:{"13.1":0}}; 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 5ef3fc5d75ae70..6b52eb47238ab5 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01649,"53":0,"54":0,"55":0,"56":0.0033,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0033,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0033,"79":0,"80":0,"81":0,"82":0.01649,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01319,"92":0.0033,"93":0,"94":0.0033,"95":0.0033,"96":0,"97":0.0033,"98":0.0066,"99":0.0033,"100":0,"101":0.0033,"102":0.01319,"103":0.6563,"104":0.08905,"105":0.01319,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0033,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.0033,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0033,"39":0,"40":0,"41":0,"42":0.0033,"43":0,"44":0,"45":0,"46":0,"47":0.0033,"48":0,"49":0.00989,"50":0,"51":0,"52":0,"53":0.0066,"54":0,"55":0,"56":0,"57":0,"58":0.0033,"59":0,"60":0,"61":0,"62":0.0033,"63":0,"64":0,"65":0,"66":0,"67":0.0033,"68":0,"69":0,"70":0.0033,"71":0,"72":0,"73":0,"74":0.0033,"75":0,"76":0.0033,"77":0.0033,"78":0.0033,"79":0.09894,"80":0.0066,"81":0.0066,"83":0.02638,"84":0.02309,"85":0.01319,"86":0.0066,"87":0.02968,"88":0.00989,"89":0.02309,"90":0.0033,"91":0.0033,"92":0.01319,"93":0.0066,"94":0,"95":0.0066,"96":0.04287,"97":0.01319,"98":0.06596,"99":0.01649,"100":0.02638,"101":0.02968,"102":0.06266,"103":2.17668,"104":5.06573,"105":0.01649,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0033,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.0033,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0033,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0033,"64":0.0033,"65":0,"66":0,"67":0,"68":0.07915,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.0033,"82":0,"83":0,"84":0.0033,"85":0.00989,"86":0,"87":0,"88":0.0033,"89":0.31001,"90":0.05936,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.0033,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0066,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.0033,"103":0.11873,"104":0.34629,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0033,"14":0.02309,"15":0.0033,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.0033,"12.1":0.0066,"13.1":0.01979,"14.1":0.05607,"15.1":0.01979,"15.2-15.3":0.0066,"15.4":0.02968,"15.5":0.19458,"15.6":0.20118,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00247,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.05442,"8.1-8.4":0.02721,"9.0-9.2":0,"9.3":0.07668,"10.0-10.2":0.00247,"10.3":0.16325,"11.0-11.2":0.047,"11.3-11.4":0.01484,"12.0-12.1":0.02473,"12.2-12.5":0.46748,"13.0-13.1":0.00742,"13.2":0.00495,"13.3":0.05194,"13.4-13.7":0.16077,"14.0-14.4":0.64062,"14.5-14.8":2.83703,"15.0-15.1":0.31165,"15.2-15.3":0.57631,"15.4":1.31587,"15.5":6.28995,"15.6":11.37781,"16.0":0.2696},P:{"4":0.29844,"5.0-5.4":0.07204,"6.2-6.4":0,"7.2-7.4":0.02058,"8.2":0,"9.2":0,"10.1":0.01029,"11.1-11.2":0.16466,"12.0":0.03087,"13.0":0.06175,"14.0":0.05146,"15.0":0.03087,"16.0":0.08233,"17.0":1.21434,"18.0":1.7289},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01598,"4.2-4.3":0.00625,"4.4":0,"4.4.3-4.4.4":0.03404},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0066,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":58.98131},S:{"2.5":0},R:{_:"0"},M:{"0":0.28148},Q:{"10.4":0},O:{"0":0.02681},H:{"0":0.26649}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.03588,"53":0,"54":0,"55":0,"56":0.00359,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00359,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00718,"79":0,"80":0.00359,"81":0.00359,"82":0.00718,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00359,"89":0,"90":0,"91":0.00718,"92":0,"93":0,"94":0.00359,"95":0.00359,"96":0,"97":0.00359,"98":0.00718,"99":0.01076,"100":0,"101":0.00359,"102":0.00718,"103":0.06817,"104":0.63508,"105":0.19375,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00718,"23":0,"24":0,"25":0,"26":0.00359,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01435,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02153,"50":0,"51":0,"52":0,"53":0.01435,"54":0,"55":0,"56":0,"57":0,"58":0.03947,"59":0,"60":0,"61":0,"62":0.01076,"63":0,"64":0,"65":0,"66":0.01076,"67":0,"68":0.00718,"69":0,"70":0.00359,"71":0,"72":0,"73":0.00359,"74":0.00718,"75":0.01794,"76":0,"77":0,"78":0.01076,"79":0.10046,"80":0.00718,"81":0.01076,"83":0.01435,"84":0.05382,"85":0.02512,"86":0.01076,"87":0.03588,"88":0.00718,"89":0.03229,"90":0.00359,"91":0.00718,"92":0.01794,"93":0.01794,"94":0.01076,"95":0.01435,"96":0.02512,"97":0.03588,"98":0.02512,"99":0.02153,"100":0.02512,"101":0.02153,"102":0.07535,"103":0.2404,"104":1.82988,"105":6.81361,"106":0.0897,"107":0.00359,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00359,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00359,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01076,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00718,"65":0,"66":0,"67":0,"68":0.01435,"69":0,"70":0,"71":0.00359,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00359,"85":0.02512,"86":0,"87":0,"88":0,"89":0.02153,"90":0.35521,"91":0.02153,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00359,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00359,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00359,"103":0.01076,"104":0.07535,"105":0.39468},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02153,"14":0.02512,"15":0.01076,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00359,"12.1":0.01794,"13.1":0.02512,"14.1":0.07535,"15.1":0.01435,"15.2-15.3":0.01794,"15.4":0.0287,"15.5":0.05023,"15.6":0.27628,"16.0":0.02153,"16.1":0.00359},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.06631,"8.1-8.4":0.01829,"9.0-9.2":0,"9.3":0.08232,"10.0-10.2":0.00457,"10.3":0.15778,"11.0-11.2":0.01372,"11.3-11.4":0.01372,"12.0-12.1":0.02058,"12.2-12.5":0.59453,"13.0-13.1":0.02287,"13.2":0.00915,"13.3":0.04345,"13.4-13.7":0.17379,"14.0-14.4":0.75002,"14.5-14.8":1.79503,"15.0-15.1":0.21266,"15.2-15.3":0.38645,"15.4":0.81176,"15.5":2.03284,"15.6":12.22449,"16.0":3.12358,"16.1":0.02973},P:{"4":0.19548,"5.0-5.4":0.02058,"6.2-6.4":0,"7.2-7.4":0.02058,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.05144,"12.0":0.01029,"13.0":0.04115,"14.0":0.04115,"15.0":0.03087,"16.0":0.0926,"17.0":0.24693,"18.0":2.82936},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02018,"4.2-4.3":0.00356,"4.4":0,"4.4.3-4.4.4":0.06649},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01435,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.02565},H:{"0":0.30352},L:{"0":59.13518},S:{"2.5":0},R:{_:"0"},M:{"0":0.2116},Q:{"13.1":0}}; 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 62e8ec382586e0..7845ca1e99ff3f 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.0049,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.0049,"44":0,"45":0,"46":0,"47":0.01961,"48":0.0049,"49":0,"50":0,"51":0,"52":0.04413,"53":0,"54":0,"55":0,"56":0.0049,"57":0.0049,"58":0.0049,"59":0,"60":0,"61":0,"62":0,"63":0.0049,"64":0,"65":0,"66":0.0049,"67":0,"68":0.00981,"69":0,"70":0,"71":0,"72":0.02452,"73":0,"74":0,"75":0,"76":0,"77":0.0049,"78":0.03922,"79":0,"80":0,"81":0.00981,"82":0.0049,"83":0,"84":0.0049,"85":0,"86":0.0049,"87":0.0049,"88":0.01471,"89":0.01471,"90":0,"91":0.06864,"92":0.0049,"93":0.0049,"94":0.00981,"95":0.01961,"96":0.02452,"97":0.05393,"98":0.01471,"99":0.03922,"100":0.04903,"101":0.07845,"102":0.18141,"103":2.73587,"104":0.34811,"105":0.0049,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02942,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.0049,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00981,"41":0,"42":0.00981,"43":0.0049,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02452,"50":0.00981,"51":0.0049,"52":0,"53":0,"54":0,"55":0.00981,"56":0.02452,"57":0.02942,"58":0.01471,"59":0,"60":0,"61":0.0049,"62":0.01961,"63":0.0049,"64":0.0049,"65":0.0049,"66":0.05884,"67":0.0049,"68":0,"69":0.00981,"70":0.01961,"71":0.0049,"72":0.02452,"73":0.0049,"74":0.01961,"75":0.0049,"76":0.0049,"77":0.0049,"78":0.0049,"79":0.01961,"80":0.00981,"81":0.04903,"83":0.0049,"84":0.00981,"85":0.01471,"86":0.07355,"87":0.04903,"88":0.02942,"89":0.15199,"90":0.02942,"91":0.00981,"92":0.01471,"93":0.05393,"94":0.02942,"95":0.07355,"96":0.04413,"97":0.10296,"98":0.02942,"99":0.06374,"100":0.08335,"101":0.09316,"102":0.19612,"103":3.2703,"104":7.23193,"105":0.03432,"106":0.00981,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0.00981,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.0049,"27":0.0049,"28":0.00981,"29":0.0049,"30":0.0049,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.0049,"37":0.01471,"38":0.00981,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0049,"47":0.0049,"48":0,"49":0,"50":0.00981,"51":0,"52":0,"53":0.03432,"54":0.0049,"55":0,"56":0,"57":0.0049,"58":0.01961,"60":0.09316,"62":0.0049,"63":0.22554,"64":0.12258,"65":0,"66":0,"67":0,"68":0,"69":0.00981,"70":0.0049,"71":0.0049,"72":0,"73":0,"74":0,"75":0,"76":0.0049,"77":0,"78":0,"79":0.03432,"80":0,"81":0.0049,"82":0.00981,"83":0,"84":0.00981,"85":0.03432,"86":0.00981,"87":0.00981,"88":0.01471,"89":0.64229,"90":0.07355,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01471},B:{"12":0.0049,"13":0.0049,"14":0.01961,"15":0.00981,"16":0,"17":0.0049,"18":0.02452,"79":0,"80":0,"81":0,"83":0,"84":0.0049,"85":0.00981,"86":0,"87":0,"88":0,"89":0.0049,"90":0.0049,"91":0,"92":0.01471,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01471,"100":0.00981,"101":0.0049,"102":0.01471,"103":0.39224,"104":0.89725,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0049,"15":0.0049,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00981,"12.1":0.01471,"13.1":0.01961,"14.1":0.04903,"15.1":0,"15.2-15.3":0.0049,"15.4":0.00981,"15.5":0.02942,"15.6":0.04413,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00851,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03023,"8.1-8.4":0.00088,"9.0-9.2":0.00117,"9.3":0.02817,"10.0-10.2":0.00323,"10.3":0.1212,"11.0-11.2":0.00147,"11.3-11.4":0.00411,"12.0-12.1":0.00499,"12.2-12.5":0.31342,"13.0-13.1":0.00763,"13.2":0.01115,"13.3":0.01027,"13.4-13.7":0.07953,"14.0-14.4":0.23184,"14.5-14.8":0.19251,"15.0-15.1":0.15055,"15.2-15.3":0.10741,"15.4":0.16463,"15.5":0.58634,"15.6":0.85839,"16.0":0.01555},P:{"4":0.07176,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0205,"8.2":0,"9.2":0.01025,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.03076,"14.0":0.04101,"15.0":0.01025,"16.0":0.15378,"17.0":0.37932,"18.0":0.18453},I:{"0":0,"3":0,"4":0.00137,"2.1":0,"2.2":0,"2.3":0,"4.1":0.04144,"4.2-4.3":0.03916,"4.4":0,"4.4.3-4.4.4":0.15255},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.0049,"10":0,"11":0.01471,"5.5":0},J:{"7":0,"10":0.01529},N:{"10":0,"11":0},L:{"0":69.76109},S:{"2.5":0.09175},R:{_:"0"},M:{"0":0.44344},Q:{"10.4":0.0051},O:{"0":0.81042},H:{"0":3.11728}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00461,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00461,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00923,"48":0.00923,"49":0,"50":0.00461,"51":0,"52":0.03691,"53":0.00461,"54":0,"55":0,"56":0.00923,"57":0.00461,"58":0,"59":0,"60":0.00461,"61":0,"62":0,"63":0,"64":0,"65":0.00461,"66":0,"67":0,"68":0.00923,"69":0.00461,"70":0,"71":0,"72":0.00923,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02307,"79":0.00923,"80":0.00461,"81":0.00461,"82":0.00461,"83":0,"84":0.00461,"85":0,"86":0,"87":0,"88":0.00923,"89":0.00923,"90":0.00461,"91":0.05075,"92":0.00461,"93":0.00461,"94":0.00461,"95":0.04614,"96":0.00923,"97":0.11074,"98":0.00461,"99":0.02307,"100":0.01846,"101":0.0323,"102":0.05998,"103":0.13381,"104":1.77639,"105":0.60443,"106":0.01846,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04153,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00461,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00461,"39":0,"40":0.00461,"41":0,"42":0.00461,"43":0.00461,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01846,"50":0.00461,"51":0.00923,"52":0,"53":0.00461,"54":0,"55":0.01846,"56":0.04153,"57":0.01384,"58":0.00461,"59":0,"60":0,"61":0,"62":0.0323,"63":0.00461,"64":0.00923,"65":0.00461,"66":0.07844,"67":0.00461,"68":0,"69":0.05075,"70":0.00923,"71":0.00461,"72":0.00461,"73":0.01846,"74":0.01384,"75":0.01384,"76":0.00461,"77":0.00461,"78":0.00461,"79":0.01384,"80":0.01384,"81":0.05075,"83":0.00461,"84":0.00461,"85":0.00461,"86":0.04614,"87":0.02307,"88":0.02768,"89":0.01846,"90":0.01384,"91":0.01384,"92":0.01384,"93":0.00461,"94":0.02307,"95":0.08305,"96":0.02307,"97":0.0646,"98":0.01846,"99":0.02768,"100":0.04614,"101":0.05075,"102":0.05998,"103":0.42449,"104":1.93788,"105":6.63493,"106":0.15226,"107":0.00461,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0.00461,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00461,"25":0.00461,"26":0.00461,"27":0.00461,"28":0.00461,"29":0,"30":0.00461,"31":0,"32":0.00461,"33":0,"34":0,"35":0,"36":0,"37":0.02307,"38":0.00461,"39":0,"40":0,"41":0.00923,"42":0.02307,"43":0,"44":0,"45":0,"46":0.00461,"47":0.00923,"48":0,"49":0,"50":0.00461,"51":0.00923,"52":0,"53":0.02307,"54":0,"55":0,"56":0,"57":0,"58":0.0323,"60":0.04614,"62":0.00461,"63":0.07382,"64":0.20302,"65":0.00923,"66":0,"67":0,"68":0,"69":0,"70":0.00923,"71":0,"72":0,"73":0,"74":0.00461,"75":0,"76":0.00923,"77":0,"78":0,"79":0.01846,"80":0,"81":0,"82":0.00923,"83":0,"84":0,"85":0.01384,"86":0.00461,"87":0,"88":0,"89":0.01846,"90":0.47524,"91":0.00461,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00923},B:{"12":0,"13":0.00461,"14":0.00923,"15":0.00923,"16":0,"17":0.00461,"18":0.01384,"79":0,"80":0,"81":0,"83":0,"84":0.00461,"85":0,"86":0,"87":0,"88":0,"89":0.00461,"90":0.00461,"91":0,"92":0.00923,"93":0,"94":0,"95":0,"96":0.00461,"97":0,"98":0,"99":0.00461,"100":0.00461,"101":0.00461,"102":0,"103":0.02768,"104":0.18456,"105":1.01508},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.01384,"13":0.00461,"14":0.00923,"15":0.00461,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00461,"11.1":0.01384,"12.1":0.01384,"13.1":0.01384,"14.1":0.05537,"15.1":0.00461,"15.2-15.3":0.00461,"15.4":0.00923,"15.5":0.01846,"15.6":0.0646,"16.0":0.00923,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0066,"5.0-5.1":0.00628,"6.0-6.1":0.00188,"7.0-7.1":0.01948,"8.1-8.4":0.00126,"9.0-9.2":0.00031,"9.3":0.0377,"10.0-10.2":0.00126,"10.3":0.15141,"11.0-11.2":0.0044,"11.3-11.4":0.00283,"12.0-12.1":0.02073,"12.2-12.5":0.24156,"13.0-13.1":0.00911,"13.2":0.00157,"13.3":0.03707,"13.4-13.7":0.04869,"14.0-14.4":0.34114,"14.5-14.8":0.19727,"15.0-15.1":0.12848,"15.2-15.3":0.09424,"15.4":0.17591,"15.5":0.31161,"15.6":0.97317,"16.0":0.29214,"16.1":0.00408},P:{"4":0.06359,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0106,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0106,"12.0":0.03179,"13.0":0.03179,"14.0":0.04239,"15.0":0.0106,"16.0":0.04239,"17.0":0.12718,"18.0":0.28615},I:{"0":0,"3":0,"4":0.00254,"2.1":0,"2.2":0,"2.3":0,"4.1":0.04636,"4.2-4.3":0.06605,"4.4":0,"4.4.3-4.4.4":0.22736},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00554,"10":0,"11":0.02215,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.01077},O:{"0":1.17953},H:{"0":3.51839},L:{"0":71.93681},S:{"2.5":0.11849},R:{_:"0"},M:{"0":0.42549},Q:{"13.1":0.00539}}; 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 f35a35c6c834cb..e782231018c511 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.02679,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00536,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00536,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00536,"99":0.00536,"100":0,"101":0,"102":0.00536,"103":0.34291,"104":0.04286,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00536,"64":0,"65":0,"66":0,"67":0.02679,"68":0,"69":0.00536,"70":0,"71":0,"72":0,"73":0.17146,"74":0,"75":0.02679,"76":0,"77":0.05894,"78":0.00536,"79":0.01072,"80":0.04822,"81":0,"83":0,"84":0,"85":0,"86":0.00536,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01607,"93":0.02679,"94":0,"95":0,"96":0,"97":0.01072,"98":0.00536,"99":0.02679,"100":0.1018,"101":1.55382,"102":0.02679,"103":4.62395,"104":11.97513,"105":0.05894,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.10716,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00536,"16":0,"17":0,"18":0.00536,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00536,"94":0,"95":0,"96":0,"97":0.00536,"98":0,"99":0,"100":0,"101":0,"102":0.01607,"103":1.16269,"104":1.62883,"105":0.01607},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00536,"13":0.01072,"14":0.54652,"15":0.00536,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.19289,"11.1":0,"12.1":0,"13.1":0.4715,"14.1":0.71797,"15.1":0.00536,"15.2-15.3":0,"15.4":0.08037,"15.5":0.32684,"15.6":0.12859,"16.0":0},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":6.19512,"10.0-10.2":0.07613,"10.3":0.26224,"11.0-11.2":0.15227,"11.3-11.4":0,"12.0-12.1":0.02538,"12.2-12.5":1.10818,"13.0-13.1":0.00846,"13.2":0.02538,"13.3":0,"13.4-13.7":0.05922,"14.0-14.4":0.47373,"14.5-14.8":1.13356,"15.0-15.1":1.37325,"15.2-15.3":0.90516,"15.4":0.51602,"15.5":7.38789,"15.6":8.49044,"16.0":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06605,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03303,"12.0":0,"13.0":0.04403,"14.0":0.01101,"15.0":0.03303,"16.0":0.01101,"17.0":2.59802,"18.0":4.68965},I:{"0":0,"3":0,"4":0.18764,"2.1":0,"2.2":0.03412,"2.3":0,"4.1":0,"4.2-4.3":0.15352,"4.4":0,"4.4.3-4.4.4":0.18764},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01607,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":34.84369},S:{"2.5":0},R:{_:"0"},M:{"0":0.10212},Q:{"10.4":0},O:{"0":0.07427},H:{"0":0.02197}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00553,"77":0.00553,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.01107,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.0332,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.0332,"104":0.67503,"105":0.02213,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.01107,"64":0,"65":0,"66":0,"67":0.05533,"68":0.00553,"69":0,"70":0,"71":0.0166,"72":0.00553,"73":0.0664,"74":0,"75":0.01107,"76":0.09406,"77":0.0498,"78":0,"79":0,"80":0.0166,"81":0,"83":0,"84":0.01107,"85":0,"86":0.06086,"87":0.02767,"88":0,"89":0,"90":0.00553,"91":0,"92":0.0166,"93":0.13833,"94":0.06086,"95":0,"96":0,"97":0.0166,"98":0.01107,"99":0,"100":0.01107,"101":0.05533,"102":0.0166,"103":0.17152,"104":4.16635,"105":16.08996,"106":0.39284,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.01107,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0498,"86":0,"87":0,"88":0,"89":0.00553,"90":0.23239,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.01107,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.0166,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00553,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.0166,"100":0,"101":0.00553,"102":0,"103":0.02213,"104":0.23239,"105":1.54924},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0166,"14":0.55883,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0166,"13.1":0.32645,"14.1":0.30432,"15.1":0.06086,"15.2-15.3":0.01107,"15.4":0.03873,"15.5":0.07193,"15.6":0.39838,"16.0":0.0166,"16.1":0},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.01104,"8.1-8.4":0,"9.0-9.2":0,"9.3":2.37775,"10.0-10.2":0,"10.3":1.17673,"11.0-11.2":0.04636,"11.3-11.4":0.04636,"12.0-12.1":0.08169,"12.2-12.5":0.87648,"13.0-13.1":0.08169,"13.2":0.03532,"13.3":0,"13.4-13.7":0.18545,"14.0-14.4":0.7131,"14.5-14.8":1.2827,"15.0-15.1":0.83232,"15.2-15.3":0.70206,"15.4":0.41506,"15.5":1.7088,"15.6":9.71631,"16.0":1.16569,"16.1":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.08621,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.03233,"14.0":0,"15.0":0,"16.0":0.04311,"17.0":0.4634,"18.0":2.64032},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.91675,"4.4":0,"4.4.3-4.4.4":0.04244},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0664,"9":0,"10":0,"11":0.06086,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.20102},H:{"0":0.02537},L:{"0":45.03587},S:{"2.5":0},R:{_:"0"},M:{"0":0.0268},Q:{"13.1":0}}; 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 6362ef37fb4203..bc6628c1d1d277 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00707,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00353,"48":0.00353,"49":0,"50":0,"51":0.0106,"52":0.04241,"53":0,"54":0,"55":0,"56":0.0106,"57":0,"58":0,"59":0,"60":0,"61":0.00353,"62":0,"63":0,"64":0,"65":0.00353,"66":0,"67":0.00707,"68":0.00707,"69":0,"70":0,"71":0,"72":0.00707,"73":0,"74":0.00707,"75":0,"76":0,"77":0,"78":0.00353,"79":0.00353,"80":0.00707,"81":0.01767,"82":0,"83":0.01414,"84":0.00353,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01414,"92":0,"93":0,"94":0.00353,"95":0,"96":0,"97":0,"98":0,"99":0.01414,"100":0.00353,"101":0.00707,"102":0.05301,"103":0.60431,"104":0.12016,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00353,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.03534,"48":0,"49":0.02827,"50":0,"51":0,"52":0,"53":0.00707,"54":0,"55":0,"56":0.00353,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00353,"64":0.00707,"65":0,"66":0.00353,"67":0,"68":0.00353,"69":0.00353,"70":0.00353,"71":0.00353,"72":0.00707,"73":0.0106,"74":0.00353,"75":0.00353,"76":0.00353,"77":0.00353,"78":0.00353,"79":0.07068,"80":0.0106,"81":0.02827,"83":0.01767,"84":0.04948,"85":0.03887,"86":0.05654,"87":0.03181,"88":0.01414,"89":0.00707,"90":0.00707,"91":0.0106,"92":0.03181,"93":0.00353,"94":0.00353,"95":0.0106,"96":0.0106,"97":0.0212,"98":0.00707,"99":0.01414,"100":0.0212,"101":0.0212,"102":0.06008,"103":2.25823,"104":6.49196,"105":0.01767,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00353,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00353,"37":0,"38":0,"39":0,"40":0.00353,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00353,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00353,"64":0.00353,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00353,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0106,"86":0.00707,"87":0,"88":0.00353,"89":0.40641,"90":0.04594,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00353,"18":0.00353,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00353,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00353,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00353,"102":0.00353,"103":0.1555,"104":0.44882,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00353,"14":0.00707,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00353,"13.1":0.01767,"14.1":0.0212,"15.1":0.00353,"15.2-15.3":0.00707,"15.4":0.0212,"15.5":0.04594,"15.6":0.09542,"16.0":0},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.02671,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0452,"10.0-10.2":0.00205,"10.3":0.04315,"11.0-11.2":0.01849,"11.3-11.4":0.01233,"12.0-12.1":0.02466,"12.2-12.5":0.64927,"13.0-13.1":0.01027,"13.2":0.01438,"13.3":0.07397,"13.4-13.7":0.16026,"14.0-14.4":0.4212,"14.5-14.8":1.40949,"15.0-15.1":0.26711,"15.2-15.3":0.48901,"15.4":0.83214,"15.5":5.76125,"15.6":10.08014,"16.0":0.19519},P:{"4":0.14357,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02051,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.06153,"12.0":0.04102,"13.0":0.08204,"14.0":0.07178,"15.0":0.03076,"16.0":0.10255,"17.0":1.17932,"18.0":1.48697},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.07784,"4.2-4.3":0.00121,"4.4":0,"4.4.3-4.4.4":0.00922},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00353,"10":0,"11":0.02827,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":62.37628},S:{"2.5":0},R:{_:"0"},M:{"0":0.14872},Q:{"10.4":0},O:{"0":0.03233},H:{"0":0.23874}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01073,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00715,"52":0.06796,"53":0,"54":0,"55":0,"56":0.00715,"57":0,"58":0,"59":0,"60":0,"61":0.00358,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01073,"69":0,"70":0,"71":0,"72":0.00715,"73":0,"74":0,"75":0,"76":0,"77":0.00358,"78":0.00715,"79":0.00358,"80":0.00358,"81":0.00358,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00358,"89":0,"90":0,"91":0.00715,"92":0.00358,"93":0,"94":0.00715,"95":0,"96":0,"97":0,"98":0,"99":0.01073,"100":0.00358,"101":0.00358,"102":0.01431,"103":0.0465,"104":0.62598,"105":0.2182,"106":0.00358,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00358,"35":0,"36":0,"37":0,"38":0.00358,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.02146,"48":0,"49":0.03219,"50":0,"51":0,"52":0,"53":0.00358,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01073,"61":0,"62":0,"63":0.00358,"64":0.00358,"65":0,"66":0.00358,"67":0.00358,"68":0,"69":0.00358,"70":0,"71":0.00715,"72":0.00715,"73":0.00358,"74":0.00358,"75":0,"76":0.00358,"77":0,"78":0,"79":0.06081,"80":0.01073,"81":0.02504,"83":0.01073,"84":0.01789,"85":0.02146,"86":0.02862,"87":0.02146,"88":0.00715,"89":0.00358,"90":0.00715,"91":0.02146,"92":0.02146,"93":0.00358,"94":0.00715,"95":0.01073,"96":0.01073,"97":0.01431,"98":0.00715,"99":0.01431,"100":0.01789,"101":0.01789,"102":0.03935,"103":0.08943,"104":1.94947,"105":7.08246,"106":0.10373,"107":0.00358,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00715,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00358,"37":0,"38":0,"39":0,"40":0.00358,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00358,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00358,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00358,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00358,"86":0,"87":0,"88":0,"89":0.03577,"90":0.36485,"91":0.01789,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00358,"16":0,"17":0,"18":0.00358,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00358,"93":0,"94":0,"95":0,"96":0.00358,"97":0,"98":0,"99":0,"100":0,"101":0.00358,"102":0,"103":0.00715,"104":0.10373,"105":0.60451},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00358,"14":0.01073,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01789,"14.1":0.01789,"15.1":0.00715,"15.2-15.3":0.00358,"15.4":0.01073,"15.5":0.01789,"15.6":0.10373,"16.0":0.01431,"16.1":0.00358},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00388,"6.0-6.1":0,"7.0-7.1":0.02715,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05235,"10.0-10.2":0.00194,"10.3":0.05042,"11.0-11.2":0.01357,"11.3-11.4":0.00776,"12.0-12.1":0.03103,"12.2-12.5":0.60887,"13.0-13.1":0.0097,"13.2":0.01357,"13.3":0.07175,"13.4-13.7":0.17258,"14.0-14.4":0.39751,"14.5-14.8":1.48533,"15.0-15.1":0.21524,"15.2-15.3":0.35291,"15.4":0.53906,"15.5":1.37286,"15.6":10.43415,"16.0":3.1762,"16.1":0.04072},P:{"4":0.12281,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02047,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.05117,"12.0":0.01023,"13.0":0.0614,"14.0":0.05117,"15.0":0.02047,"16.0":0.08187,"17.0":0.16375,"18.0":1.88309},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.04445,"4.2-4.3":0.00483,"4.4":0,"4.4.3-4.4.4":0.03576},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02146,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.03212},H:{"0":0.17635},L:{"0":64.53891},S:{"2.5":0},R:{_:"0"},M:{"0":0.12846},Q:{"13.1":0}}; 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 79fcdff41386d7..a7277f89c757f4 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00273,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00273,"73":0.00546,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00273,"87":0,"88":0,"89":0.00273,"90":0,"91":0.00546,"92":0.00273,"93":0,"94":0,"95":0,"96":0.00273,"97":0,"98":0,"99":0.08457,"100":0,"101":0.00546,"102":0.03546,"103":0.62471,"104":0.07093,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00273,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00273,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00273,"64":0,"65":0.00546,"66":0,"67":0,"68":0,"69":0.00273,"70":0.00546,"71":0,"72":0,"73":0,"74":0.00546,"75":0,"76":0.00273,"77":0,"78":0,"79":0.00273,"80":0.00273,"81":0.14458,"83":0,"84":0,"85":0,"86":0.00273,"87":0.01091,"88":0.00546,"89":0,"90":0.00273,"91":0.00273,"92":0.00273,"93":0,"94":0.00273,"95":0.00273,"96":0.00546,"97":0.00273,"98":0.00273,"99":0.00273,"100":0.00546,"101":0.00546,"102":0.02455,"103":1.05574,"104":2.2997,"105":0,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.0191,"60":0.01364,"62":0,"63":0.05729,"64":0.03819,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00273,"80":0.02728,"81":0,"82":0,"83":0,"84":0,"85":0.00546,"86":0.00273,"87":0,"88":0.00273,"89":0.17459,"90":0.01091,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00546,"13":0,"14":0.00273,"15":0.00273,"16":0.00273,"17":0.00273,"18":0.04638,"79":0,"80":0,"81":0,"83":0,"84":0.00273,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00546,"91":0,"92":0.00546,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00273,"99":0,"100":0.00273,"101":0.00818,"102":0.00273,"103":0.2537,"104":0.58379,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00818,"14":0.01091,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0.00273,"7.1":0,"9.1":0,"10.1":0,"11.1":0.02182,"12.1":0,"13.1":0.01091,"14.1":0.00546,"15.1":0,"15.2-15.3":0.00546,"15.4":0.00273,"15.5":0.01091,"15.6":0.0191,"16.0":0},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.0519,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04613,"10.0-10.2":0.02018,"10.3":0.26237,"11.0-11.2":0.0346,"11.3-11.4":0.01442,"12.0-12.1":0.04037,"12.2-12.5":1.40269,"13.0-13.1":0.01153,"13.2":0.00577,"13.3":0.59394,"13.4-13.7":0.11245,"14.0-14.4":0.91687,"14.5-14.8":1.32628,"15.0-15.1":1.26285,"15.2-15.3":0.47573,"15.4":1.60596,"15.5":2.29649,"15.6":3.54349,"16.0":0.39212},P:{"4":0.1209,"5.0-5.4":0.01008,"6.2-6.4":0.01008,"7.2-7.4":0.26195,"8.2":0,"9.2":0.03023,"10.1":0.02015,"11.1-11.2":0.05038,"12.0":0.02015,"13.0":0.0806,"14.0":0.09068,"15.0":0.0806,"16.0":0.2418,"17.0":1.209,"18.0":0.54405},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00519,"4.2-4.3":0.00866,"4.4":0,"4.4.3-4.4.4":0.22163},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00273,"10":0,"11":0.01364,"5.5":0},J:{"7":0,"10":0.02182},N:{"10":0,"11":0},L:{"0":71.91701},S:{"2.5":0.0509},R:{_:"0"},M:{"0":0.20362},Q:{"10.4":0.09454},O:{"0":1.73074},H:{"0":0.95008}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00253,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00253,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00253,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.14691,"100":0,"101":0,"102":0.0076,"103":0.01267,"104":0.35715,"105":0.07599,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00253,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00253,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00253,"80":0,"81":1.06639,"83":0,"84":0,"85":0,"86":0.00253,"87":0.00253,"88":0,"89":0,"90":0,"91":0.00253,"92":0.00253,"93":0,"94":0,"95":0.00253,"96":0,"97":0.00253,"98":0.00253,"99":0.01773,"100":0.00253,"101":0.00253,"102":0.00507,"103":0.13425,"104":0.50153,"105":1.5198,"106":0.0304,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.0152,"62":0,"63":0.01013,"64":0.06333,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00253,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.03293,"81":0.00253,"82":0,"83":0,"84":0,"85":0.02026,"86":0,"87":0,"88":0,"89":0.00253,"90":0.05573,"91":0.0076,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.0076,"13":0.00507,"14":0.00253,"15":0.00253,"16":0.01013,"17":0.00507,"18":0.05826,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00507,"91":0,"92":0.00253,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00253,"102":0.00253,"103":0.01013,"104":0.09625,"105":0.54206},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01013,"15":0.00253,_:"0","3.1":0,"3.2":0,"5.1":0.00253,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.0076,"12.1":0,"13.1":0.0076,"14.1":0.00507,"15.1":0,"15.2-15.3":0,"15.4":0.00253,"15.5":0.0076,"15.6":0.01013,"16.0":0.00507,"16.1":0},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.02221,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04284,"10.0-10.2":0.0365,"10.3":0.58552,"11.0-11.2":0.0603,"11.3-11.4":0.01111,"12.0-12.1":0.0841,"12.2-12.5":1.95173,"13.0-13.1":0.07934,"13.2":0.00317,"13.3":0.46016,"13.4-13.7":0.18724,"14.0-14.4":0.89653,"14.5-14.8":1.48046,"15.0-15.1":1.17104,"15.2-15.3":0.46492,"15.4":0.8997,"15.5":1.4757,"15.6":3.89077,"16.0":1.73117,"16.1":0.05078},P:{"4":0.21306,"5.0-5.4":0.01015,"6.2-6.4":0.02029,"7.2-7.4":0.30437,"8.2":0,"9.2":0.03044,"10.1":0,"11.1-11.2":0.03044,"12.0":0.01015,"13.0":0.08117,"14.0":0.09131,"15.0":0.14204,"16.0":0.15219,"17.0":0.2435,"18.0":0.93341},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00237,"4.2-4.3":0.00317,"4.4":0,"4.4.3-4.4.4":0.17805},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0228,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.0224},O:{"0":1.03791},H:{"0":0.84124},L:{"0":73.48744},S:{"2.5":0.07467},R:{_:"0"},M:{"0":0.0448},Q:{"13.1":0.19414}}; 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 a75bd0e62f2f4b..d3ef610d9d28c4 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00321,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00321,"37":0,"38":0,"39":0,"40":0,"41":0.00321,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00321,"48":0.00321,"49":0,"50":0,"51":0,"52":0.00321,"53":0,"54":0,"55":0,"56":0.00321,"57":0.00321,"58":0,"59":0,"60":0.03857,"61":0.00321,"62":0,"63":0,"64":0,"65":0,"66":0.00321,"67":0,"68":0.00321,"69":0,"70":0.00321,"71":0,"72":0.00643,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00643,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00321,"85":0,"86":0,"87":0,"88":0.00321,"89":0.00321,"90":0,"91":0.00964,"92":0.00643,"93":0.00321,"94":0.00321,"95":0.00321,"96":0.00964,"97":0.00643,"98":0.00321,"99":0.00964,"100":0.00964,"101":0.01286,"102":0.05142,"103":0.80993,"104":0.18963,"105":0.00964,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00321,"32":0.00321,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00321,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00321,"49":0,"50":0,"51":0,"52":0,"53":0.00643,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00321,"62":0.00321,"63":0.00321,"64":0,"65":0.00321,"66":0,"67":0.00964,"68":0,"69":0.00321,"70":0.00321,"71":0.00964,"72":0.00321,"73":0,"74":0.00964,"75":0,"76":0.00643,"77":0.00643,"78":0.00321,"79":0.0225,"80":0.00643,"81":0.00964,"83":0.00643,"84":0.01286,"85":0.00321,"86":0.00643,"87":0.00964,"88":0.01607,"89":0.01607,"90":0.00643,"91":0.00321,"92":0.04178,"93":0.00321,"94":0.00321,"95":0.00643,"96":0.01286,"97":0.01607,"98":0.00964,"99":0.00964,"100":0.01928,"101":0.01928,"102":0.03857,"103":1.40452,"104":4.16213,"105":0.01286,"106":0.00643,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00321,"37":0.00643,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00321,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00321,"60":0,"62":0,"63":0.02893,"64":0.01607,"65":0,"66":0,"67":0,"68":0,"69":0.00321,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00321,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00321,"86":0,"87":0.00321,"88":0.00321,"89":0.15106,"90":0.01928,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00643,"13":0,"14":0,"15":0.00321,"16":0.00321,"17":0.00643,"18":0.01928,"79":0,"80":0,"81":0,"83":0,"84":0.00321,"85":0,"86":0,"87":0,"88":0,"89":0.00321,"90":0.00321,"91":0,"92":0.00964,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00321,"100":0.00321,"101":0.00321,"102":0.00321,"103":0.33104,"104":0.63959,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00643,"14":0.03214,"15":0.00643,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00964,"11.1":0.00643,"12.1":0.01286,"13.1":0.03214,"14.1":0.05142,"15.1":0.0225,"15.2-15.3":0.00964,"15.4":0.03857,"15.5":0.16391,"15.6":0.25712,"16.0":0.00321},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00199,"6.0-6.1":0.00199,"7.0-7.1":0.0169,"8.1-8.4":0.0159,"9.0-9.2":0.00497,"9.3":0.08946,"10.0-10.2":0.01789,"10.3":0.13518,"11.0-11.2":0.02982,"11.3-11.4":0.01093,"12.0-12.1":0.01988,"12.2-12.5":0.51589,"13.0-13.1":0.01093,"13.2":0.01093,"13.3":0.02982,"13.4-13.7":0.10536,"14.0-14.4":0.31112,"14.5-14.8":0.51092,"15.0-15.1":0.28528,"15.2-15.3":0.30218,"15.4":0.44829,"15.5":2.28819,"15.6":4.68374,"16.0":0.08747},P:{"4":0.17561,"5.0-5.4":0.01033,"6.2-6.4":0,"7.2-7.4":0.02066,"8.2":0,"9.2":0.01033,"10.1":0,"11.1-11.2":0.04132,"12.0":0.01033,"13.0":0.07231,"14.0":0.02066,"15.0":0.02066,"16.0":0.04132,"17.0":0.55784,"18.0":0.64048},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00395,"4.2-4.3":0.01317,"4.4":0,"4.4.3-4.4.4":0.52145},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00367,"9":0.00367,"10":0.00367,"11":0.0404,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":71.52856},S:{"2.5":0},R:{_:"0"},M:{"0":0.21037},Q:{"10.4":0.03393},O:{"0":2.23938},H:{"0":0.59748}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00645,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00322,"37":0,"38":0,"39":0,"40":0,"41":0.00322,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00322,"48":0,"49":0,"50":0,"51":0,"52":0.00322,"53":0,"54":0,"55":0,"56":0.00322,"57":0.00322,"58":0,"59":0,"60":0.09024,"61":0.00322,"62":0,"63":0,"64":0,"65":0,"66":0.00967,"67":0,"68":0.00322,"69":0,"70":0,"71":0,"72":0.00645,"73":0,"74":0,"75":0,"76":0,"77":0.00322,"78":0.00645,"79":0,"80":0,"81":0.00322,"82":0,"83":0,"84":0.00322,"85":0.00322,"86":0.00322,"87":0,"88":0.00322,"89":0.00322,"90":0,"91":0.00645,"92":0.00322,"93":0.00322,"94":0.00322,"95":0.00322,"96":0.00322,"97":0.00322,"98":0.00322,"99":0.00322,"100":0.00967,"101":0.00967,"102":0.01934,"103":0.05157,"104":0.76063,"105":0.30941,"106":0.01612,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00322,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00322,"33":0,"34":0,"35":0.00322,"36":0,"37":0.01612,"38":0.00322,"39":0,"40":0.00322,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00322,"49":0,"50":0,"51":0,"52":0,"53":0.00645,"54":0,"55":0,"56":0.00322,"57":0,"58":0,"59":0,"60":0,"61":0.00322,"62":0.00322,"63":0.00967,"64":0,"65":0,"66":0,"67":0.00645,"68":0.00322,"69":0.00322,"70":0.00322,"71":0.00967,"72":0,"73":0.00322,"74":0.00967,"75":0,"76":0.00645,"77":0.00322,"78":0.00322,"79":0.01612,"80":0.00645,"81":0.00967,"83":0.00645,"84":0.00322,"85":0.00322,"86":0.00645,"87":0.00967,"88":0.01612,"89":0.00967,"90":0.00645,"91":0.00967,"92":0.04835,"93":0.00322,"94":0.00322,"95":0.00967,"96":0.00967,"97":0.00645,"98":0.00645,"99":0.00645,"100":0.01289,"101":0.01289,"102":0.02578,"103":0.08702,"104":1.07326,"105":4.52187,"106":0.07735,"107":0.00322,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00645,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00322,"62":0,"63":0.00322,"64":0.03223,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00322,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00322,"86":0,"87":0,"88":0,"89":0.00967,"90":0.14181,"91":0.00645,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00322,"13":0,"14":0,"15":0,"16":0.00322,"17":0.00322,"18":0.01612,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00322,"90":0,"91":0,"92":0.00967,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00322,"102":0.00322,"103":0.01289,"104":0.12892,"105":0.7703},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00322,"14":0.01934,"15":0.00645,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00967,"11.1":0.00645,"12.1":0.01289,"13.1":0.03223,"14.1":0.04835,"15.1":0.02256,"15.2-15.3":0.00645,"15.4":0.02578,"15.5":0.08058,"15.6":0.30296,"16.0":0.03868,"16.1":0},G:{"8":0,"3.2":0.00075,"4.0-4.1":0,"4.2-4.3":0.00302,"5.0-5.1":0.00604,"6.0-6.1":0.00151,"7.0-7.1":0.01509,"8.1-8.4":0.01962,"9.0-9.2":0.00604,"9.3":0.08601,"10.0-10.2":0.01433,"10.3":0.15692,"11.0-11.2":0.01735,"11.3-11.4":0.01962,"12.0-12.1":0.01886,"12.2-12.5":0.44361,"13.0-13.1":0.01207,"13.2":0.02867,"13.3":0.02263,"13.4-13.7":0.05809,"14.0-14.4":0.22407,"14.5-14.8":0.33497,"15.0-15.1":0.22784,"15.2-15.3":0.15013,"15.4":0.21351,"15.5":0.65184,"15.6":3.50438,"16.0":1.05396,"16.1":0.01132},P:{"4":0.20758,"5.0-5.4":0.01038,"6.2-6.4":0,"7.2-7.4":0.02076,"8.2":0,"9.2":0.01038,"10.1":0,"11.1-11.2":0.04152,"12.0":0.01038,"13.0":0.05189,"14.0":0.02076,"15.0":0.01038,"16.0":0.05189,"17.0":0.09341,"18.0":0.95485},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00396,"4.2-4.3":0.02113,"4.4":0,"4.4.3-4.4.4":0.56391},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00363,"8":0.00725,"9":0.00363,"10":0.00363,"11":0.06889,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":2.33129},H:{"0":0.52611},L:{"0":74.10614},S:{"2.5":0},R:{_:"0"},M:{"0":0.22364},Q:{"13.1":0.04066}}; 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 06e4d6ab11c254..1821f6ac80842c 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00808,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00404,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01212,"92":0,"93":0,"94":0,"95":0.00808,"96":0.00404,"97":0.00404,"98":0.00404,"99":0.00808,"100":0.00404,"101":0.00808,"102":0.04444,"103":0.505,"104":0.09696,"105":0.00808,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00404,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00404,"64":0,"65":0,"66":0,"67":0.00404,"68":0,"69":0.00404,"70":0.00404,"71":0.00404,"72":0,"73":0.00404,"74":0.01212,"75":0,"76":0.00404,"77":0.00404,"78":0.00404,"79":0.0202,"80":0.00404,"81":0.00808,"83":0.00808,"84":0.00808,"85":0.00808,"86":0.01212,"87":0.01212,"88":0.00808,"89":0.00808,"90":0.01616,"91":0.0202,"92":0.02828,"93":0.00808,"94":0.01616,"95":0.00404,"96":0.02828,"97":0.03636,"98":0.02828,"99":0.04848,"100":0.07272,"101":0.04848,"102":0.14948,"103":3.06232,"104":7.86184,"105":0.0202,"106":0.00404,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01212,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00808,"64":0.00404,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00404,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00404,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00404,"86":0,"87":0,"88":0.0202,"89":0.47268,"90":0.04444,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00404,"79":0,"80":0,"81":0,"83":0,"84":0.00404,"85":0,"86":0,"87":0,"88":0,"89":0.00404,"90":0.00404,"91":0.00404,"92":0.01212,"93":0,"94":0,"95":0,"96":0.00404,"97":0.00404,"98":0.00404,"99":0.00404,"100":0.00808,"101":0.01212,"102":0.01212,"103":0.32724,"104":0.85244,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01212,"14":0.0606,"15":0.01616,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00404,"12.1":0.01616,"13.1":0.02828,"14.1":0.11312,"15.1":0.0202,"15.2-15.3":0.02424,"15.4":0.06464,"15.5":0.25856,"15.6":0.24644,"16.0":0.00404},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.00559,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08947,"10.0-10.2":0.02796,"10.3":0.11184,"11.0-11.2":0.02237,"11.3-11.4":0.04753,"12.0-12.1":0.01398,"12.2-12.5":0.94502,"13.0-13.1":0.0671,"13.2":0.01118,"13.3":0.10065,"13.4-13.7":0.30755,"14.0-14.4":0.91986,"14.5-14.8":1.95435,"15.0-15.1":0.85835,"15.2-15.3":1.18268,"15.4":2.11652,"15.5":8.15851,"15.6":10.74475,"16.0":0.26282},P:{"4":0.37345,"5.0-5.4":0.02019,"6.2-6.4":0.01009,"7.2-7.4":0.12112,"8.2":0,"9.2":0.07065,"10.1":0,"11.1-11.2":0.06056,"12.0":0.02019,"13.0":0.23214,"14.0":0.11102,"15.0":0.07065,"16.0":0.41382,"17.0":1.83696,"18.0":1.9278},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00977,"4.2-4.3":0.00977,"4.4":0,"4.4.3-4.4.4":0.13087},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0202,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":48.53176},S:{"2.5":0},R:{_:"0"},M:{"0":0.18476},Q:{"10.4":0.01788},O:{"0":0.10728},H:{"0":0.19749}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0084,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0084,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.0042,"90":0,"91":0.0084,"92":0,"93":0.0042,"94":0,"95":0.0042,"96":0.0084,"97":0,"98":0,"99":0.0084,"100":0.0042,"101":0.0042,"102":0.0168,"103":0.05459,"104":0.54167,"105":0.18476,"106":0.0084,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0042,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.0042,"64":0,"65":0,"66":0,"67":0.0042,"68":0,"69":0.0042,"70":0,"71":0.0042,"72":0,"73":0.0042,"74":0.0168,"75":0.0042,"76":0.0042,"77":0.0042,"78":0.0042,"79":0.0126,"80":0.0084,"81":0.0126,"83":0.0084,"84":0.0126,"85":0.0084,"86":0.021,"87":0.0168,"88":0.0084,"89":0.0084,"90":0.021,"91":0.02519,"92":0.03359,"93":0.0084,"94":0.0126,"95":0.0084,"96":0.03779,"97":0.0168,"98":0.03779,"99":0.03779,"100":0.04199,"101":0.03779,"102":0.09658,"103":0.27294,"104":2.42282,"105":9.01525,"106":0.13017,"107":0.0042,"108":0.0126,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.0126,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.0042,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0042,"86":0,"87":0,"88":0,"89":0.04199,"90":0.37791,"91":0.02519,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.0042,"13":0,"14":0,"15":0,"16":0.0042,"17":0,"18":0.0084,"79":0,"80":0,"81":0,"83":0,"84":0.0042,"85":0,"86":0,"87":0,"88":0,"89":0.0042,"90":0.0084,"91":0.0042,"92":0.0168,"93":0,"94":0,"95":0.0042,"96":0.0042,"97":0.0042,"98":0.0042,"99":0.0042,"100":0.0084,"101":0.0126,"102":0.0168,"103":0.03779,"104":0.20995,"105":1.2807},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0042,"12":0,"13":0.0168,"14":0.04619,"15":0.0126,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.0042,"12.1":0.0084,"13.1":0.03779,"14.1":0.11757,"15.1":0.02519,"15.2-15.3":0.02519,"15.4":0.05039,"15.5":0.16796,"15.6":0.35692,"16.0":0.03779,"16.1":0.0042},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.074,"10.0-10.2":0.00888,"10.3":0.0444,"11.0-11.2":0.01776,"11.3-11.4":0.10952,"12.0-12.1":0.0148,"12.2-12.5":0.97091,"13.0-13.1":0.03256,"13.2":0.01184,"13.3":0.07992,"13.4-13.7":0.23681,"14.0-14.4":0.94723,"14.5-14.8":1.90631,"15.0-15.1":0.88803,"15.2-15.3":0.95315,"15.4":1.48005,"15.5":3.31236,"15.6":13.11622,"16.0":4.6888,"16.1":0.06216},P:{"4":0.3263,"5.0-5.4":0.02039,"6.2-6.4":0.0102,"7.2-7.4":0.11216,"8.2":0.0102,"9.2":0.04079,"10.1":0,"11.1-11.2":0.04079,"12.0":0.02039,"13.0":0.12236,"14.0":0.08157,"15.0":0.07138,"16.0":0.37728,"17.0":0.67299,"18.0":3.01825},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00569,"4.2-4.3":0.00427,"4.4":0,"4.4.3-4.4.4":0.08104},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04199,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.11022},H:{"0":0.18673},L:{"0":46.77179},S:{"2.5":0},R:{_:"0"},M:{"0":0.13922},Q:{"13.1":0.0058}}; 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 792a2e5f557545..c3795bd9339449 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.0641,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00986,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00493,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00986,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00493,"88":0.00493,"89":0,"90":0.00493,"91":0.00493,"92":0,"93":0.00493,"94":0.01972,"95":0.00493,"96":0,"97":0.00493,"98":0.01479,"99":0.01479,"100":0.00986,"101":0.00493,"102":0.04438,"103":0.52269,"104":0.09862,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00986,"23":0,"24":0,"25":0,"26":0.04931,"27":0,"28":0,"29":0,"30":0.01479,"31":0,"32":0,"33":0,"34":0.06903,"35":0,"36":0,"37":0,"38":0.10848,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02466,"50":0,"51":0,"52":0,"53":0.03945,"54":0,"55":0.02466,"56":0,"57":0,"58":0.01972,"59":0,"60":0.00493,"61":0.0641,"62":0.00493,"63":0,"64":0,"65":0.00493,"66":0,"67":0.00986,"68":0.00986,"69":0.00493,"70":0.00493,"71":0.01479,"72":0.00986,"73":0.00986,"74":0.00493,"75":0.00493,"76":0.00493,"77":0.01972,"78":0.02466,"79":0.286,"80":0.01972,"81":0.01479,"83":0.02466,"84":0.00493,"85":0,"86":0.01972,"87":0.09369,"88":0.00493,"89":0.04438,"90":0.01479,"91":0.02466,"92":0.143,"93":0.00493,"94":0.00986,"95":0.01479,"96":0.05917,"97":0.15779,"98":0.08383,"99":0.04931,"100":0.17259,"101":0.11834,"102":0.16272,"103":3.51087,"104":8.11643,"105":0.03452,"106":0.01972,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01972,"29":0,"30":0,"31":0,"32":0.00493,"33":0,"34":0,"35":0,"36":0.03452,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.04931,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00493,"60":0,"62":0,"63":0.00493,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.01479,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.07397,"90":0.00986,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00493,"17":0.01479,"18":0.00986,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00986,"96":0.00493,"97":0,"98":0,"99":0,"100":0,"101":0.01479,"102":0.00986,"103":0.45365,"104":1.35603,"105":0.00493},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02959,"14":0.32052,"15":0.03452,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00986,"11.1":0.01479,"12.1":0.03945,"13.1":0.19724,"14.1":0.59665,"15.1":0.07397,"15.2-15.3":0.0789,"15.4":0.32545,"15.5":1.10454,"15.6":1.93295,"16.0":0.00986},G:{"8":0.01254,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.11706,"7.0-7.1":0.05853,"8.1-8.4":0.12542,"9.0-9.2":0.43479,"9.3":0.56021,"10.0-10.2":0.07525,"10.3":0.49332,"11.0-11.2":0.20067,"11.3-11.4":0.13378,"12.0-12.1":0.19231,"12.2-12.5":2.25757,"13.0-13.1":0.04599,"13.2":0.01672,"13.3":0.1505,"13.4-13.7":0.7149,"14.0-14.4":1.29183,"14.5-14.8":3.46997,"15.0-15.1":0.72326,"15.2-15.3":0.94484,"15.4":2.35791,"15.5":7.34965,"15.6":19.98368,"16.0":0.08361},P:{"4":1.09945,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.12935,"10.1":0,"11.1-11.2":0.01078,"12.0":0.04312,"13.0":0.04312,"14.0":0.07545,"15.0":0.01078,"16.0":0.02156,"17.0":0.79764,"18.0":1.51983},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00668,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.1836},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.29093,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":29.24522},S:{"2.5":0},R:{_:"0"},M:{"0":0.20783},Q:{"10.4":0.04055},O:{"0":0.46635},H:{"0":0.09598}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.06925,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00533,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00533,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00533,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00533,"85":0,"86":0,"87":0,"88":0.00533,"89":0,"90":0,"91":0.00533,"92":0,"93":0.00533,"94":0.03196,"95":0,"96":0,"97":0,"98":0.04262,"99":0.02131,"100":0.00533,"101":0,"102":0.02664,"103":0.03729,"104":0.60728,"105":0.17579,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.02664,"23":0,"24":0,"25":0,"26":0.04262,"27":0,"28":0,"29":0,"30":0.00533,"31":0,"32":0,"33":0,"34":0.06392,"35":0,"36":0,"37":0,"38":0.12252,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00533,"46":0,"47":0,"48":0,"49":0.03729,"50":0,"51":0,"52":0,"53":0.03729,"54":0,"55":0.02131,"56":0,"57":0,"58":0.02664,"59":0,"60":0.00533,"61":0.0586,"62":0.01065,"63":0,"64":0,"65":0.00533,"66":0,"67":0.02664,"68":0.00533,"69":0.00533,"70":0.01065,"71":0.01065,"72":0.00533,"73":0.01065,"74":0.00533,"75":0.00533,"76":0.00533,"77":0.01065,"78":0.02131,"79":0.3356,"80":0.04262,"81":0.03196,"83":0.14916,"84":0.01065,"85":0,"86":0.02131,"87":0.10654,"88":0.00533,"89":0.05327,"90":0.01065,"91":0.01065,"92":0.20775,"93":0.00533,"94":0.01065,"95":0.02131,"96":0.04794,"97":0.18645,"98":0.09589,"99":0.06925,"100":0.20243,"101":0.11187,"102":0.11187,"103":0.39953,"104":3.32405,"105":10.60073,"106":0.15448,"107":0.01065,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.02131,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02664,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.04794,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.01065,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00533,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01065,"90":0.11719,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.02664,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00533,"102":0.00533,"103":0.02664,"104":0.38887,"105":1.94968},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00533,"13":0.03196,"14":0.30364,"15":0.04794,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00533,"11.1":0.02131,"12.1":0.04794,"13.1":0.22906,"14.1":0.5327,"15.1":0.06925,"15.2-15.3":0.0586,"15.4":0.20775,"15.5":0.56466,"15.6":2.23734,"16.0":0.09056,"16.1":0.01065},G:{"8":0,"3.2":0,"4.0-4.1":0.01105,"4.2-4.3":0,"5.0-5.1":0.00368,"6.0-6.1":0.1215,"7.0-7.1":0.02945,"8.1-8.4":0.11045,"9.0-9.2":0.20986,"9.3":0.55595,"10.0-10.2":0.06995,"10.3":0.55227,"11.0-11.2":0.16936,"11.3-11.4":0.12886,"12.0-12.1":0.09573,"12.2-12.5":1.98448,"13.0-13.1":0.10677,"13.2":0.01105,"13.3":0.11045,"13.4-13.7":0.62958,"14.0-14.4":1.07508,"14.5-14.8":3.0706,"15.0-15.1":0.65167,"15.2-15.3":0.98303,"15.4":1.39539,"15.5":2.27165,"15.6":19.78217,"16.0":2.02129,"16.1":0.02945},P:{"4":1.10651,"5.0-5.4":0.01074,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.16114,"10.1":0,"11.1-11.2":0,"12.0":0.03223,"13.0":0.02149,"14.0":0.06446,"15.0":0.01074,"16.0":0.02149,"17.0":0.16114,"18.0":2.36342},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00539,"4.2-4.3":0.00719,"4.4":0,"4.4.3-4.4.4":0.08807},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.34093,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.67291},H:{"0":0.09733},L:{"0":30.37851},S:{"2.5":0},R:{_:"0"},M:{"0":0.25702},Q:{"13.1":0.04673}}; 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 685b7461269b99..31ad27ee1a5f72 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.09302,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01642,"92":0,"93":0,"94":0,"95":0.16963,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01094,"103":0.79344,"104":0.12038,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00547,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00547,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.32832,"66":0,"67":0.00547,"68":0.02189,"69":0,"70":0,"71":0.01642,"72":0,"73":0,"74":0,"75":0.00547,"76":0.02189,"77":0,"78":0,"79":0.03283,"80":0,"81":0,"83":0.01094,"84":0.00547,"85":0,"86":0.00547,"87":0.09302,"88":0.00547,"89":0,"90":0.00547,"91":0.02189,"92":0.01094,"93":0.02736,"94":0,"95":0,"96":0.06019,"97":0.05472,"98":0.02736,"99":0.0383,"100":0.0383,"101":0.13133,"102":0.3721,"103":5.00688,"104":13.41187,"105":0.03283,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.01094,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.00547,"84":0,"85":0,"86":0,"87":0,"88":0.0383,"89":1.0561,"90":0.20246,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.01642,"14":0,"15":0,"16":0,"17":0.01094,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00547,"100":0,"101":0.06019,"102":0.01094,"103":0.79344,"104":1.75651,"105":0},E:{"4":0,"5":0,"6":0,"7":0.00547,"8":0,"9":0,"10":0,"11":0,"12":0.00547,"13":0.55814,"14":0.16963,"15":0.02189,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00547,"13.1":0.06566,"14.1":0.73872,"15.1":0.05472,"15.2-15.3":0.07114,"15.4":0.09302,"15.5":0.26266,"15.6":0.49248,"16.0":0},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.51162,"10.0-10.2":0.04401,"10.3":0.39426,"11.0-11.2":0.29523,"11.3-11.4":0.00183,"12.0-12.1":0.02934,"12.2-12.5":1.06174,"13.0-13.1":0,"13.2":0.00183,"13.3":0.25306,"13.4-13.7":0.02017,"14.0-14.4":1.49817,"14.5-14.8":0.55746,"15.0-15.1":0.22372,"15.2-15.3":0.21271,"15.4":0.61247,"15.5":4.00674,"15.6":8.56361,"16.0":0.04401},P:{"4":0.01074,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0537,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01074,"12.0":0,"13.0":0.04296,"14.0":0.01074,"15.0":0.03222,"16.0":0,"17.0":2.50262,"18.0":2.41669},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01834,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.63468},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00547,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":44.20259},S:{"2.5":0},R:{_:"0"},M:{"0":1.02333},Q:{"10.4":0},O:{"0":0.01811},H:{"0":0.05573}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00644,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.06436,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00644,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00644,"88":0.00644,"89":0,"90":0.00644,"91":0.00644,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.32824,"104":0.51488,"105":0.19308,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00644,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.05792,"66":0,"67":0.01287,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00644,"77":0,"78":0,"79":0.1609,"80":0,"81":0,"83":0.01287,"84":0,"85":0.01287,"86":0,"87":0.33467,"88":0.00644,"89":0.00644,"90":0,"91":0.03218,"92":0.00644,"93":0.12228,"94":0,"95":0.00644,"96":0.07723,"97":0.01287,"98":0.02574,"99":0.21882,"100":0.06436,"101":0.02574,"102":0.04505,"103":0.77876,"104":7.11178,"105":18.24606,"106":0.21239,"107":0.00644,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00644,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.12228,"90":1.4481,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00644,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.01931,"98":0,"99":0,"100":0.00644,"101":0.00644,"102":0.00644,"103":0.03218,"104":0.86242,"105":3.13433},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.56637,"14":0.77876,"15":0.02574,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.03862,"13.1":0.03218,"14.1":1.10056,"15.1":0.03218,"15.2-15.3":0.05149,"15.4":0.0708,"15.5":0.1609,"15.6":1.04263,"16.0":0.07723,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01153,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.61324,"10.0-10.2":0.00769,"10.3":0.26529,"11.0-11.2":0.30374,"11.3-11.4":0.00192,"12.0-12.1":0.04614,"12.2-12.5":1.25339,"13.0-13.1":0,"13.2":0.00192,"13.3":0.04614,"13.4-13.7":0.04998,"14.0-14.4":1.83203,"14.5-14.8":0.45368,"15.0-15.1":0.12303,"15.2-15.3":0.08266,"15.4":0.38448,"15.5":0.8247,"15.6":10.31933,"16.0":2.29724,"16.1":0.22876},P:{"4":0.02141,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.02141,"10.1":0,"11.1-11.2":0.0107,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0.21408,"18.0":2.95426},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.70772},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00644,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.01782},H:{"0":0.03712},L:{"0":35.44164},S:{"2.5":0},R:{_:"0"},M:{"0":0.58806},Q:{"13.1":0}}; 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 503120d5d14316..55b5ae8a958d00 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0085,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00425,"78":0.0085,"79":0,"80":0,"81":0,"82":0.04674,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.05099,"92":0.00425,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00425,"99":0.00425,"100":0.00425,"101":0.14872,"102":0.04674,"103":1.4744,"104":0.21245,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00425,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00425,"48":0,"49":0.00425,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00425,"59":0,"60":0,"61":0,"62":0,"63":0.00425,"64":0,"65":0,"66":0.03399,"67":0,"68":0.0085,"69":0,"70":0.10198,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.01275,"81":0.00425,"83":0,"84":0.0085,"85":0.00425,"86":0.00425,"87":0.0085,"88":0.00425,"89":0.0085,"90":0,"91":0.00425,"92":0,"93":0.00425,"94":0,"95":0,"96":0.0085,"97":0.00425,"98":0.00425,"99":0.0085,"100":0.017,"101":0.01275,"102":0.12322,"103":2.57914,"104":6.67943,"105":0.017,"106":0.0085,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0085,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00425,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01275,"89":0.49288,"90":0.05524,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00425,"17":0.00425,"18":0.0085,"79":0,"80":0,"81":0,"83":0,"84":0.00425,"85":0,"86":0,"87":0,"88":0.00425,"89":0.00425,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00425,"98":0,"99":0.00425,"100":0.00425,"101":0.01275,"102":0.017,"103":0.79881,"104":1.87381,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00425,"14":0.06798,"15":0.017,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.0085,"12.1":0.02974,"13.1":0.14447,"14.1":0.42065,"15.1":0.02549,"15.2-15.3":0.04249,"15.4":0.09773,"15.5":0.39516,"15.6":0.54812,"16.0":0.0085},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.0022,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.18727,"10.0-10.2":0.01102,"10.3":0.07491,"11.0-11.2":0.00661,"11.3-11.4":0.08592,"12.0-12.1":0.01322,"12.2-12.5":0.42301,"13.0-13.1":0.00441,"13.2":0.00661,"13.3":0.10355,"13.4-13.7":0.141,"14.0-14.4":0.47589,"14.5-14.8":0.90992,"15.0-15.1":0.39217,"15.2-15.3":0.66536,"15.4":1.02669,"15.5":6.14249,"15.6":11.13051,"16.0":0.21812},P:{"4":0.01051,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.1471,"8.2":0,"9.2":0.01051,"10.1":0,"11.1-11.2":0.75653,"12.0":0.03152,"13.0":0.10507,"14.0":0.32573,"15.0":0.04203,"16.0":0.18913,"17.0":1.80727,"18.0":2.7004},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.22366,"4.4":0,"4.4.3-4.4.4":0.18682},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04674,"5.5":0},J:{"7":0,"10":0.00575},N:{"10":0,"11":0},L:{"0":50.91715},S:{"2.5":0},R:{_:"0"},M:{"0":0.28755},Q:{"10.4":0},O:{"0":0.0115},H:{"0":0.22868}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00447,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00894,"78":0.01341,"79":0,"80":0,"81":0,"82":0.08048,"83":0.00447,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.04471,"92":0.00894,"93":0.00447,"94":0,"95":0.00447,"96":0,"97":0,"98":0.00447,"99":0.00447,"100":0.00447,"101":0.00447,"102":0.02683,"103":0.12072,"104":1.53355,"105":0.65277,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00447,"48":0,"49":0.00447,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00447,"69":0,"70":0.03577,"71":0,"72":0,"73":0,"74":0,"75":0.00447,"76":0.00447,"77":0.00447,"78":0,"79":0.00447,"80":0,"81":0.01788,"83":0,"84":0.00447,"85":0,"86":0.00894,"87":0.02236,"88":0,"89":0,"90":0,"91":0,"92":0.00447,"93":0,"94":0,"95":0.07601,"96":0.01788,"97":0,"98":0.00894,"99":0.00894,"100":0.01341,"101":0.00894,"102":0.04918,"103":0.22802,"104":2.09243,"105":7.78401,"106":0.23249,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00447,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00447,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00447,"89":0.04471,"90":0.54099,"91":0.00447,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00447,"79":0,"80":0,"81":0,"83":0,"84":0.00447,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00447,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00447,"98":0.00447,"99":0,"100":0.00447,"101":0.00894,"102":0.00894,"103":0.02236,"104":0.38898,"105":2.26233},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00447,"10":0,"11":0,"12":0,"13":0.07601,"14":0.08048,"15":0.01788,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01341,"12.1":0.02236,"13.1":0.09836,"14.1":0.24143,"15.1":0.0313,"15.2-15.3":0.08048,"15.4":0.12519,"15.5":0.29509,"15.6":0.84055,"16.0":0.14307,"16.1":0.02683},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0024,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.02403,"9.0-9.2":0,"9.3":0.12736,"10.0-10.2":0.00481,"10.3":0.0817,"11.0-11.2":0.00481,"11.3-11.4":0.01202,"12.0-12.1":0.00721,"12.2-12.5":0.53347,"13.0-13.1":0.00481,"13.2":0.00481,"13.3":0.01922,"13.4-13.7":0.20185,"14.0-14.4":0.45417,"14.5-14.8":0.793,"15.0-15.1":0.74734,"15.2-15.3":0.59595,"15.4":0.78098,"15.5":2.21559,"15.6":13.02922,"16.0":3.97701,"16.1":0.0817},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.07329,"8.2":0,"9.2":0.02094,"10.1":0,"11.1-11.2":0.11517,"12.0":0.01047,"13.0":0.08376,"14.0":0.20941,"15.0":0.04188,"16.0":0.20941,"17.0":0.29317,"18.0":4.25093},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.1301,"4.4":0,"4.4.3-4.4.4":0.21356},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04024,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.01106},H:{"0":0.11516},L:{"0":48.76806},S:{"2.5":0.00553},R:{_:"0"},M:{"0":0.32068},Q:{"13.1":0}}; 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 b8a046c6203d7c..9325f6791916af 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00343,"31":0,"32":0,"33":0,"34":0.00172,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00172,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00172,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00343,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00343,"89":0.00515,"90":0,"91":0.00172,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.01029,"98":0.00172,"99":0,"100":0.00343,"101":0.00515,"102":0.01372,"103":0.2401,"104":0.02744,"105":0.00172,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.00343,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00343,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00172,"40":0.03087,"41":0.00858,"42":0,"43":0.07203,"44":0,"45":0,"46":0.00343,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00172,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.01372,"64":0,"65":0,"66":0,"67":0,"68":0.00172,"69":0,"70":0,"71":0,"72":0.00172,"73":0,"74":0,"75":0,"76":0.00172,"77":0.00172,"78":0.00343,"79":0.00343,"80":0,"81":0.00343,"83":0.00515,"84":0.00343,"85":0,"86":0.00172,"87":0.00343,"88":0.00172,"89":0.00343,"90":0.00172,"91":0.00343,"92":0.00343,"93":0,"94":0.00172,"95":0.04459,"96":0.00172,"97":0.00515,"98":0.00515,"99":0.00343,"100":0.0566,"101":0.00172,"102":0.0223,"103":0.41846,"104":0.93639,"105":0.00515,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00343,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00172,"58":0.00515,"60":0.00858,"62":0,"63":0.07203,"64":0.03087,"65":0,"66":0,"67":0,"68":0,"69":0.00172,"70":0.00172,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00343,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00343,"86":0,"87":0,"88":0,"89":0.07889,"90":0.01201,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00172,"10.6":0.00172,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00172},B:{"12":0.00343,"13":0.00172,"14":0.00515,"15":0.00172,"16":0,"17":0.00343,"18":0.00686,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00172,"90":0.00172,"91":0,"92":0.00343,"93":0,"94":0,"95":0,"96":0,"97":0.00343,"98":0,"99":0.00172,"100":0.00172,"101":0.00686,"102":0.00172,"103":0.11491,"104":0.18179,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00343,"14":0.00343,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00343,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00172,"13.1":0.00686,"14.1":0.01887,"15.1":0.00686,"15.2-15.3":0.00343,"15.4":0.01029,"15.5":0.00686,"15.6":0.01715,"16.0":0},G:{"8":0.00721,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00361,"6.0-6.1":0.00361,"7.0-7.1":0.01984,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01804,"10.0-10.2":0,"10.3":0.02345,"11.0-11.2":0.08297,"11.3-11.4":0.06132,"12.0-12.1":0.06313,"12.2-12.5":1.84148,"13.0-13.1":0.03788,"13.2":0.02345,"13.3":0.1497,"13.4-13.7":0.18036,"14.0-14.4":1.86853,"14.5-14.8":1.73867,"15.0-15.1":0.8026,"15.2-15.3":1.41583,"15.4":1.31843,"15.5":4.22944,"15.6":3.89217,"16.0":0.2525},P:{"4":0.29194,"5.0-5.4":0.0604,"6.2-6.4":0.0604,"7.2-7.4":1.02682,"8.2":0,"9.2":0.07047,"10.1":0.16107,"11.1-11.2":0.39261,"12.0":0.05033,"13.0":0.14094,"14.0":0.31207,"15.0":0.14094,"16.0":0.79528,"17.0":2.14424,"18.0":0.76508},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00092,"4.2-4.3":0.0023,"4.4":0,"4.4.3-4.4.4":0.0525},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02916,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":69.74171},S:{"2.5":0},R:{_:"0"},M:{"0":0.28998},Q:{"10.4":0},O:{"0":0.33969},H:{"0":1.02753}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00162,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00324,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00162,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00162,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00162,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00162,"98":0.01784,"99":0,"100":0.00162,"101":0,"102":0.00324,"103":0.00973,"104":0.20762,"105":0.0811,"106":0.00162,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00487,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.00162,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00162,"30":0,"31":0,"32":0,"33":0.00162,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00162,"40":0.02433,"41":0,"42":0,"43":0.00324,"44":0,"45":0,"46":0.00162,"47":0,"48":0,"49":0.00162,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00324,"61":0,"62":0,"63":0,"64":0,"65":0.00162,"66":0,"67":0,"68":0.00162,"69":0.00162,"70":0.00162,"71":0,"72":0.00649,"73":0,"74":0,"75":0.00162,"76":0.00324,"77":0.00162,"78":0.00162,"79":0.00324,"80":0,"81":0.00324,"83":0.00487,"84":0,"85":0,"86":0.00162,"87":0.00487,"88":0.00324,"89":0.00162,"90":0,"91":0.00324,"92":0.00162,"93":0.00162,"94":0.00162,"95":0.00162,"96":0.00324,"97":0.00324,"98":0.00162,"99":0.00162,"100":0.01298,"101":0.00324,"102":0.00811,"103":0.02109,"104":0.29196,"105":0.96833,"106":0.00973,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00162,"60":0.00162,"62":0,"63":0.02595,"64":0.0519,"65":0.00162,"66":0,"67":0,"68":0,"69":0,"70":0.00811,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00324,"86":0.00162,"87":0,"88":0,"89":0.00162,"90":0.04379,"91":0.00487,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00324,"10.6":0.00162,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00162},B:{"12":0,"13":0.00162,"14":0.00487,"15":0.00162,"16":0,"17":0.00649,"18":0.00487,"79":0,"80":0,"81":0,"83":0,"84":0.00162,"85":0.00162,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00324,"93":0,"94":0,"95":0,"96":0,"97":0.00162,"98":0,"99":0.00162,"100":0.00162,"101":0.00162,"102":0.00162,"103":0.01298,"104":0.04542,"105":0.23195},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00162,"13":0.00162,"14":0.00162,"15":0.00162,_:"0","3.1":0,"3.2":0,"5.1":0.0146,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00162,"13.1":0.00487,"14.1":0.00649,"15.1":0.00487,"15.2-15.3":0.00324,"15.4":0.00811,"15.5":0.00487,"15.6":0.02433,"16.0":0.00324,"16.1":0},G:{"8":0.00371,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00928,"7.0-7.1":0.05569,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00371,"10.0-10.2":0,"10.3":0.0427,"11.0-11.2":0.06497,"11.3-11.4":0.05012,"12.0-12.1":0.04641,"12.2-12.5":1.93808,"13.0-13.1":0.03342,"13.2":0.00928,"13.3":0.08539,"13.4-13.7":0.15965,"14.0-14.4":1.73944,"14.5-14.8":1.6689,"15.0-15.1":0.85394,"15.2-15.3":1.29577,"15.4":1.02473,"15.5":2.27409,"15.6":4.61315,"16.0":2.11629,"16.1":0.02042},P:{"4":0.40472,"5.0-5.4":0.08094,"6.2-6.4":0.08094,"7.2-7.4":0.97133,"8.2":0,"9.2":0.04047,"10.1":0.03035,"11.1-11.2":0.29342,"12.0":0.01012,"13.0":0.10118,"14.0":0.23272,"15.0":0.12142,"16.0":0.65767,"17.0":1.26476,"18.0":2.28668},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00118,"4.2-4.3":0.00355,"4.4":0,"4.4.3-4.4.4":0.05798},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03244,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.24296},H:{"0":0.88836},L:{"0":70.2501},S:{"2.5":0},R:{_:"0"},M:{"0":0.19269},Q:{"13.1":0}}; 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 6a2d84f7f93ad5..bd5429c83d6933 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00582,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.02328,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.16881,"104":0.06403,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01746,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00582,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00582,"94":0,"95":0,"96":0,"97":0,"98":0.04657,"99":0.00582,"100":0,"101":0.05821,"102":0,"103":4.45889,"104":20.13484,"105":0.02328,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.08149,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01746,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00582,"103":0.23866,"104":1.33301,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.05821,"15":0.01746,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.03493,"15.1":0.79748,"15.2-15.3":0,"15.4":0.00582,"15.5":0.12224,"15.6":0.23284,"16.0":0},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.01321,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.04108,"13.0-13.1":0,"13.2":0,"13.3":0.01321,"13.4-13.7":6.36935,"14.0-14.4":0.04108,"14.5-14.8":0.20688,"15.0-15.1":1.61691,"15.2-15.3":0.09684,"15.4":0.06896,"15.5":1.47899,"15.6":4.50447,"16.0":0.22156},P:{"4":0.59644,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03441,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0.01147,"15.0":0.01147,"16.0":0.26381,"17.0":0.73408,"18.0":1.04377},I:{"0":0,"3":0,"4":0.76795,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":1.53589,"4.4":0,"4.4.3-4.4.4":0.38397},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02328,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":50.43905},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0.01583}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.00577,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00577,"92":0,"93":0,"94":0.00577,"95":0.00577,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00577,"103":0.00577,"104":0.51371,"105":0.17316,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00577,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.02886,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.05772,"93":0.00577,"94":0,"95":0.01732,"96":0,"97":0.00577,"98":0,"99":0,"100":0,"101":0.00577,"102":0.02309,"103":0.74459,"104":1.90476,"105":21.73158,"106":1.82395,"107":0.00577,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.08081,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00577,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.1847,"105":1.20058},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.04618,"15":0.00577,_:"0","3.1":0,"3.2":0,"5.1":0.00577,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.08081,"15.1":0.54834,"15.2-15.3":0,"15.4":0,"15.5":0.60606,"15.6":1.24098,"16.0":0,"16.1":0},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.05543,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.01812,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.16523,"14.5-14.8":0.29422,"15.0-15.1":0.01812,"15.2-15.3":0,"15.4":0.01812,"15.5":0.58951,"15.6":7.95353,"16.0":1.49135,"16.1":0},P:{"4":0.07242,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03104,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01035,"12.0":0,"13.0":0.23796,"14.0":0.01035,"15.0":0.01035,"16.0":0.41384,"17.0":0.07242,"18.0":2.26577},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":1.30521,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.12121,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.04228},H:{"0":0},L:{"0":51.62861},S:{"2.5":0},R:{_:"0"},M:{"0":0.1818},Q:{"13.1":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 152c4a56ec5ce9..a6c8802be829df 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01958,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.04895,"68":0.00979,"69":0.01469,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0049,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00979,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.0049,"102":0.02448,"103":0.61188,"104":0.12727,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01469,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.0049,"66":0,"67":0,"68":0,"69":0.2007,"70":0.0049,"71":0.0049,"72":0,"73":0,"74":0.0049,"75":0,"76":0.0049,"77":0.01469,"78":0.00979,"79":0.02937,"80":0.01469,"81":0.00979,"83":0.0049,"84":0.0049,"85":0.01958,"86":0.00979,"87":0.02937,"88":0,"89":0.01469,"90":0.0049,"91":0.0049,"92":0.01469,"93":0.01958,"94":0.0049,"95":0.0049,"96":0.00979,"97":0.00979,"98":0.03427,"99":0.01958,"100":0.05874,"101":0.04895,"102":0.11259,"103":4.68452,"104":11.88506,"105":0.04895,"106":0.0049,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00979,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0049,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0049,"64":0.0049,"65":0,"66":0,"67":0,"68":0,"69":0.0049,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00979,"86":0,"87":0,"88":0.00979,"89":0.5923,"90":0.02937,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00979,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.0049,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.0049,"98":0,"99":0.0049,"100":0,"101":0.01469,"102":0.0049,"103":0.57761,"104":1.62025,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01469,"14":0.06853,"15":0.01469,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.0049,"10.1":0,"11.1":0.02448,"12.1":0.00979,"13.1":0.07832,"14.1":0.15175,"15.1":0.04406,"15.2-15.3":0.02448,"15.4":0.11259,"15.5":0.43566,"15.6":0.62656,"16.0":0.0049},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00796,"6.0-6.1":0.00531,"7.0-7.1":0.00796,"8.1-8.4":0.00796,"9.0-9.2":0,"9.3":0.03451,"10.0-10.2":0.00531,"10.3":0.56536,"11.0-11.2":0.00265,"11.3-11.4":0.03981,"12.0-12.1":0.0292,"12.2-12.5":0.35036,"13.0-13.1":0.00796,"13.2":0.00531,"13.3":0.04778,"13.4-13.7":0.1566,"14.0-14.4":0.36629,"14.5-14.8":1.2183,"15.0-15.1":0.29197,"15.2-15.3":0.84671,"15.4":0.9688,"15.5":6.96475,"15.6":14.34622,"16.0":0.24685},P:{"4":0.2982,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01028,"8.2":0.01028,"9.2":0,"10.1":0.01028,"11.1-11.2":0.04113,"12.0":0.01028,"13.0":0.03085,"14.0":0.03085,"15.0":0.0617,"16.0":0.0617,"17.0":1.31621,"18.0":1.71725},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00875,"4.4":0,"4.4.3-4.4.4":0.21873},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04406,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":42.0631},S:{"2.5":0},R:{_:"0"},M:{"0":0.24504},Q:{"10.4":0},O:{"0":0.15826},H:{"0":0.13533}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02178,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.03268,"69":0.00545,"70":0,"71":0,"72":0.00545,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00545,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00545,"92":0,"93":0,"94":0.00545,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00545,"102":0.00545,"103":0.02178,"104":0.70253,"105":0.27775,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01634,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00545,"68":0,"69":0.1307,"70":0.00545,"71":0,"72":0,"73":0,"74":0.00545,"75":0,"76":0.00545,"77":0.02723,"78":0.00545,"79":0.02723,"80":0.01634,"81":0.01089,"83":0.05446,"84":0.01089,"85":0.10347,"86":0.02723,"87":0.02178,"88":0,"89":0.01089,"90":0,"91":0.00545,"92":0.01634,"93":0.01089,"94":0,"95":0.00545,"96":0.00545,"97":0.02178,"98":0.01089,"99":0.03268,"100":0.04357,"101":0.04357,"102":0.10892,"103":0.30498,"104":3.87211,"105":16.13105,"106":0.32131,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01089,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00545,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.01634,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.05446,"90":0.90404,"91":0.03268,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00545,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00545,"90":0.00545,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00545,"99":0.00545,"100":0,"101":0.00545,"102":0.00545,"103":0.01089,"104":0.35399,"105":2.43436},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00545,"14":0.07624,"15":0.02178,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.04357,"12.1":0.02178,"13.1":0.09258,"14.1":0.16338,"15.1":0.07624,"15.2-15.3":0.06535,"15.4":0.12526,"15.5":0.20695,"15.6":1.0892,"16.0":0.19606,"16.1":0.00545},G:{"8":0.00719,"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.0048,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06715,"10.0-10.2":0.0048,"10.3":0.47486,"11.0-11.2":0,"11.3-11.4":0.04077,"12.0-12.1":0.01679,"12.2-12.5":0.40771,"13.0-13.1":0.0024,"13.2":0.0024,"13.3":0.10313,"13.4-13.7":0.06715,"14.0-14.4":0.34056,"14.5-14.8":1.03606,"15.0-15.1":0.18227,"15.2-15.3":0.40051,"15.4":0.47006,"15.5":1.72676,"15.6":12.73968,"16.0":5.49447,"16.1":0.04797},P:{"4":0.12519,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01043,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01043,"12.0":0.01043,"13.0":0.02086,"14.0":0.02086,"15.0":0.06259,"16.0":0.02086,"17.0":0.12519,"18.0":2.21168},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00763,"4.4":0,"4.4.3-4.4.4":0.26317},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00594,"10":0,"11":0.05941,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.19127},H:{"0":0.1897},L:{"0":40.4275},S:{"2.5":0},R:{_:"0"},M:{"0":0.18216},Q:{"13.1":0}}; 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 14b47f0818813b..22c9f209df84da 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00358,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0143,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00358,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00715,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01073,"92":0.00715,"93":0,"94":0,"95":0.01073,"96":0,"97":0,"98":0.00358,"99":0.00715,"100":0.00358,"101":0.00358,"102":0.05005,"103":0.6435,"104":0.1144,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00715,"35":0,"36":0,"37":0,"38":0.01073,"39":0.00358,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00715,"50":0,"51":0,"52":0,"53":0.00358,"54":0,"55":0,"56":0,"57":0,"58":0.00358,"59":0,"60":0,"61":0,"62":0,"63":0.00715,"64":0,"65":0,"66":0.00358,"67":0,"68":0,"69":0.00358,"70":0,"71":0,"72":0,"73":0,"74":0.00358,"75":0,"76":0.00358,"77":0.00358,"78":0.0143,"79":0.04648,"80":0.00715,"81":0.07508,"83":0.0143,"84":0,"85":0.00358,"86":0.00358,"87":0.02503,"88":0.0286,"89":0.01073,"90":0.00358,"91":0.02145,"92":0.04648,"93":0.00715,"94":0.00358,"95":0.00358,"96":0.01073,"97":0.03218,"98":0.0143,"99":0.03218,"100":0.03575,"101":0.02503,"102":0.08223,"103":1.9734,"104":5.7057,"105":0.02145,"106":0.00715,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.02145,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.01788,"62":0,"63":0.03575,"64":0.01788,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00715,"89":0.33963,"90":0.0429,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00358,"79":0,"80":0,"81":0,"83":0.00358,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00358,"93":0,"94":0,"95":0,"96":0,"97":0.00358,"98":0,"99":0,"100":0,"101":0.01073,"102":0.01073,"103":0.27885,"104":0.68998,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.0143,"13":0.00715,"14":0.0429,"15":0.00715,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.0286,"12.1":0.00715,"13.1":0.04648,"14.1":0.08223,"15.1":0.01073,"15.2-15.3":0.0286,"15.4":0.03933,"15.5":0.16088,"15.6":0.3289,"16.0":0.00358},G:{"8":0,"3.2":0.0019,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03318,"6.0-6.1":0.00284,"7.0-7.1":0.0237,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.12231,"10.0-10.2":0.00284,"10.3":0.06542,"11.0-11.2":0.00284,"11.3-11.4":0.00664,"12.0-12.1":0.01043,"12.2-12.5":0.36124,"13.0-13.1":0.00569,"13.2":0.00095,"13.3":0.01517,"13.4-13.7":0.05594,"14.0-14.4":0.10335,"14.5-14.8":0.46174,"15.0-15.1":0.09387,"15.2-15.3":0.25505,"15.4":0.37546,"15.5":2.01858,"15.6":5.3437,"16.0":0.11283},P:{"4":0.21342,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.27439,"8.2":0,"9.2":0.04065,"10.1":0.01016,"11.1-11.2":0.0813,"12.0":0.09146,"13.0":0.22358,"14.0":0.12195,"15.0":0.05081,"16.0":0.21342,"17.0":2.40854,"18.0":2.61179},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00396,"4.2-4.3":0.01582,"4.4":0,"4.4.3-4.4.4":0.19384},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02145,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":67.8995},S:{"2.5":0},R:{_:"0"},M:{"0":0.3855},Q:{"10.4":0},O:{"0":0.84168},H:{"0":0.43796}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00358,"35":0.00358,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01074,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00358,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00716,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00358,"88":0,"89":0,"90":0,"91":0.00716,"92":0.01432,"93":0,"94":0,"95":0.00716,"96":0.00358,"97":0,"98":0.00358,"99":0.00716,"100":0.00358,"101":0.00358,"102":0.02864,"103":0.03938,"104":0.52626,"105":0.1611,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00358,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00358,"35":0,"36":0,"37":0,"38":0.00358,"39":0,"40":0.01074,"41":0.00358,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00716,"50":0.00358,"51":0,"52":0,"53":0.00358,"54":0,"55":0,"56":0,"57":0,"58":0.00358,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00358,"72":0.00358,"73":0,"74":0,"75":0,"76":0,"77":0.00358,"78":0.00716,"79":0.0537,"80":0.00358,"81":0.05728,"83":0.00358,"84":0,"85":0.00358,"86":0.00716,"87":0.02148,"88":0.00716,"89":0.00358,"90":0.02506,"91":0.02506,"92":0.04654,"93":0.00716,"94":0.00358,"95":0.00716,"96":0.0179,"97":0.03938,"98":0.01432,"99":0.03222,"100":0.0179,"101":0.02506,"102":0.04654,"103":0.1253,"104":1.58952,"105":6.40104,"106":0.10382,"107":0.00358,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0179,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00716,"62":0,"63":0.0179,"64":0.08234,"65":0.00358,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.02148,"90":0.31504,"91":0.01074,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00358,"18":0.00358,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00358,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00358,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.01074,"104":0.13962,"105":0.90932},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00358,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.03938,"15":0.00358,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.02864,"12.1":0.00716,"13.1":0.08234,"14.1":0.06802,"15.1":0.0179,"15.2-15.3":0.02148,"15.4":0.02864,"15.5":0.08234,"15.6":0.29714,"16.0":0.05728,"16.1":0.00358},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03886,"6.0-6.1":0.01018,"7.0-7.1":0.0259,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.12859,"10.0-10.2":0,"10.3":0.06476,"11.0-11.2":0.0074,"11.3-11.4":0.00555,"12.0-12.1":0.01018,"12.2-12.5":0.35247,"13.0-13.1":0.00555,"13.2":0.00185,"13.3":0.0111,"13.4-13.7":0.05736,"14.0-14.4":0.08141,"14.5-14.8":0.34045,"15.0-15.1":0.09621,"15.2-15.3":0.23128,"15.4":0.23406,"15.5":0.63926,"15.6":5.14091,"16.0":1.55513,"16.1":0.0185},P:{"4":0.19565,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.24714,"8.2":0,"9.2":0.0206,"10.1":0,"11.1-11.2":0.09268,"12.0":0.03089,"13.0":0.10298,"14.0":0.14417,"15.0":0.14417,"16.0":0.19565,"17.0":0.62815,"18.0":3.88217},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00437,"4.2-4.3":0.01093,"4.4":0,"4.4.3-4.4.4":0.24704},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02148,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.58422},H:{"0":0.57741},L:{"0":69.06524},S:{"2.5":0},R:{_:"0"},M:{"0":0.29532},Q:{"13.1":0}}; 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 4cbca88957cb7f..a35e79e83e9591 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00284,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00284,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00284,"82":0.00284,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00284,"89":0,"90":0.03407,"91":0.00284,"92":0,"93":0,"94":0,"95":0.00284,"96":0,"97":0.01703,"98":0,"99":0,"100":0.00284,"101":0.02555,"102":0.01136,"103":0.2839,"104":0.05678,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00568,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00568,"75":0,"76":0.00284,"77":0,"78":0,"79":0.00284,"80":0.00852,"81":0.01987,"83":0.02839,"84":0.00568,"85":0.01703,"86":0.00284,"87":0.01987,"88":0,"89":0.00568,"90":0,"91":0.00568,"92":0.00852,"93":0,"94":0.00568,"95":0.00568,"96":0.00284,"97":0.00852,"98":0.00568,"99":0.00852,"100":0.01136,"101":0.02271,"102":0.03975,"103":1.63526,"104":4.0257,"105":0.01136,"106":0.00284,"107":0.00284,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00284,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.02839,"64":0.01136,"65":0,"66":0,"67":0,"68":0,"69":0.0142,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.07381,"90":0.00568,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00568,"16":0.00284,"17":0,"18":0.00284,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00284,"90":0,"91":0,"92":0.00284,"93":0,"94":0,"95":0,"96":0,"97":0.00852,"98":0,"99":0,"100":0,"101":0.00568,"102":0.00568,"103":0.13059,"104":0.32932,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00284,"14":0.01987,"15":0.00568,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00284,"12.1":0.00284,"13.1":0.0142,"14.1":0.04259,"15.1":0.0142,"15.2-15.3":0.0142,"15.4":0.03691,"15.5":0.16182,"15.6":0.15047,"16.0":0.00852},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.00283,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01983,"10.0-10.2":0,"10.3":0.01983,"11.0-11.2":0,"11.3-11.4":0.0085,"12.0-12.1":0.01133,"12.2-12.5":0.23228,"13.0-13.1":0.01983,"13.2":0.00567,"13.3":0.02833,"13.4-13.7":0.17279,"14.0-14.4":0.40507,"14.5-14.8":1.17271,"15.0-15.1":0.64867,"15.2-15.3":0.82146,"15.4":1.38516,"15.5":7.93987,"15.6":14.73253,"16.0":0.69683},P:{"4":0.04162,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04162,"8.2":0,"9.2":0.01041,"10.1":0.01041,"11.1-11.2":0.02081,"12.0":0,"13.0":0.03122,"14.0":0.04162,"15.0":0.02081,"16.0":0.05203,"17.0":0.68674,"18.0":0.92606},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00924,"4.4":0,"4.4.3-4.4.4":0.22644},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00284,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":59.45242},S:{"2.5":0},R:{_:"0"},M:{"0":0.41534},Q:{"10.4":0},O:{"0":0.57288},H:{"0":0.61016}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01141,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00571,"82":0.00285,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00571,"90":0.00856,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.01141,"98":0.00285,"99":0.00571,"100":0,"101":0.03138,"102":0.00285,"103":0.01427,"104":0.25677,"105":0.06847,"106":0.00285,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00285,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.04565,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00285,"72":0.00285,"73":0.00285,"74":0.00571,"75":0,"76":0,"77":0,"78":0,"79":0.00571,"80":0,"81":0.01427,"83":0.0428,"84":0.00571,"85":0.00856,"86":0.00571,"87":0.00285,"88":0.00285,"89":0.00571,"90":0.00285,"91":0.00571,"92":0.01141,"93":0.00285,"94":0.00571,"95":0.00285,"96":0.00571,"97":0.00571,"98":0.00571,"99":0.00571,"100":0.00856,"101":0.01141,"102":0.01427,"103":0.10556,"104":1.26388,"105":4.58762,"106":0.05706,"107":0.00285,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00856,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00571,"64":0.0428,"65":0.00571,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00571,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01427,"90":0.10271,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00285,"17":0,"18":0.00285,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00285,"93":0,"94":0,"95":0,"96":0.00285,"97":0.00571,"98":0,"99":0,"100":0,"101":0.00571,"102":0.00571,"103":0.01141,"104":0.08274,"105":0.36518},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00285,"14":0.01427,"15":0.01141,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00285,"13.1":0.01141,"14.1":0.02853,"15.1":0.01141,"15.2-15.3":0.00856,"15.4":0.02568,"15.5":0.07418,"15.6":0.22824,"16.0":0.03709,"16.1":0.00285},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01115,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00836,"9.3":0.01951,"10.0-10.2":0,"10.3":0.01394,"11.0-11.2":0,"11.3-11.4":0.01672,"12.0-12.1":0.00279,"12.2-12.5":0.25365,"13.0-13.1":0.00279,"13.2":0.00557,"13.3":0.06968,"13.4-13.7":0.16167,"14.0-14.4":0.33727,"14.5-14.8":0.80834,"15.0-15.1":0.42368,"15.2-15.3":0.64667,"15.4":0.92819,"15.5":2.4278,"15.6":13.67203,"16.0":7.33635,"16.1":0.08641},P:{"4":0.03094,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03094,"8.2":0.01031,"9.2":0,"10.1":0,"11.1-11.2":0.01031,"12.0":0,"13.0":0.04125,"14.0":0.02063,"15.0":0.01031,"16.0":0.04125,"17.0":0.14439,"18.0":1.28917},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02653,"4.2-4.3":0.01592,"4.4":0,"4.4.3-4.4.4":0.21755},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00285,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.70041},H:{"0":0.53454},L:{"0":60.29651},S:{"2.5":0},R:{_:"0"},M:{"0":0.57176},Q:{"13.1":0}}; 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 fa4ebfab12fef8..1f0bb8cef6457b 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00316,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00316,"44":0,"45":0,"46":0,"47":0.00316,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00316,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00316,"60":0,"61":0.00316,"62":0.00316,"63":0.00632,"64":0,"65":0.00316,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00316,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00316,"89":0,"90":0.00316,"91":0.01897,"92":0,"93":0,"94":0.00632,"95":0,"96":0,"97":0.00316,"98":0.00316,"99":0.01264,"100":0.00948,"101":0.00948,"102":0.04425,"103":0.78393,"104":0.10747,"105":0.00316,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00948,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00316,"47":0,"48":0,"49":0.00316,"50":0.00316,"51":0,"52":0,"53":0,"54":0.00632,"55":0.00948,"56":0,"57":0.00316,"58":0,"59":0,"60":0,"61":0.00632,"62":0,"63":0,"64":0.01581,"65":0.00316,"66":0,"67":0,"68":0.00316,"69":0.00316,"70":0.00632,"71":0,"72":0,"73":0,"74":0.00632,"75":0.00948,"76":0,"77":0.00316,"78":0.00948,"79":0.00948,"80":0.00948,"81":0.03161,"83":0.00632,"84":0,"85":0.00316,"86":0.01581,"87":0.00948,"88":0.00948,"89":0.00632,"90":0.00316,"91":0.00316,"92":0.00948,"93":0.00316,"94":0.00316,"95":0.00948,"96":0.00948,"97":0.00948,"98":0.05058,"99":0.01581,"100":0.02529,"101":0.04742,"102":0.04742,"103":1.09687,"104":2.65208,"105":0.00632,"106":0.00316,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00316,"25":0,"26":0.00948,"27":0.00632,"28":0.01581,"29":0.00316,"30":0.00948,"31":0.00632,"32":0.00948,"33":0.00316,"34":0,"35":0.01581,"36":0.00316,"37":0,"38":0.01897,"39":0,"40":0.03477,"41":0,"42":0.00948,"43":0,"44":0,"45":0.00316,"46":0.00316,"47":0,"48":0,"49":0,"50":0.00316,"51":0.00316,"52":0,"53":0,"54":0.00948,"55":0.00316,"56":0.00316,"57":0.00632,"58":0.06006,"60":0.17386,"62":0.00316,"63":0.39513,"64":0.2592,"65":0,"66":0,"67":0,"68":0.00316,"69":0,"70":0.02529,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01897,"80":0,"81":0.00316,"82":0,"83":0,"84":0.00316,"85":0.01897,"86":0.00948,"87":0.00632,"88":0.00316,"89":0.29713,"90":0.05058,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.03161},B:{"12":0.02529,"13":0.00632,"14":0.00632,"15":0.01581,"16":0.01264,"17":0.01581,"18":0.0569,"79":0,"80":0,"81":0,"83":0,"84":0.01581,"85":0.00632,"86":0.00316,"87":0,"88":0.00948,"89":0.00632,"90":0.01264,"91":0,"92":0.02845,"93":0,"94":0,"95":0.00316,"96":0.00316,"97":0.00316,"98":0.01581,"99":0.00948,"100":0.00948,"101":0.01897,"102":0.04109,"103":0.39513,"104":0.70174,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00632,"15":0.00632,_:"0","3.1":0,"3.2":0,"5.1":0.00316,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00316,"12.1":0.00632,"13.1":0.00948,"14.1":0.00948,"15.1":0,"15.2-15.3":0.00948,"15.4":0.01581,"15.5":0.02213,"15.6":0.01897,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00056,"5.0-5.1":0.0045,"6.0-6.1":0,"7.0-7.1":0.01181,"8.1-8.4":0.00056,"9.0-9.2":0,"9.3":0.10801,"10.0-10.2":0.00056,"10.3":0.07763,"11.0-11.2":0.00394,"11.3-11.4":0.01125,"12.0-12.1":0.00309,"12.2-12.5":0.2717,"13.0-13.1":0.0045,"13.2":0.00281,"13.3":0.00956,"13.4-13.7":0.05485,"14.0-14.4":0.21686,"14.5-14.8":0.16679,"15.0-15.1":0.11954,"15.2-15.3":0.09647,"15.4":0.1561,"15.5":0.66154,"15.6":0.7912,"16.0":0.03713},P:{"4":0.27947,"5.0-5.4":0.01035,"6.2-6.4":0,"7.2-7.4":0.25877,"8.2":0,"9.2":0.0414,"10.1":0,"11.1-11.2":0.01035,"12.0":0.01035,"13.0":0.0207,"14.0":0.06211,"15.0":0.08281,"16.0":0.27947,"17.0":0.85913,"18.0":0.38298},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00238,"4.2-4.3":0.01789,"4.4":0,"4.4.3-4.4.4":0.17766},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00316,"9":0,"10":0,"11":0.02529,"5.5":0},J:{"7":0,"10":0.01368},N:{"10":0,"11":0},L:{"0":66.56534},S:{"2.5":0.0342},R:{_:"0"},M:{"0":0.18465},Q:{"10.4":0.02052},O:{"0":6.29872},H:{"0":7.95744}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00292,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00292,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00292,"62":0,"63":0.00877,"64":0,"65":0,"66":0,"67":0,"68":0.00292,"69":0,"70":0,"71":0.00292,"72":0.00584,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00292,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01461,"92":0,"93":0,"94":0.00584,"95":0,"96":0.00292,"97":0,"98":0,"99":0.00877,"100":0.00584,"101":0.00584,"102":0.01169,"103":0.06428,"104":0.4909,"105":0.14026,"106":0.00292,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00292,"37":0,"38":0,"39":0,"40":0.01753,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00292,"47":0,"48":0,"49":0,"50":0.00584,"51":0,"52":0,"53":0,"54":0,"55":0.00877,"56":0.00292,"57":0,"58":0,"59":0,"60":0,"61":0.00292,"62":0,"63":0.00292,"64":0.00877,"65":0.00292,"66":0,"67":0,"68":0,"69":0.00877,"70":0.00584,"71":0.00292,"72":0.00292,"73":0,"74":0.00584,"75":0.01461,"76":0,"77":0.00292,"78":0.00584,"79":0.00584,"80":0.00584,"81":0.03214,"83":0.00292,"84":0,"85":0.00877,"86":0.00584,"87":0.00877,"88":0.00584,"89":0.00584,"90":0.00292,"91":0.00292,"92":0.01461,"93":0.00584,"94":0.00584,"95":0.00292,"96":0.00584,"97":0.00877,"98":0.00877,"99":0.01753,"100":0.01753,"101":0.02338,"102":0.02338,"103":0.09935,"104":0.80647,"105":2.58889,"106":0.04675,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00292,"26":0.00877,"27":0.00292,"28":0.00292,"29":0.00292,"30":0.00584,"31":0.00292,"32":0.01169,"33":0.01169,"34":0.00292,"35":0.01753,"36":0.00584,"37":0,"38":0.00292,"39":0,"40":0.01461,"41":0,"42":0.01169,"43":0,"44":0,"45":0,"46":0.00292,"47":0,"48":0,"49":0,"50":0.00584,"51":0.00292,"52":0,"53":0,"54":0.00877,"55":0,"56":0.00292,"57":0.01753,"58":0.06136,"60":0.1461,"62":0.00292,"63":0.20454,"64":0.48505,"65":0.03506,"66":0,"67":0,"68":0,"69":0,"70":0.00292,"71":0.00584,"72":0.00292,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00292,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01461,"86":0.00292,"87":0.00292,"88":0.00292,"89":0.0263,"90":0.27759,"91":0.02045,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.03506},B:{"12":0.02045,"13":0.01461,"14":0.00584,"15":0.01461,"16":0.00584,"17":0.01169,"18":0.04967,"79":0,"80":0,"81":0,"83":0,"84":0.00584,"85":0.00584,"86":0,"87":0,"88":0.01753,"89":0.01461,"90":0.01169,"91":0,"92":0.02045,"93":0,"94":0,"95":0,"96":0,"97":0.00292,"98":0.00584,"99":0.00292,"100":0.00584,"101":0.02922,"102":0.0526,"103":0.0526,"104":0.18701,"105":0.71881},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00584,"12":0,"13":0.00292,"14":0.00584,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00292,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00584,"13.1":0.01461,"14.1":0.00584,"15.1":0,"15.2-15.3":0.01169,"15.4":0.00877,"15.5":0.00877,"15.6":0.02922,"16.0":0.00584,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00177,"5.0-5.1":0.00325,"6.0-6.1":0.00177,"7.0-7.1":0.00828,"8.1-8.4":0,"9.0-9.2":0.00207,"9.3":0.07833,"10.0-10.2":0.00148,"10.3":0.04079,"11.0-11.2":0.00355,"11.3-11.4":0.02306,"12.0-12.1":0.00414,"12.2-12.5":0.23293,"13.0-13.1":0.00443,"13.2":0.00118,"13.3":0.0065,"13.4-13.7":0.06769,"14.0-14.4":0.21904,"14.5-14.8":0.154,"15.0-15.1":0.07745,"15.2-15.3":0.1274,"15.4":0.17854,"15.5":0.30949,"15.6":0.99113,"16.0":0.35235,"16.1":0.00296},P:{"4":0.28426,"5.0-5.4":0.0203,"6.2-6.4":0.01015,"7.2-7.4":0.26396,"8.2":0,"9.2":0.0203,"10.1":0.0203,"11.1-11.2":0.01015,"12.0":0.01015,"13.0":0.03046,"14.0":0.06091,"15.0":0.03046,"16.0":0.19289,"17.0":0.33503,"18.0":0.72081},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00543,"4.2-4.3":0.01522,"4.4":0,"4.4.3-4.4.4":0.16195},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00292,"9":0,"10":0,"11":0.02922,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.02831},O:{"0":5.99507},H:{"0":9.05304},L:{"0":66.92018},S:{"2.5":0.03539},R:{_:"0"},M:{"0":0.23357},Q:{"13.1":0.01416}}; 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 3b0dd959040c7b..1e4e74644bcd80 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:{"2":0,"3":0,"4":0.33548,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00541,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00541,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01623,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00541,"89":0,"90":0.01082,"91":0.01082,"92":0,"93":0,"94":0.01082,"95":0,"96":0,"97":0,"98":0,"99":0.00541,"100":0.00541,"101":0.00541,"102":0.02164,"103":0.56816,"104":0.12986,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00541,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02706,"50":0,"51":0,"52":0.01082,"53":0,"54":0,"55":0,"56":0,"57":0.00541,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00541,"66":0.01082,"67":0.00541,"68":0,"69":0.01082,"70":0.00541,"71":0.00541,"72":0.00541,"73":0,"74":0.00541,"75":0.00541,"76":0.01082,"77":0.00541,"78":0.00541,"79":0.03247,"80":0.00541,"81":0.01623,"83":0.00541,"84":0.01082,"85":0.01082,"86":0.01623,"87":0.02706,"88":0.01623,"89":0.01082,"90":0.01623,"91":0.03247,"92":0.03788,"93":0.02164,"94":0.01082,"95":0.01082,"96":0.03247,"97":0.03247,"98":0.03247,"99":0.02706,"100":0.04329,"101":0.0487,"102":0.10822,"103":5.24867,"104":17.06629,"105":0.06493,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00541,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01082,"64":0.01082,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00541,"86":0,"87":0,"88":0.00541,"89":0.53028,"90":0.03247,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.01082,"13":0,"14":0,"15":0,"16":0,"17":0.00541,"18":0.01082,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00541,"91":0,"92":0.00541,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00541,"100":0.00541,"101":0.11904,"102":0.01623,"103":0.47076,"104":1.36898,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00541,"14":0.03247,"15":0.01082,_:"0","3.1":0,"3.2":0,"5.1":0.00541,"6.1":0,"7.1":0,"9.1":0.01082,"10.1":0,"11.1":0.00541,"12.1":0.01623,"13.1":0.05952,"14.1":0.0974,"15.1":0.01623,"15.2-15.3":0.01623,"15.4":0.05411,"15.5":0.18939,"15.6":0.30843,"16.0":0.00541},G:{"8":0.00609,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00456,"6.0-6.1":0,"7.0-7.1":0.01217,"8.1-8.4":0.00152,"9.0-9.2":0.00609,"9.3":0.07608,"10.0-10.2":0,"10.3":0.06391,"11.0-11.2":0.01826,"11.3-11.4":0.05174,"12.0-12.1":0.04108,"12.2-12.5":0.89929,"13.0-13.1":0.01522,"13.2":0.02891,"13.3":0.06239,"13.4-13.7":0.22825,"14.0-14.4":1.10014,"14.5-14.8":2.83176,"15.0-15.1":0.24803,"15.2-15.3":0.22368,"15.4":0.3941,"15.5":2.42548,"15.6":6.36043,"16.0":0.10195},P:{"4":0.07209,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05149,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0206,"12.0":0.0103,"13.0":0.0103,"14.0":0.0206,"15.0":0.0103,"16.0":0.04119,"17.0":0.27806,"18.0":0.37075},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01398,"4.2-4.3":0.06292,"4.4":0,"4.4.3-4.4.4":0.3146},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05411,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":54.11128},S:{"2.5":0.00459},R:{_:"0"},M:{"0":0.13767},Q:{"10.4":0},O:{"0":0.03671},H:{"0":0.1564}}; +module.exports={C:{"2":0,"3":0,"4":0.32648,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00594,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00594,"67":0,"68":0.00594,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01781,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00594,"89":0,"90":0,"91":0.01187,"92":0,"93":0,"94":0.01781,"95":0,"96":0,"97":0.00594,"98":0,"99":0.00594,"100":0.00594,"101":0.00594,"102":0.00594,"103":0.02968,"104":0.55205,"105":0.20182,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00594,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00594,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02374,"50":0,"51":0,"52":0.00594,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00594,"66":0.01187,"67":0.00594,"68":0,"69":0.01187,"70":0.00594,"71":0.00594,"72":0.00594,"73":0,"74":0.00594,"75":0.00594,"76":0.01781,"77":0.00594,"78":0.00594,"79":0.03562,"80":0.00594,"81":0.01187,"83":0.01187,"84":0.01187,"85":0.01187,"86":0.01781,"87":0.03562,"88":0.01187,"89":0.01187,"90":0.01187,"91":0.04155,"92":0.03562,"93":0.02968,"94":0.01187,"95":0.01187,"96":0.02374,"97":0.03562,"98":0.04749,"99":0.02968,"100":0.02968,"101":0.04155,"102":0.05936,"103":0.29086,"104":5.02186,"105":22.46182,"106":0.45707,"107":0.00594,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00594,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00594,"64":0.01781,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00594,"86":0,"87":0,"88":0,"89":0.07123,"90":0.49269,"91":0.01781,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.01781,"13":0,"14":0,"15":0,"16":0,"17":0.00594,"18":0.01187,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00594,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00594,"100":0,"101":0.03562,"102":0.01187,"103":0.02374,"104":0.3799,"105":1.66208},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00594,"14":0.03562,"15":0.01187,_:"0","3.1":0,"3.2":0,"5.1":0.00594,"6.1":0,"7.1":0,"9.1":0.01187,"10.1":0,"11.1":0.00594,"12.1":0.01781,"13.1":0.05936,"14.1":0.09498,"15.1":0.01781,"15.2-15.3":0.01781,"15.4":0.04749,"15.5":0.10091,"15.6":0.43333,"16.0":0.07123,"16.1":0.00594},G:{"8":0.00427,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00427,"6.0-6.1":0.00285,"7.0-7.1":0.0114,"8.1-8.4":0.0057,"9.0-9.2":0.00855,"9.3":0.07123,"10.0-10.2":0,"10.3":0.05984,"11.0-11.2":0.01282,"11.3-11.4":0.04559,"12.0-12.1":0.02849,"12.2-12.5":0.7038,"13.0-13.1":0.01425,"13.2":0.01852,"13.3":0.04417,"13.4-13.7":0.16954,"14.0-14.4":0.85766,"14.5-14.8":2.17407,"15.0-15.1":0.19091,"15.2-15.3":0.21655,"15.4":0.27924,"15.5":0.78928,"15.6":6.41964,"16.0":1.86491,"16.1":0.01852},P:{"4":0.07258,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05184,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01037,"12.0":0.01037,"13.0":0.01037,"14.0":0.02074,"15.0":0.01037,"16.0":0.02074,"17.0":0.07258,"18.0":0.52879},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01397,"4.2-4.3":0.02795,"4.4":0,"4.4.3-4.4.4":0.20493},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00643,"9":0,"10":0,"11":0.07074,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.03658},H:{"0":0.14236},L:{"0":49.42818},S:{"2.5":0.00406},R:{_:"0"},M:{"0":0.12192},Q:{"13.1":0}}; 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 d2c708e26bcf28..239a254a4e8673 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01263,"35":0,"36":0,"37":0,"38":0,"39":0.00421,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01263,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01263,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00421,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00842,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00421,"85":0,"86":0,"87":0,"88":0.00421,"89":0,"90":0,"91":0.00842,"92":0,"93":0,"94":0.00421,"95":0,"96":0,"97":0,"98":0.00421,"99":0.00842,"100":0.01263,"101":0.00842,"102":0.02106,"103":0.56006,"104":0.10106,"105":0.00421,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00421,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01263,"35":0,"36":0,"37":0,"38":0.03369,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00421,"48":0,"49":0.02948,"50":0,"51":0,"52":0,"53":0.03369,"54":0,"55":0.02527,"56":0.00842,"57":0,"58":0.00421,"59":0,"60":0,"61":0,"62":0.00421,"63":0,"64":0,"65":0.00421,"66":0.00421,"67":0.00421,"68":0.00421,"69":0.00421,"70":0.00842,"71":0.00421,"72":0.00421,"73":0.00842,"74":0.00842,"75":0.01684,"76":0.00421,"77":0.00421,"78":0.00842,"79":0.16844,"80":0.00842,"81":0.02106,"83":0.02527,"84":0.01684,"85":0.02106,"86":0.02948,"87":0.03369,"88":0.02106,"89":0.02948,"90":0.00842,"91":0.02948,"92":0.13896,"93":0.00842,"94":0.01263,"95":0.01263,"96":0.02948,"97":0.04632,"98":0.02948,"99":0.02948,"100":0.04211,"101":0.0379,"102":0.08843,"103":3.30142,"104":8.29146,"105":0.02106,"106":0.00842,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.02106,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02527,"37":0.00842,"38":0,"39":0,"40":0.00421,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.02948,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00421,"62":0,"63":0.04632,"64":0.0379,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00421,"86":0,"87":0,"88":0.00421,"89":0.16423,"90":0.01263,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00421,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00421,"102":0.00421,"103":0.2695,"104":0.6906,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01263,"14":0.06317,"15":0.02106,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00421,"11.1":0.00421,"12.1":0.00842,"13.1":0.04632,"14.1":0.17265,"15.1":0.03369,"15.2-15.3":0.02948,"15.4":0.1137,"15.5":0.44216,"15.6":0.58954,"16.0":0.00421},G:{"8":0.0021,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00421,"5.0-5.1":0.01262,"6.0-6.1":0.01683,"7.0-7.1":0.04417,"8.1-8.4":0.05258,"9.0-9.2":0.02103,"9.3":0.36387,"10.0-10.2":0.01893,"10.3":0.60995,"11.0-11.2":0.02734,"11.3-11.4":0.02945,"12.0-12.1":0.04838,"12.2-12.5":0.86235,"13.0-13.1":0.02945,"13.2":0.01262,"13.3":0.06731,"13.4-13.7":0.16616,"14.0-14.4":0.57209,"14.5-14.8":1.0853,"15.0-15.1":0.45641,"15.2-15.3":0.54896,"15.4":1.43865,"15.5":4.81653,"15.6":9.64567,"16.0":0.08203},P:{"4":0.85724,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05227,"8.2":0,"9.2":0.01045,"10.1":0,"11.1-11.2":0.04182,"12.0":0.01045,"13.0":0.04182,"14.0":0.04182,"15.0":0.03136,"16.0":0.10454,"17.0":0.74224,"18.0":0.91996},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01457,"4.4":0,"4.4.3-4.4.4":0.07649},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.0059,"8":0,"9":0,"10":0,"11":0.05306,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":55.58282},S:{"2.5":0},R:{_:"0"},M:{"0":0.14473},Q:{"10.4":0.01158},O:{"0":0.96676},H:{"0":0.64672}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01235,"35":0,"36":0,"37":0,"38":0,"39":0.00412,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00824,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01235,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00412,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00412,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00412,"89":0,"90":0,"91":0.00412,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00412,"99":0.00824,"100":0.00824,"101":0.00412,"102":0.01235,"103":0.03294,"104":0.43239,"105":0.1606,"106":0.00412,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00412,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01235,"35":0,"36":0,"37":0,"38":0.03294,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00412,"48":0,"49":0.02059,"50":0,"51":0,"52":0,"53":0.02883,"54":0,"55":0.02059,"56":0.00412,"57":0,"58":0.00412,"59":0,"60":0,"61":0,"62":0.00412,"63":0.00412,"64":0,"65":0.00412,"66":0.00412,"67":0.00412,"68":0.00412,"69":0.00412,"70":0.00824,"71":0.00412,"72":0.00412,"73":0.00824,"74":0.00824,"75":0.01647,"76":0.00412,"77":0.00412,"78":0.00412,"79":0.15237,"80":0.00824,"81":0.02059,"83":0.02471,"84":0.01647,"85":0.02059,"86":0.02883,"87":0.03294,"88":0.01647,"89":0.01647,"90":0.00824,"91":0.02883,"92":0.12354,"93":0.00824,"94":0.01235,"95":0.01235,"96":0.02471,"97":0.03706,"98":0.02471,"99":0.02471,"100":0.02883,"101":0.02883,"102":0.05353,"103":0.20178,"104":2.35138,"105":8.7384,"106":0.14001,"107":0.00824,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.02059,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02059,"37":0.00412,"38":0,"39":0,"40":0.00412,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.02883,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00412,"62":0,"63":0.01235,"64":0.06589,"65":0.00412,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01235,"90":0.1606,"91":0.00412,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00412,"79":0,"80":0,"81":0,"83":0,"84":0.00412,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00412,"102":0.00412,"103":0.01235,"104":0.13589,"105":0.77418},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00412,"12":0,"13":0.01235,"14":0.04942,"15":0.01647,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00412,"10.1":0.00412,"11.1":0.00412,"12.1":0.00824,"13.1":0.04118,"14.1":0.14001,"15.1":0.02883,"15.2-15.3":0.02059,"15.4":0.07412,"15.5":0.19355,"15.6":0.78654,"16.0":0.0453,"16.1":0.00412},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00436,"5.0-5.1":0.01308,"6.0-6.1":0.01744,"7.0-7.1":0.03923,"8.1-8.4":0.04577,"9.0-9.2":0.02397,"9.3":0.33565,"10.0-10.2":0.01962,"10.3":0.59719,"11.0-11.2":0.02615,"11.3-11.4":0.02833,"12.0-12.1":0.04141,"12.2-12.5":0.8195,"13.0-13.1":0.03269,"13.2":0.01526,"13.3":0.06321,"13.4-13.7":0.16128,"14.0-14.4":0.51655,"14.5-14.8":0.94155,"15.0-15.1":0.41193,"15.2-15.3":0.44898,"15.4":1.05271,"15.5":1.88528,"15.6":10.0759,"16.0":3.67466,"16.1":0.02397},P:{"4":0.79699,"5.0-5.4":0.01035,"6.2-6.4":0,"7.2-7.4":0.05175,"8.2":0,"9.2":0.01035,"10.1":0,"11.1-11.2":0.0414,"12.0":0.01035,"13.0":0.0414,"14.0":0.0414,"15.0":0.03105,"16.0":0.07245,"17.0":0.15526,"18.0":1.40767},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0079,"4.2-4.3":0.01975,"4.4":0,"4.4.3-4.4.4":0.08294},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04942,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.97053},H:{"0":0.62926},L:{"0":56.20133},S:{"2.5":0},R:{_:"0"},M:{"0":0.14117},Q:{"13.1":0.01176}}; 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 aa1ccca8a46aa2..22cd1163d42d80 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00458,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00458,"57":0.03205,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00458,"67":0,"68":0.00458,"69":0,"70":0,"71":0,"72":0.00458,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00916,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01832,"89":0,"90":0,"91":0.01374,"92":0,"93":0,"94":0.00458,"95":0,"96":0,"97":0.00458,"98":0.12363,"99":0.00458,"100":0.00458,"101":0.00916,"102":0.0229,"103":0.82422,"104":0.19232,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00458,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.03663,"41":0,"42":0,"43":0.04121,"44":0,"45":0,"46":0.00458,"47":0,"48":0,"49":0.00458,"50":0,"51":0,"52":0.0229,"53":0,"54":0,"55":0.00916,"56":0,"57":0,"58":0.00458,"59":0.00458,"60":0,"61":0,"62":0,"63":0.01374,"64":0,"65":0.00458,"66":0,"67":0,"68":0.01374,"69":0.01374,"70":0.00916,"71":0.00916,"72":0,"73":0,"74":0.15111,"75":0,"76":0,"77":0,"78":0,"79":0.01374,"80":0.01374,"81":0.21979,"83":0.00458,"84":0,"85":0.00458,"86":0.00458,"87":0.05037,"88":0.00916,"89":0.00916,"90":0.03663,"91":0.0229,"92":0.01374,"93":0.00458,"94":0.05037,"95":0.03663,"96":0.02747,"97":0.03663,"98":0.0229,"99":0.1099,"100":0.04579,"101":0.02747,"102":0.06869,"103":2.12008,"104":6.65787,"105":0.03205,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00458,"25":0,"26":0.00458,"27":0.04579,"28":0.00458,"29":0,"30":0,"31":0,"32":0.00458,"33":0,"34":0,"35":0.01832,"36":0,"37":0.00458,"38":0.02747,"39":0,"40":0,"41":0,"42":0.00458,"43":0,"44":0,"45":0,"46":0.00916,"47":0,"48":0,"49":0,"50":0.00458,"51":0.01374,"52":0,"53":0,"54":0.03663,"55":0.00916,"56":0.00916,"57":0.00916,"58":0.1099,"60":0.15111,"62":0.00458,"63":0.50369,"64":0.2839,"65":0.0229,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01832,"80":0.01374,"81":0,"82":0,"83":0,"84":0.01832,"85":0.00458,"86":0.00916,"87":0.00458,"88":0.03205,"89":0.63648,"90":0.15111,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00458,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00458},B:{"12":0.01374,"13":0.00916,"14":0.00458,"15":0.00916,"16":0.00458,"17":0.00458,"18":0.06411,"79":0.00458,"80":0,"81":0,"83":0,"84":0.00458,"85":0,"86":0,"87":0,"88":0.00458,"89":0.00916,"90":0.00916,"91":0.00458,"92":0.02747,"93":0,"94":0,"95":0,"96":0.00458,"97":0.00458,"98":0,"99":0.00458,"100":0.00458,"101":0.01374,"102":0.00916,"103":0.43501,"104":1.13101,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00458,"14":0.00458,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00458,"12.1":0.00458,"13.1":0.02747,"14.1":0.00916,"15.1":0.00458,"15.2-15.3":0.00458,"15.4":0.00458,"15.5":0.02747,"15.6":0.04579,"16.0":0},G:{"8":0.02385,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01267,"6.0-6.1":0,"7.0-7.1":0.01341,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.1617,"10.0-10.2":0.00149,"10.3":0.1468,"11.0-11.2":0.00596,"11.3-11.4":0.00596,"12.0-12.1":0.0313,"12.2-12.5":1.40391,"13.0-13.1":0.17735,"13.2":0.00596,"13.3":0.04546,"13.4-13.7":0.14233,"14.0-14.4":0.69152,"14.5-14.8":0.49256,"15.0-15.1":0.17288,"15.2-15.3":0.5179,"15.4":0.42698,"15.5":1.22357,"15.6":1.70496,"16.0":0.04173},P:{"4":0.59408,"5.0-5.4":0,"6.2-6.4":0.02049,"7.2-7.4":0.2868,"8.2":0,"9.2":0.15364,"10.1":0.02049,"11.1-11.2":0.06146,"12.0":0.02049,"13.0":0.04097,"14.0":0.0717,"15.0":0.02049,"16.0":0.10243,"17.0":0.39947,"18.0":0.24582},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00034,"4.2-4.3":0.00258,"4.4":0,"4.4.3-4.4.4":0.06997},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04121,"5.5":0},J:{"7":0,"10":0.06505},N:{"10":0,"11":0},L:{"0":66.042},S:{"2.5":0.15721},R:{_:"0"},M:{"0":0.31984},Q:{"10.4":0.03795},O:{"0":0.42826},H:{"0":5.13738}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.00435,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00435,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00435,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00435,"67":0,"68":0.00435,"69":0,"70":0,"71":0,"72":0.02176,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00435,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00435,"89":0.00435,"90":0,"91":0.01305,"92":0,"93":0,"94":0.00435,"95":0.00435,"96":0,"97":0,"98":0.09137,"99":0.00435,"100":0,"101":0.00435,"102":0.00435,"103":0.03916,"104":0.68746,"105":0.14793,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00435,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00435,"40":0.0087,"41":0,"42":0,"43":0.02176,"44":0,"45":0,"46":0.00435,"47":0,"48":0,"49":0.00435,"50":0,"51":0,"52":0.0087,"53":0,"54":0,"55":0.0087,"56":0,"57":0,"58":0,"59":0,"60":0.00435,"61":0,"62":0,"63":0.00435,"64":0.00435,"65":0,"66":0,"67":0,"68":0.00435,"69":0.07397,"70":0.05656,"71":0.00435,"72":0.00435,"73":0,"74":0.07832,"75":0,"76":0,"77":0,"78":0,"79":0.01305,"80":0.00435,"81":0.31762,"83":0.0087,"84":0.00435,"85":0.00435,"86":0.01305,"87":0.03481,"88":0.00435,"89":0.00435,"90":0.02611,"91":0.03046,"92":0.0087,"93":0,"94":0.02611,"95":0.01305,"96":0.02176,"97":0.01305,"98":0.02611,"99":0.05221,"100":0.02611,"101":0.0174,"102":0.04786,"103":0.18709,"104":1.71429,"105":5.97827,"106":0.09137,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.0087,"25":0,"26":0.00435,"27":0.03481,"28":0.0087,"29":0,"30":0,"31":0,"32":0.00435,"33":0,"34":0,"35":0.02176,"36":0.00435,"37":0.00435,"38":0.0087,"39":0,"40":0,"41":0,"42":0.00435,"43":0,"44":0,"45":0,"46":0.00435,"47":0,"48":0,"49":0,"50":0.00435,"51":0.0087,"52":0,"53":0,"54":0.02611,"55":0.0087,"56":0.00435,"57":0.0087,"58":0.05656,"60":0.16099,"62":0.00435,"63":0.30022,"64":0.50472,"65":0.03916,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.0087,"80":0.0087,"81":0,"82":0,"83":0,"84":0,"85":0.00435,"86":0.00435,"87":0,"88":0.00435,"89":0.0087,"90":0.78753,"91":0.03046,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00435},B:{"12":0.0087,"13":0.0174,"14":0,"15":0.05221,"16":0.00435,"17":0.00435,"18":0.03046,"79":0,"80":0,"81":0,"83":0,"84":0.0087,"85":0.00435,"86":0,"87":0,"88":0.02611,"89":0.0174,"90":0.00435,"91":0.00435,"92":0.02611,"93":0,"94":0,"95":0,"96":0.00435,"97":0,"98":0,"99":0.0087,"100":0.00435,"101":0.00435,"102":0.0087,"103":0.02176,"104":0.28282,"105":1.07035},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00435,"14":0.00435,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0087,"13.1":0.0174,"14.1":0.0087,"15.1":0.00435,"15.2-15.3":0,"15.4":0.00435,"15.5":0.01305,"15.6":0.03481,"16.0":0.0087,"16.1":0},G:{"8":0.02124,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01797,"6.0-6.1":0,"7.0-7.1":0.02696,"8.1-8.4":0.00163,"9.0-9.2":0,"9.3":0.11355,"10.0-10.2":0.00082,"10.3":0.19768,"11.0-11.2":0.00735,"11.3-11.4":0.00408,"12.0-12.1":0.04574,"12.2-12.5":1.80774,"13.0-13.1":0.05963,"13.2":0.00653,"13.3":0.08822,"13.4-13.7":0.16501,"14.0-14.4":0.65268,"14.5-14.8":0.7115,"15.0-15.1":0.1789,"15.2-15.3":0.42232,"15.4":0.43458,"15.5":0.59468,"15.6":2.10182,"16.0":0.42396,"16.1":0.00735},P:{"4":0.52644,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.24297,"8.2":0,"9.2":0.08099,"10.1":0.02025,"11.1-11.2":0.06074,"12.0":0.01012,"13.0":0.03037,"14.0":0.11136,"15.0":0.02025,"16.0":0.07087,"17.0":0.13161,"18.0":0.48594},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00061,"4.2-4.3":0.00183,"4.4":0,"4.4.3-4.4.4":0.08497},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03916,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.0226},O:{"0":0.42368},H:{"0":5.57808},L:{"0":66.56531},S:{"2.5":0.21466},R:{_:"0"},M:{"0":0.2994},Q:{"13.1":0}}; 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 529735e9b0cd5c..1e858a071186c5 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00831,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02079,"53":0,"54":0,"55":0,"56":0.00416,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00416,"69":0,"70":0,"71":0,"72":0.00416,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00416,"79":0,"80":0,"81":0,"82":0.00416,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.12471,"89":0,"90":0,"91":0.02079,"92":0,"93":0.00416,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00416,"100":0.00831,"101":0.00416,"102":0.0291,"103":0.84803,"104":0.16212,"105":0.00416,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.02494,"41":0,"42":0,"43":0.00416,"44":0,"45":0,"46":0,"47":0,"48":0.00416,"49":0.01663,"50":0.00416,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00416,"61":0.00416,"62":0,"63":0.00416,"64":0.00416,"65":0.00416,"66":0,"67":0,"68":0,"69":0.00831,"70":0.00416,"71":0,"72":0,"73":0,"74":0.00416,"75":0,"76":0,"77":0,"78":0,"79":0.00831,"80":0.00416,"81":0.03741,"83":0.00416,"84":0.00416,"85":0.00416,"86":0.00831,"87":0.00831,"88":0.00831,"89":0.00831,"90":0.00416,"91":0.01663,"92":0.00831,"93":0.00831,"94":0.00831,"95":0.01247,"96":0.02494,"97":0.0291,"98":0.01247,"99":0.01663,"100":0.03741,"101":0.05404,"102":0.06651,"103":2.5524,"104":6.92141,"105":0.0582,"106":0.00831,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00416,"27":0,"28":0.02079,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00416,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00831,"62":0,"63":0.18291,"64":0.12471,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00416,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00416,"86":0.00416,"87":0,"88":0.00416,"89":0.36166,"90":0.06651,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00416,"13":0.00831,"14":0.01247,"15":0.01247,"16":0.00831,"17":0.00831,"18":0.0291,"79":0,"80":0,"81":0,"83":0,"84":0.03741,"85":0.00416,"86":0,"87":0,"88":0,"89":0.00416,"90":0.00416,"91":0.00416,"92":0.02079,"93":0,"94":0,"95":0.00416,"96":0.04988,"97":0,"98":0.00416,"99":0.01247,"100":0.00831,"101":0.04988,"102":0.02494,"103":0.84387,"104":1.79582,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00416,"14":0.00416,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00416,"12.1":0.00416,"13.1":0.02494,"14.1":0.0582,"15.1":0.00831,"15.2-15.3":0.01663,"15.4":0.04157,"15.5":0.09977,"15.6":0.19122,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00591,"6.0-6.1":0,"7.0-7.1":0.01379,"8.1-8.4":0.03053,"9.0-9.2":0,"9.3":0.04629,"10.0-10.2":0.00394,"10.3":0.04531,"11.0-11.2":0.00394,"11.3-11.4":0.00197,"12.0-12.1":0.05023,"12.2-12.5":0.73773,"13.0-13.1":0.00689,"13.2":0.00098,"13.3":0.01674,"13.4-13.7":0.0719,"14.0-14.4":0.59392,"14.5-14.8":0.51907,"15.0-15.1":0.36542,"15.2-15.3":0.35557,"15.4":0.31124,"15.5":2.38653,"15.6":4.22051,"16.0":0.06008},P:{"4":0.41637,"5.0-5.4":0,"6.2-6.4":0.01016,"7.2-7.4":0.61948,"8.2":0,"9.2":0,"10.1":0.05078,"11.1-11.2":0.06093,"12.0":0.01016,"13.0":0.04062,"14.0":0.08124,"15.0":0.05078,"16.0":0.17264,"17.0":1.50299,"18.0":1.01553},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01314,"4.2-4.3":0.02482,"4.4":0,"4.4.3-4.4.4":0.19417},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.25773,"5.5":0},J:{"7":0,"10":0.00584},N:{"10":0,"11":0},L:{"0":65.44461},S:{"2.5":0},R:{_:"0"},M:{"0":0.56093},Q:{"10.4":0},O:{"0":0.41485},H:{"0":1.27784}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00419,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.06702,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00419,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00419,"67":0,"68":0.00419,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00419,"79":0,"80":0,"81":0,"82":0.00419,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.02513,"89":0,"90":0.00838,"91":0.00838,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00419,"100":0.00838,"101":0,"102":0.00838,"103":0.04608,"104":0.81267,"105":0.31418,"106":0.00838,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00419,"39":0,"40":0.0377,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00419,"49":0.01257,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00419,"58":0.00419,"59":0,"60":0,"61":0,"62":0,"63":0.00419,"64":0,"65":0,"66":0,"67":0,"68":0.00419,"69":0.00838,"70":0.00838,"71":0,"72":0,"73":0.00419,"74":0.00419,"75":0.00419,"76":0,"77":0.00419,"78":0,"79":0.00419,"80":0.00419,"81":0.02932,"83":0.00838,"84":0,"85":0,"86":0.00838,"87":0.02095,"88":0.00838,"89":0.00419,"90":0.00838,"91":0.00838,"92":0.01257,"93":0.00419,"94":0.01257,"95":0.02095,"96":0.02095,"97":0.01676,"98":0.02513,"99":0.02095,"100":0.02095,"101":0.02095,"102":0.02513,"103":0.23458,"104":2.05261,"105":7.49412,"106":0.17175,"107":0.00838,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00419,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00419,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.03351,"55":0,"56":0,"57":0.00419,"58":0,"60":0.00419,"62":0,"63":0.12148,"64":0.24296,"65":0.0377,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00419,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00419,"86":0,"87":0,"88":0,"89":0.01257,"90":0.36863,"91":0.01676,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00419},B:{"12":0.00838,"13":0.00419,"14":0.00838,"15":0.01257,"16":0.00419,"17":0.00838,"18":0.03351,"79":0,"80":0,"81":0,"83":0,"84":0.02513,"85":0,"86":0,"87":0,"88":0,"89":0.00419,"90":0.00419,"91":0,"92":0.01257,"93":0,"94":0,"95":0.00419,"96":0,"97":0.00419,"98":0.00419,"99":0.01257,"100":0.00838,"101":0.05027,"102":0.00838,"103":0.04189,"104":0.41471,"105":2.35003},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00419,"14":0.01676,"15":0.00419,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00419,"13.1":0.02513,"14.1":0.04189,"15.1":0.02095,"15.2-15.3":0.04608,"15.4":0.01676,"15.5":0.07959,"15.6":0.30161,"16.0":0.01676,"16.1":0},G:{"8":0.00197,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00099,"5.0-5.1":0.00494,"6.0-6.1":0.00099,"7.0-7.1":0.01382,"8.1-8.4":0.00494,"9.0-9.2":0,"9.3":0.04739,"10.0-10.2":0,"10.3":0.05134,"11.0-11.2":0.00494,"11.3-11.4":0.00296,"12.0-12.1":0.0079,"12.2-12.5":0.68219,"13.0-13.1":0.0079,"13.2":0.00099,"13.3":0.02271,"13.4-13.7":0.06812,"14.0-14.4":0.62197,"14.5-14.8":0.42945,"15.0-15.1":0.26359,"15.2-15.3":0.26359,"15.4":0.21818,"15.5":0.92604,"15.6":4.81085,"16.0":1.12151,"16.1":0.0158},P:{"4":0.39718,"5.0-5.4":0,"6.2-6.4":0.01018,"7.2-7.4":0.45829,"8.2":0,"9.2":0.02037,"10.1":0.03055,"11.1-11.2":0.14258,"12.0":0.01018,"13.0":0.04074,"14.0":0.04074,"15.0":0.08147,"16.0":0.13239,"17.0":0.60087,"18.0":1.98592},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00506,"4.2-4.3":0.03483,"4.4":0,"4.4.3-4.4.4":0.13484},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.19688,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00581},O:{"0":0.65083},H:{"0":1.74397},L:{"0":64.49706},S:{"2.5":0},R:{_:"0"},M:{"0":0.40677},Q:{"13.1":0.01743}}; 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 f8e14efa3ece4d..5fbdfc4664b100 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00494,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.11364,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00988,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01482,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.084,"79":0,"80":0.00494,"81":0,"82":0,"83":0.00494,"84":0.00494,"85":0,"86":0,"87":0.00494,"88":0.00494,"89":0.00494,"90":0,"91":0.32117,"92":0.00494,"93":0,"94":0.00988,"95":0.00494,"96":0.01482,"97":0,"98":0.00494,"99":0.04447,"100":0.00988,"101":0.01482,"102":0.13341,"103":2.76696,"104":0.48916,"105":0.00494,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.01482,"27":0,"28":0,"29":0,"30":0,"31":0.00494,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00494,"41":0,"42":0.00494,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03459,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00494,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00494,"66":0,"67":0.00494,"68":0,"69":0,"70":0,"71":0,"72":0.00494,"73":0,"74":0.00494,"75":0,"76":0.01976,"77":0,"78":0.00494,"79":0.00988,"80":0.01482,"81":0.07412,"83":0.00494,"84":0.00494,"85":0.00494,"86":0.00494,"87":0.02471,"88":0,"89":0.01976,"90":0.01482,"91":0.00988,"92":0.00494,"93":0.03953,"94":0.04447,"95":0.01482,"96":0.01976,"97":0.12353,"98":0.01482,"99":0.07906,"100":0.02965,"101":0.02471,"102":0.07906,"103":2.89543,"104":7.66843,"105":0.01482,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02965,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00494,"85":0,"86":0.00988,"87":0.00494,"88":0.01482,"89":0.60774,"90":0.07906,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00494,"18":0.01482,"79":0,"80":0,"81":0,"83":0,"84":0.00988,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00494,"92":0.00494,"93":0,"94":0,"95":0,"96":0.01976,"97":0.40516,"98":0.00494,"99":0.00988,"100":0.00988,"101":0.03459,"102":0.06917,"103":0.81527,"104":2.18392,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00494,"12":0,"13":0.01976,"14":0.07906,"15":0.01482,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00494,"11.1":0.01976,"12.1":0.12353,"13.1":0.20258,"14.1":0.37552,"15.1":0.03953,"15.2-15.3":0.05929,"15.4":0.09882,"15.5":0.61763,"15.6":0.98326,"16.0":0.00988},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00378,"5.0-5.1":0.00189,"6.0-6.1":0.00378,"7.0-7.1":0,"8.1-8.4":0.00189,"9.0-9.2":0,"9.3":0.57603,"10.0-10.2":0.00567,"10.3":0.29462,"11.0-11.2":0.01133,"11.3-11.4":0.39283,"12.0-12.1":0.06232,"12.2-12.5":0.80455,"13.0-13.1":0.00567,"13.2":0.00378,"13.3":0.20019,"13.4-13.7":0.0831,"14.0-14.4":0.30784,"14.5-14.8":1.18038,"15.0-15.1":0.40794,"15.2-15.3":0.25496,"15.4":0.86498,"15.5":4.17193,"15.6":9.13708,"16.0":0.09632},P:{"4":0.06297,"5.0-5.4":0,"6.2-6.4":0.0105,"7.2-7.4":0.33587,"8.2":0,"9.2":0.03149,"10.1":0,"11.1-11.2":0.07347,"12.0":0.02099,"13.0":0.08397,"14.0":0.14694,"15.0":0.04198,"16.0":0.18892,"17.0":2.01519,"18.0":3.45311},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01359,"4.4":0,"4.4.3-4.4.4":0.33534},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.084,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":47.86796},S:{"2.5":0},R:{_:"0"},M:{"0":0.22766},Q:{"10.4":0.00506},O:{"0":0.08094},H:{"0":0.03832}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.01489,"46":0,"47":0,"48":0.00993,"49":0,"50":0,"51":0,"52":0.10424,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00496,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00993,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00496,"78":0.06453,"79":0,"80":0.00993,"81":0,"82":0,"83":0.00496,"84":0.00496,"85":0,"86":0,"87":0,"88":0,"89":0.00496,"90":0.00496,"91":0.25813,"92":0,"93":0.00496,"94":0.00993,"95":0,"96":0.1787,"97":0.00496,"98":0.00496,"99":0.00496,"100":0.00993,"101":0.00993,"102":0.22834,"103":0.18367,"104":2.70538,"105":0.78431,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01986,"50":0,"51":0,"52":0,"53":0,"54":0.02978,"55":0,"56":0,"57":0,"58":0,"59":0.00993,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00496,"66":0,"67":0.00496,"68":0,"69":0,"70":0,"71":0,"72":0.00496,"73":0.00496,"74":0.00496,"75":0,"76":0.00993,"77":0.00993,"78":0.00496,"79":0.02978,"80":0.00496,"81":0.11417,"83":0,"84":0.00496,"85":0.00496,"86":0,"87":0.02482,"88":0.02482,"89":0.00993,"90":0.00496,"91":0.02978,"92":0.01986,"93":0.01986,"94":0.04468,"95":0,"96":0.02978,"97":0.05957,"98":0.03971,"99":0.12906,"100":0.03475,"101":0.01986,"102":0.02978,"103":0.20352,"104":2.52171,"105":8.16082,"106":0.21842,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00496,"85":0,"86":0,"87":0,"88":0.01489,"89":0.03971,"90":0.53611,"91":0.04964,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.02978,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00496,"92":0.00993,"93":0,"94":0,"95":0.00993,"96":0.00993,"97":0.09432,"98":0,"99":0.00496,"100":0.00993,"101":0.01986,"102":0.00993,"103":0.07446,"104":0.50633,"105":2.32315},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00496,"12":0,"13":0.02482,"14":0.07942,"15":0.01986,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00496,"10.1":0.00496,"11.1":0.01986,"12.1":0.01986,"13.1":0.15885,"14.1":0.35741,"15.1":0.01986,"15.2-15.3":0.0546,"15.4":0.08439,"15.5":0.28295,"15.6":1.10201,"16.0":0.19856,"16.1":0.00993},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.00443,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.62267,"10.0-10.2":0,"10.3":0.12852,"11.0-11.2":0.01551,"11.3-11.4":0.29472,"12.0-12.1":0.01551,"12.2-12.5":0.87528,"13.0-13.1":0.0133,"13.2":0.01108,"13.3":0.16841,"13.4-13.7":0.07534,"14.0-14.4":0.2371,"14.5-14.8":1.98546,"15.0-15.1":0.37892,"15.2-15.3":0.30358,"15.4":1.52898,"15.5":1.55778,"15.6":11.59807,"16.0":2.11841,"16.1":0.02659},P:{"4":0.05267,"5.0-5.4":0,"6.2-6.4":0.01053,"7.2-7.4":0.44246,"8.2":0,"9.2":0.0316,"10.1":0,"11.1-11.2":0.07374,"12.0":0.05267,"13.0":0.10535,"14.0":0.14749,"15.0":0.04214,"16.0":0.16855,"17.0":0.62155,"18.0":4.20333},I:{"0":0,"3":0,"4":0.00619,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00928,"4.4":0,"4.4.3-4.4.4":0.3187},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02978,"5.5":0},N:{"10":0,"11":0.01007},J:{"7":0,"10":0},O:{"0":0.06547},H:{"0":0.06198},L:{"0":44.96498},S:{"2.5":0.00504},R:{_:"0"},M:{"0":0.27698},Q:{"13.1":0.00504}}; 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 a096d29c48698f..580cf4c9db0ce0 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00724,"34":0,"35":0,"36":0.03138,"37":0,"38":0,"39":0.00241,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00241,"48":0.00241,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.01207,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00483,"90":0,"91":0.01207,"92":0,"93":0.00724,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00241,"100":0.00483,"101":0.02414,"102":0.06276,"103":0.89801,"104":0.10863,"105":0.08932,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00241,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00241,"26":0,"27":0,"28":0.00241,"29":0,"30":0.00241,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00724,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01207,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.06035,"56":0,"57":0,"58":0.00483,"59":0,"60":0,"61":0.00241,"62":0.00724,"63":0.00241,"64":0,"65":0,"66":0,"67":0.00241,"68":0.00241,"69":0,"70":0.00241,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00241,"78":0,"79":0.04345,"80":0.00241,"81":0,"83":0,"84":0,"85":0,"86":0.00241,"87":0.00966,"88":0,"89":0,"90":0.00241,"91":0.00241,"92":0.00241,"93":0.00483,"94":0,"95":0.00724,"96":0.00483,"97":0.00241,"98":0.00241,"99":0.00483,"100":0.0169,"101":0.00724,"102":0.00724,"103":0.46349,"104":1.09113,"105":0.01207,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00241,"25":0,"26":0.01207,"27":0.00241,"28":0.02655,"29":0,"30":0.01207,"31":0,"32":0,"33":0.00483,"34":0,"35":0,"36":0,"37":0.00483,"38":0.00724,"39":0,"40":0,"41":0,"42":0.00483,"43":0,"44":0,"45":0.00241,"46":0,"47":0.00241,"48":0,"49":0,"50":0.00241,"51":0,"52":0,"53":0,"54":0.00241,"55":0.00241,"56":0.00241,"57":0.00483,"58":0.00241,"60":0.16898,"62":0,"63":0.23416,"64":0.10863,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.02655,"80":0,"81":0,"82":0,"83":0,"84":0.00483,"85":0.00241,"86":0.00483,"87":0.00241,"88":0,"89":0.18105,"90":0.0169,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00483},B:{"12":0.00483,"13":0.00241,"14":0,"15":0,"16":0,"17":0.00241,"18":0.01448,"79":0,"80":0,"81":0,"83":0,"84":0.00241,"85":0,"86":0,"87":0,"88":0,"89":0.00241,"90":0,"91":0,"92":0.00966,"93":0,"94":0,"95":0.00241,"96":0,"97":0,"98":0,"99":0.00724,"100":0.0169,"101":0.00966,"102":0.00241,"103":0.18829,"104":0.33555,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00241,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00241,"12.1":0,"13.1":0.00241,"14.1":0.00241,"15.1":0.00483,"15.2-15.3":0.00724,"15.4":0.00241,"15.5":0.00724,"15.6":0.01931,"16.0":0},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.00336,"7.0-7.1":0.00672,"8.1-8.4":0,"9.0-9.2":0.00168,"9.3":0.26022,"10.0-10.2":0.00084,"10.3":0.04365,"11.0-11.2":0.0361,"11.3-11.4":0.00252,"12.0-12.1":0.0361,"12.2-12.5":1.17604,"13.0-13.1":0.02099,"13.2":0.00504,"13.3":0.03442,"13.4-13.7":0.11332,"14.0-14.4":0.52129,"14.5-14.8":1.29188,"15.0-15.1":0.27198,"15.2-15.3":0.36683,"15.4":0.41048,"15.5":1.6201,"15.6":2.0843,"16.0":0.0873},P:{"4":0.07129,"5.0-5.4":0.01018,"6.2-6.4":0.04074,"7.2-7.4":0.08148,"8.2":0,"9.2":0.20369,"10.1":0,"11.1-11.2":0.01018,"12.0":0.01018,"13.0":0.02037,"14.0":0.03055,"15.0":0.04074,"16.0":0.10185,"17.0":0.80458,"18.0":0.41757},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00095,"4.4":0,"4.4.3-4.4.4":0.23078},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04345,"5.5":0},J:{"7":0,"10":0.03034},N:{"10":0,"11":0.00759},L:{"0":75.85044},S:{"2.5":0.02276},R:{_:"0"},M:{"0":0.3262},Q:{"10.4":0.06069},O:{"0":2.82199},H:{"0":3.87106}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00211,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00423,"52":0,"53":0,"54":0,"55":0,"56":0.00211,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00211,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00211,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00211,"90":0,"91":0.00211,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00211,"100":0.00211,"101":0.00423,"102":0.01268,"103":0.07184,"104":0.59164,"105":0.09931,"106":0.00211,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00211,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00211,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00423,"41":0,"42":0,"43":0.00211,"44":0.00211,"45":0,"46":0,"47":0,"48":0,"49":0.01057,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.05283,"56":0,"57":0,"58":0.00211,"59":0,"60":0,"61":0,"62":0.01057,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00211,"75":0,"76":0,"77":0,"78":0.00211,"79":0.05916,"80":0.00211,"81":0.00211,"83":0.00211,"84":0.00211,"85":0,"86":0.00211,"87":0.00423,"88":0,"89":0,"90":0,"91":0,"92":0.00423,"93":0,"94":0,"95":0,"96":0.00211,"97":0,"98":0.00211,"99":0.00211,"100":0,"101":0.03592,"102":0.00423,"103":0.02747,"104":0.23454,"105":1.27625,"106":0.01268,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00423,"25":0,"26":0.01057,"27":0.00211,"28":0.00211,"29":0,"30":0.0169,"31":0,"32":0.00423,"33":0.00211,"34":0,"35":0,"36":0,"37":0.00423,"38":0,"39":0,"40":0,"41":0.00211,"42":0.00211,"43":0,"44":0,"45":0,"46":0.00423,"47":0.00211,"48":0,"49":0,"50":0.00211,"51":0.00211,"52":0,"53":0,"54":0.00423,"55":0.00211,"56":0,"57":0.00634,"58":0.01057,"60":0.13523,"62":0,"63":0.08875,"64":0.28103,"65":0.00423,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00211,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00211,"80":0,"81":0,"82":0,"83":0,"84":0.00211,"85":0,"86":0,"87":0,"88":0,"89":0.00211,"90":0.07396,"91":0.00211,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00423},B:{"12":0.00845,"13":0,"14":0,"15":0,"16":0,"17":0.00423,"18":0.00845,"79":0,"80":0,"81":0,"83":0,"84":0.00211,"85":0.00211,"86":0,"87":0,"88":0,"89":0.00211,"90":0.00423,"91":0,"92":0.00423,"93":0,"94":0.00211,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.01057,"101":0.00423,"102":0.00634,"103":0.06973,"104":0.09509,"105":0.33597},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00211,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00211,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00423,"15.1":0.00845,"15.2-15.3":0,"15.4":0.00634,"15.5":0.00845,"15.6":0.01057,"16.0":0.00211,"16.1":0},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.03691,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.26111,"10.0-10.2":0.00461,"10.3":0.02491,"11.0-11.2":0.02676,"11.3-11.4":0.00369,"12.0-12.1":0.01015,"12.2-12.5":0.99832,"13.0-13.1":0.01569,"13.2":0.00277,"13.3":0.0489,"13.4-13.7":0.23067,"14.0-14.4":0.64125,"14.5-14.8":1.39322,"15.0-15.1":0.33862,"15.2-15.3":0.50193,"15.4":0.4521,"15.5":0.98632,"15.6":2.17471,"16.0":0.6883,"16.1":0.01845},P:{"4":0.06089,"5.0-5.4":0.01015,"6.2-6.4":0.05074,"7.2-7.4":0.08118,"8.2":0,"9.2":0.2537,"10.1":0,"11.1-11.2":0.03044,"12.0":0,"13.0":0.0203,"14.0":0.06089,"15.0":0.03044,"16.0":0.07104,"17.0":0.16237,"18.0":0.69006},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00205,"4.2-4.3":0.01299,"4.4":0,"4.4.3-4.4.4":0.19342},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02536,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.03944},O:{"0":2.11372},H:{"0":3.86786},L:{"0":77.74821},S:{"2.5":0.00789},R:{_:"0"},M:{"0":0.11042},Q:{"13.1":0.10253}}; 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 b6b7a82e9b2898..8d2b2088914cdb 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":3.86732,"104":0.14323,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.07162,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":4.37966,"104":10.14207,"105":0,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.07162,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.65557,"104":4.88648,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.22036,"14.1":0.36359,"15.1":0,"15.2-15.3":0,"15.4":0.14323,"15.5":0.29198,"15.6":0.72719,"16.0":0},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":3.61378,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.18133,"14.5-14.8":1.98822,"15.0-15.1":0.54398,"15.2-15.3":0.36265,"15.4":2.52901,"15.5":12.47009,"15.6":10.12241,"16.0":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.27557,"12.0":0,"13.0":0.13778,"14.0":0.98568,"15.0":0,"16.0":0.13778,"17.0":0.8373,"18.0":0.27557},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 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":2.62779,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":35.18426},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.25949,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.05406,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":1.92454,"102":0,"103":0,"104":9.35779,"105":1.40556,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":1.03795,"105":9.40644,"106":0,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.05406,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.10271,"101":0,"102":0,"103":0,"104":0.05406,"105":0.9893},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.15677,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.15677,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":1.09201,"16.0":0.3622,"16.1":0},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.28354,"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.56708,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.56708,"14.5-14.8":1.70125,"15.0-15.1":0,"15.2-15.3":0.56708,"15.4":0.99142,"15.5":0.70788,"15.6":12.61076,"16.0":1.5585,"16.1":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0.10033,"18.0":2.02669},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 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.15677,"9":0,"10":0,"11":2.08131,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":48.06641},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"13.1":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 11ae8662421643..bda425350b6cad 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00316,"44":0,"45":0,"46":0,"47":0.00158,"48":0,"49":0,"50":0,"51":0,"52":0.00158,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00158,"66":0,"67":0,"68":0.00316,"69":0,"70":0,"71":0,"72":0.00158,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00158,"79":0,"80":0.00158,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00474,"92":0,"93":0.00158,"94":0.00158,"95":0.00158,"96":0.00158,"97":0.00158,"98":0.00158,"99":0.00632,"100":0.00632,"101":0.00474,"102":0.0158,"103":0.17064,"104":0.03634,"105":0.00158,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00158,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00158,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00474,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00158,"56":0,"57":0,"58":0.00158,"59":0,"60":0,"61":0,"62":0.00158,"63":0.00316,"64":0.00158,"65":0,"66":0,"67":0,"68":0.00158,"69":0.00632,"70":0.00158,"71":0,"72":0,"73":0,"74":0.00158,"75":0.00158,"76":0.00158,"77":0.00316,"78":0.00158,"79":0.00474,"80":0.00474,"81":0.0158,"83":0.00316,"84":0.00158,"85":0.01106,"86":0.00474,"87":0.00474,"88":0.00316,"89":0.00316,"90":0.00316,"91":0.00316,"92":0.00316,"93":0.00316,"94":0.00316,"95":0.00316,"96":0.00474,"97":0.00632,"98":0.00474,"99":0.00632,"100":0.00948,"101":0.01106,"102":0.0158,"103":0.27492,"104":0.65254,"105":0.00316,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0.00158,"15":0,"16":0.00158,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00158,"24":0.04266,"25":0.00158,"26":0.03318,"27":0.05056,"28":0.02528,"29":0.00474,"30":0.08532,"31":0.04266,"32":0.09796,"33":0.04108,"34":0.00158,"35":0.00948,"36":0.01106,"37":0.01106,"38":0.03318,"39":0.00474,"40":0,"41":0.00316,"42":0.06478,"43":0.00474,"44":0.00316,"45":0.00632,"46":0.04424,"47":0.01738,"48":0.00158,"49":0,"50":0.03792,"51":0.03002,"52":0,"53":0.00158,"54":0.03792,"55":0.03634,"56":0.01106,"57":0.04582,"58":0.12482,"60":0.85636,"62":0.00632,"63":0.94642,"64":0.2528,"65":0.00158,"66":0.00158,"67":0.00316,"68":0.00158,"69":0.00158,"70":0.00474,"71":0.00158,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00158,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00316,"86":0.00158,"87":0,"88":0.00474,"89":0.03634,"90":0.00632,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02528},B:{"12":0.00158,"13":0,"14":0,"15":0.00158,"16":0,"17":0,"18":0.00474,"79":0,"80":0,"81":0,"83":0,"84":0.00158,"85":0,"86":0,"87":0,"88":0,"89":0.00158,"90":0,"91":0,"92":0.00158,"93":0,"94":0,"95":0,"96":0,"97":0.00158,"98":0,"99":0.00158,"100":0.00158,"101":0.00316,"102":0.00316,"103":0.04108,"104":0.08532,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00158,"14":0.00474,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00158,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00316,"14.1":0.00632,"15.1":0.00158,"15.2-15.3":0.00158,"15.4":0.00316,"15.5":0.0079,"15.6":0.0079,"16.0":0},G:{"8":0.00171,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00086,"6.0-6.1":0,"7.0-7.1":0.00086,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01796,"10.0-10.2":0.0154,"10.3":0.08125,"11.0-11.2":0.0402,"11.3-11.4":0.01967,"12.0-12.1":0.03763,"12.2-12.5":0.8168,"13.0-13.1":0.06158,"13.2":0.01625,"13.3":0.11204,"13.4-13.7":0.22066,"14.0-14.4":1.04003,"14.5-14.8":1.03747,"15.0-15.1":0.71588,"15.2-15.3":0.71417,"15.4":0.61923,"15.5":1.57373,"15.6":1.3334,"16.0":0.07013},P:{"4":0.04024,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04024,"8.2":0,"9.2":0.02012,"10.1":0,"11.1-11.2":0.02012,"12.0":0.01006,"13.0":0.03018,"14.0":0.03018,"15.0":0.03018,"16.0":0.09054,"17.0":0.28169,"18.0":0.18108},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00223,"4.2-4.3":0.00167,"4.4":0,"4.4.3-4.4.4":0.05189},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00474,"5.5":0},J:{"7":0,"10":0.00842},N:{"10":0,"11":0},L:{"0":45.79114},S:{"2.5":0.00842},R:{_:"0"},M:{"0":0.26944},Q:{"10.4":0.00842},O:{"0":1.08618},H:{"0":33.78327}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00303,"44":0,"45":0,"46":0,"47":0.00151,"48":0,"49":0,"50":0,"51":0,"52":0.00151,"53":0,"54":0,"55":0,"56":0.00151,"57":0,"58":0.00151,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00151,"66":0,"67":0,"68":0.00454,"69":0,"70":0,"71":0,"72":0.00151,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00151,"79":0,"80":0.00151,"81":0,"82":0.00151,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00151,"90":0,"91":0.00303,"92":0,"93":0,"94":0.00151,"95":0.00151,"96":0.00151,"97":0.00151,"98":0.00151,"99":0.00606,"100":0.00454,"101":0.00303,"102":0.00757,"103":0.01817,"104":0.15443,"105":0.04542,"106":0.00303,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00151,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00151,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00303,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00151,"56":0,"57":0,"58":0.00151,"59":0,"60":0,"61":0,"62":0.00151,"63":0.00151,"64":0.00303,"65":0.00151,"66":0,"67":0,"68":0.00151,"69":0.00454,"70":0.00151,"71":0,"72":0,"73":0,"74":0.00151,"75":0.00151,"76":0.00151,"77":0.00303,"78":0.00151,"79":0.00454,"80":0.00454,"81":0.01363,"83":0.00303,"84":0.00454,"85":0.01211,"86":0.00606,"87":0.00606,"88":0.00303,"89":0.00151,"90":0.00303,"91":0.00151,"92":0.00303,"93":0.00151,"94":0.00303,"95":0.00454,"96":0.00454,"97":0.00454,"98":0.00454,"99":0.00454,"100":0.00606,"101":0.00606,"102":0.00757,"103":0.03331,"104":0.23467,"105":0.67979,"106":0.01211,"107":0.00151,"108":0,"109":0},F:{"9":0,"11":0,"12":0.00151,"15":0,"16":0.00151,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00151,"24":0.03634,"25":0.00151,"26":0.03482,"27":0.04542,"28":0.01968,"29":0.00757,"30":0.08478,"31":0.05299,"32":0.10598,"33":0.04239,"34":0.00303,"35":0.00757,"36":0.01211,"37":0.01211,"38":0.03936,"39":0.00454,"40":0,"41":0.00303,"42":0.06662,"43":0.00454,"44":0.00303,"45":0.00757,"46":0.04693,"47":0.01514,"48":0.00151,"49":0,"50":0.03936,"51":0.02271,"52":0,"53":0.00303,"54":0.03331,"55":0.03482,"56":0.00908,"57":0.04542,"58":0.11052,"60":0.7676,"62":0.00606,"63":0.77668,"64":0.52536,"65":0.01817,"66":0.00151,"67":0.00151,"68":0.00151,"69":0.00151,"70":0.00454,"71":0.00454,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00151,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00303,"86":0.00303,"87":0,"88":0.00303,"89":0.00151,"90":0.03936,"91":0.00151,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02877},B:{"12":0.00151,"13":0,"14":0,"15":0.00151,"16":0,"17":0,"18":0.00606,"79":0,"80":0,"81":0,"83":0,"84":0.00151,"85":0.00151,"86":0,"87":0,"88":0,"89":0.00151,"90":0,"91":0,"92":0.00151,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00151,"100":0.00151,"101":0.00303,"102":0.00151,"103":0.00606,"104":0.02574,"105":0.09387},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00151,"14":0.00303,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00151,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00303,"14.1":0.00454,"15.1":0.00151,"15.2-15.3":0.00151,"15.4":0.00151,"15.5":0.00454,"15.6":0.0106,"16.0":0.00303,"16.1":0},G:{"8":0.00166,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00083,"5.0-5.1":0.00166,"6.0-6.1":0,"7.0-7.1":0.0025,"8.1-8.4":0.00083,"9.0-9.2":0,"9.3":0.01915,"10.0-10.2":0.0025,"10.3":0.04995,"11.0-11.2":0.02581,"11.3-11.4":0.01082,"12.0-12.1":0.03247,"12.2-12.5":0.81917,"13.0-13.1":0.05411,"13.2":0.01748,"13.3":0.11738,"13.4-13.7":0.19564,"14.0-14.4":0.95653,"14.5-14.8":0.94737,"15.0-15.1":0.5944,"15.2-15.3":0.60772,"15.4":0.46953,"15.5":0.91657,"15.6":1.61503,"16.0":0.76256,"16.1":0.00916},P:{"4":0.03112,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04149,"8.2":0,"9.2":0.03112,"10.1":0,"11.1-11.2":0.02074,"12.0":0.01037,"13.0":0.03112,"14.0":0.02074,"15.0":0.02074,"16.0":0.0726,"17.0":0.11409,"18.0":0.35264},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00168,"4.2-4.3":0.00224,"4.4":0,"4.4.3-4.4.4":0.04819},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00454,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00849},O:{"0":1.06075},H:{"0":35.65488},L:{"0":44.10902},S:{"2.5":0.00849},R:{_:"0"},M:{"0":0.3055},Q:{"13.1":0}}; 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 1e608f0dcab178..205a32cb01c138 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00866,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00433,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00433,"90":0,"91":0.00433,"92":0,"93":0,"94":0,"95":0.00433,"96":0.00433,"97":0.00433,"98":0,"99":0.00866,"100":0.01732,"101":0.01299,"102":0.02598,"103":0.67548,"104":0.15155,"105":0.00433,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00433,"39":0,"40":0.00433,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01299,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00433,"66":0,"67":0,"68":0.00433,"69":0.00433,"70":0.00866,"71":0,"72":0.00433,"73":0.00433,"74":0.00433,"75":0.01299,"76":0.01732,"77":0.00433,"78":0,"79":0.04763,"80":0.00866,"81":0.01732,"83":0.01299,"84":0.00866,"85":0.00866,"86":0.00433,"87":0.01732,"88":0.01732,"89":0.00866,"90":0.00866,"91":0.15588,"92":0.03464,"93":0.00866,"94":0.02165,"95":0.00433,"96":0.04763,"97":0.02598,"98":0.02165,"99":0.02598,"100":0.04763,"101":0.04763,"102":0.11258,"103":3.47266,"104":9.23156,"105":0.04763,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00433,"62":0,"63":0.03464,"64":0.01732,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00433,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00433,"89":0.57156,"90":0.03897,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00433,"17":0,"18":0.01299,"79":0,"80":0,"81":0,"83":0,"84":0.00433,"85":0.00433,"86":0,"87":0.00433,"88":0,"89":0,"90":0,"91":0,"92":0.00866,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00433,"99":0.00433,"100":0.00866,"101":0.01299,"102":0.00866,"103":0.31176,"104":1.00456,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00433,"14":0.02165,"15":0.00433,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00433,"13.1":0.02165,"14.1":0.06062,"15.1":0.00866,"15.2-15.3":0.00433,"15.4":0.01732,"15.5":0.09526,"15.6":0.09959,"16.0":0.00866},G:{"8":0,"3.2":0,"4.0-4.1":0.00173,"4.2-4.3":0,"5.0-5.1":0.00259,"6.0-6.1":0,"7.0-7.1":0.03451,"8.1-8.4":0,"9.0-9.2":0.00086,"9.3":0.05867,"10.0-10.2":0,"10.3":0.02157,"11.0-11.2":0.00776,"11.3-11.4":0.00776,"12.0-12.1":0.00776,"12.2-12.5":0.44088,"13.0-13.1":0.00604,"13.2":0.00345,"13.3":0.03624,"13.4-13.7":0.04141,"14.0-14.4":0.19585,"14.5-14.8":0.47452,"15.0-15.1":0.18895,"15.2-15.3":0.30111,"15.4":0.44346,"15.5":1.67119,"15.6":4.56751,"16.0":0.1113},P:{"4":0.24229,"5.0-5.4":0.02019,"6.2-6.4":0.02019,"7.2-7.4":0.39372,"8.2":0.0101,"9.2":0.05048,"10.1":0,"11.1-11.2":0.17162,"12.0":0.03029,"13.0":0.09086,"14.0":0.16153,"15.0":0.08076,"16.0":0.30286,"17.0":1.16097,"18.0":0.98935},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00965,"4.2-4.3":0.0418,"4.4":0,"4.4.3-4.4.4":0.20578},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02165,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":67.61018},S:{"2.5":0.00567},R:{_:"0"},M:{"0":0.14742},Q:{"10.4":0},O:{"0":0.15876},H:{"0":0.33818}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00855,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00428,"90":0,"91":0.00428,"92":0,"93":0,"94":0.00428,"95":0.00428,"96":0.01283,"97":0.00428,"98":0.0171,"99":0.00428,"100":0,"101":0.00428,"102":0.00855,"103":0.0513,"104":0.56858,"105":0.2223,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00855,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00428,"68":0,"69":0.00428,"70":0.00428,"71":0,"72":0,"73":0.00428,"74":0.00428,"75":0.00428,"76":0.01283,"77":0.00428,"78":0,"79":0.04275,"80":0.00428,"81":0.02565,"83":0.00428,"84":0.00428,"85":0.00855,"86":0.00428,"87":0.0171,"88":0.00855,"89":0.00855,"90":0.00855,"91":0.08123,"92":0.02138,"93":0.00855,"94":0.00428,"95":0.00428,"96":0.04275,"97":0.04275,"98":0.0171,"99":0.02565,"100":0.0342,"101":0.03848,"102":0.05558,"103":0.16673,"104":2.99678,"105":9.32378,"106":0.18383,"107":0.01283,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00855,"62":0,"63":0.02565,"64":0.02993,"65":0.00428,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00428,"88":0,"89":0.0513,"90":0.55148,"91":0.0171,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00855,"79":0,"80":0,"81":0,"83":0,"84":0.00428,"85":0.00428,"86":0,"87":0,"88":0,"89":0,"90":0.00428,"91":0,"92":0.00855,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00428,"99":0.00428,"100":0.00428,"101":0.00428,"102":0.00428,"103":0.0171,"104":0.21803,"105":1.1799},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00428,"14":0.00855,"15":0.00428,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00428,"13.1":0.02565,"14.1":0.0513,"15.1":0.00855,"15.2-15.3":0.00428,"15.4":0.01283,"15.5":0.03848,"15.6":0.1368,"16.0":0.02565,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0.01376,"4.2-4.3":0,"5.0-5.1":0.00459,"6.0-6.1":0,"7.0-7.1":0.03669,"8.1-8.4":0.00367,"9.0-9.2":0,"9.3":0.05595,"10.0-10.2":0,"10.3":0.02843,"11.0-11.2":0.01009,"11.3-11.4":0.00734,"12.0-12.1":0.00459,"12.2-12.5":0.38247,"13.0-13.1":0.01009,"13.2":0.0055,"13.3":0.01834,"13.4-13.7":0.06237,"14.0-14.4":0.22655,"14.5-14.8":0.46043,"15.0-15.1":0.13116,"15.2-15.3":0.20178,"15.4":0.40907,"15.5":0.6668,"15.6":4.46029,"16.0":1.73257,"16.1":0.01834},P:{"4":0.23247,"5.0-5.4":0.02021,"6.2-6.4":0.01011,"7.2-7.4":0.38408,"8.2":0.04043,"9.2":0.03032,"10.1":0.01011,"11.1-11.2":0.1415,"12.0":0.03032,"13.0":0.08086,"14.0":0.12129,"15.0":0.07075,"16.0":0.22236,"17.0":0.45484,"18.0":1.90021},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00917,"4.2-4.3":0.03974,"4.4":0,"4.4.3-4.4.4":0.20789},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02138,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.1603},H:{"0":0.4065},L:{"0":67.45175},S:{"2.5":0},R:{_:"0"},M:{"0":0.12023},Q:{"13.1":0}}; 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 b13784b0d8a980..724a5fbb5fae00 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00465,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00929,"53":0,"54":0,"55":0.00465,"56":0.00929,"57":0,"58":0,"59":0,"60":0.00465,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00465,"67":0,"68":0.00465,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02323,"79":0.00465,"80":0.00465,"81":0.00929,"82":0,"83":0.00465,"84":0.00929,"85":0,"86":0,"87":0,"88":0.00929,"89":0.00465,"90":0,"91":0.04646,"92":0,"93":0,"94":0.01394,"95":0.00465,"96":0.00465,"97":0.00465,"98":0.00465,"99":0.00929,"100":0.00929,"101":0.01858,"102":0.06504,"103":1.31482,"104":0.26018,"105":0.00465,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00465,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.03252,"48":0.00465,"49":0.01394,"50":0,"51":0,"52":0.00929,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00465,"61":0,"62":0,"63":0,"64":0,"65":0.00465,"66":0.00929,"67":0.00929,"68":0,"69":0.00929,"70":0.02323,"71":0,"72":0.02788,"73":0.00465,"74":0.00465,"75":0.00465,"76":0.05111,"77":0.00929,"78":0.00465,"79":0.05575,"80":0.02323,"81":0.00929,"83":0.01394,"84":0.02788,"85":0.05111,"86":0.04646,"87":0.04646,"88":0.00929,"89":0.01394,"90":0.00929,"91":0.00929,"92":0.02323,"93":0.01858,"94":0.00929,"95":0.00465,"96":0.04181,"97":0.05111,"98":0.07434,"99":0.02788,"100":0.12544,"101":0.13938,"102":0.18119,"103":2.97344,"104":7.68448,"105":0.02788,"106":0.00465,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01394,"64":0.01394,"65":0,"66":0,"67":0,"68":0.00929,"69":0,"70":0.00465,"71":0.00465,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01858,"86":0,"87":0,"88":0.00929,"89":0.35774,"90":0.02323,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00465,"18":0.00465,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00465,"86":0.00465,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00465,"93":0,"94":0,"95":0.00465,"96":0.00465,"97":0.00929,"98":0.00465,"99":0.00465,"100":0.00465,"101":0.02323,"102":0.04181,"103":0.77124,"104":2.36017,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01394,"14":0.08363,"15":0.02323,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00465,"10.1":0.00465,"11.1":0.00929,"12.1":0.03252,"13.1":0.13938,"14.1":0.21836,"15.1":0.05111,"15.2-15.3":0.03717,"15.4":0.13009,"15.5":0.60398,"15.6":1.34734,"16.0":0.00929},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.00578,"8.1-8.4":0.01155,"9.0-9.2":0.05488,"9.3":0.10975,"10.0-10.2":0,"10.3":0.14152,"11.0-11.2":0.04332,"11.3-11.4":0.04621,"12.0-12.1":0.04044,"12.2-12.5":1.01666,"13.0-13.1":0.01444,"13.2":0.01444,"13.3":0.04332,"13.4-13.7":0.15308,"14.0-14.4":0.491,"14.5-14.8":1.45278,"15.0-15.1":0.37836,"15.2-15.3":0.66141,"15.4":0.91846,"15.5":6.63428,"15.6":16.40807,"16.0":0.21373},P:{"4":0.12534,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01045,"8.2":0,"9.2":0.01045,"10.1":0,"11.1-11.2":0.01045,"12.0":0.01045,"13.0":0.05223,"14.0":0.03134,"15.0":0.03134,"16.0":0.08356,"17.0":1.83838,"18.0":3.33207},I:{"0":0,"3":0,"4":0.05115,"2.1":0,"2.2":0.01967,"2.3":0,"4.1":0.0118,"4.2-4.3":0.03541,"4.4":0,"4.4.3-4.4.4":0.13771},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01289,"9":0.04511,"10":0.00644,"11":0.13533,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":39.5215},S:{"2.5":0},R:{_:"0"},M:{"0":0.57288},Q:{"10.4":0.02677},O:{"0":0.38013},H:{"0":0.41564}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01051,"53":0,"54":0,"55":0.01051,"56":0.01051,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00526,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03153,"79":0.00526,"80":0.01051,"81":0.01577,"82":0.00526,"83":0.01577,"84":0.00526,"85":0,"86":0,"87":0.00526,"88":0.00526,"89":0,"90":0,"91":0.04204,"92":0,"93":0,"94":0.00526,"95":0.00526,"96":0.00526,"97":0.00526,"98":0.00526,"99":0.00526,"100":0.00526,"101":0.00526,"102":0.02628,"103":0.08934,"104":1.17712,"105":0.43617,"106":0.00526,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00526,"42":0.00526,"43":0.00526,"44":0.00526,"45":0.00526,"46":0,"47":0.02628,"48":0.01051,"49":0.01577,"50":0,"51":0,"52":0.00526,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01051,"61":0,"62":0,"63":0.00526,"64":0,"65":0.00526,"66":0.00526,"67":0.01051,"68":0,"69":0.00526,"70":0.02102,"71":0,"72":0.0473,"73":0.01051,"74":0.00526,"75":0.00526,"76":0.0473,"77":0.00526,"78":0.01051,"79":0.02102,"80":0.02102,"81":0.01051,"83":0.05255,"84":0.1051,"85":0.12087,"86":0.13663,"87":0.1051,"88":0.01051,"89":0.02102,"90":0.00526,"91":0.02628,"92":0.02102,"93":0.03153,"94":0.01051,"95":0.01051,"96":0.03153,"97":0.02628,"98":0.03153,"99":0.02628,"100":0.20495,"101":0.15765,"102":0.13663,"103":0.48872,"104":2.68005,"105":11.34029,"106":0.21546,"107":0.01577,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00526,"64":0.02628,"65":0,"66":0,"67":0,"68":0.00526,"69":0,"70":0.00526,"71":0.00526,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00526,"86":0,"87":0,"88":0,"89":0.04204,"90":0.39413,"91":0.02102,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01051,"79":0,"80":0,"81":0,"83":0,"84":0.00526,"85":0.00526,"86":0.00526,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00526,"93":0,"94":0,"95":0,"96":0,"97":0.00526,"98":0.00526,"99":0.00526,"100":0.00526,"101":0.01577,"102":0.02628,"103":0.0473,"104":0.49923,"105":3.45254},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01577,"14":0.11036,"15":0.02628,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00526,"10.1":0.00526,"11.1":0.01051,"12.1":0.02628,"13.1":0.14714,"14.1":0.28903,"15.1":0.06306,"15.2-15.3":0.05255,"15.4":0.14189,"15.5":0.34158,"15.6":1.76568,"16.0":0.22597,"16.1":0.01051},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00592,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00592,"8.1-8.4":0.02072,"9.0-9.2":0.07694,"9.3":0.10062,"10.0-10.2":0,"10.3":0.11246,"11.0-11.2":0.03551,"11.3-11.4":0.03255,"12.0-12.1":0.04143,"12.2-12.5":0.79903,"13.0-13.1":0.0148,"13.2":0.02072,"13.3":0.03847,"13.4-13.7":0.15093,"14.0-14.4":0.46166,"14.5-14.8":1.36722,"15.0-15.1":0.29594,"15.2-15.3":0.47054,"15.4":0.58891,"15.5":1.87031,"15.6":17.25303,"16.0":5.1404,"16.1":0.05327},P:{"4":0.09291,"5.0-5.4":0.01032,"6.2-6.4":0,"7.2-7.4":0.01032,"8.2":0,"9.2":0.01032,"10.1":0,"11.1-11.2":0.01032,"12.0":0.01032,"13.0":0.04129,"14.0":0.03097,"15.0":0.02065,"16.0":0.05162,"17.0":0.17549,"18.0":4.1705},I:{"0":0,"3":0.01421,"4":0.04617,"2.1":0,"2.2":0.01066,"2.3":0,"4.1":0.01066,"4.2-4.3":0.03197,"4.4":0,"4.4.3-4.4.4":0.12787},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00643,"7":0,"8":0.02574,"9":0.03861,"10":0.01287,"11":0.23165,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.32266},H:{"0":0.34141},L:{"0":34.6494},S:{"2.5":0},R:{_:"0"},M:{"0":0.45552},Q:{"13.1":0.03796}}; 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 a44e190819459b..318829e12fa846 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.03505,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.01402,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00701,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.01402,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00701,"78":0.02804,"79":0.01402,"80":0.00701,"81":0.00701,"82":0.00701,"83":0.00701,"84":0,"85":0,"86":0,"87":0,"88":0.00701,"89":0,"90":0,"91":0.03505,"92":0,"93":0,"94":0,"95":0.46967,"96":0.02103,"97":0,"98":0,"99":0,"100":0.00701,"101":0.03505,"102":0.09113,"103":15.12057,"104":0.19628,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00701,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01402,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00701,"65":0,"66":0.07711,"67":0.00701,"68":0,"69":0.07711,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00701,"77":0,"78":0.01402,"79":0.02804,"80":0.00701,"81":0.00701,"83":0.04907,"84":0.0701,"85":2.83905,"86":0.09113,"87":0.09814,"88":0.00701,"89":0.02103,"90":0.00701,"91":0.85522,"92":0.00701,"93":0.00701,"94":0.00701,"95":0.00701,"96":0.03505,"97":0.02804,"98":0.03505,"99":0.03505,"100":0.04907,"101":0.13319,"102":0.35751,"103":5.57996,"104":14.54575,"105":0.02103,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00701,"64":0.00701,"65":0,"66":0,"67":0,"68":0.00701,"69":0.00701,"70":0.00701,"71":0.00701,"72":0.00701,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00701,"87":0,"88":0.04907,"89":0.61688,"90":0.04206,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00701,"16":0,"17":0.00701,"18":0.00701,"79":0,"80":0,"81":0,"83":0.00701,"84":0.00701,"85":0.00701,"86":0.00701,"87":0.00701,"88":0,"89":0,"90":0,"91":0,"92":0.00701,"93":0,"94":0,"95":0,"96":0,"97":0.00701,"98":0.00701,"99":0.00701,"100":0.00701,"101":0.02103,"102":0.02103,"103":0.77811,"104":2.13104,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01402,"14":0.09814,"15":0.02804,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00701,"10.1":0,"11.1":0.02103,"12.1":0.02804,"13.1":0.13319,"14.1":0.34349,"15.1":0.05608,"15.2-15.3":0.05608,"15.4":0.22432,"15.5":0.72904,"15.6":1.1917,"16.0":0.00701},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.00563,"9.0-9.2":0,"9.3":0.07879,"10.0-10.2":0.01688,"10.3":0.13787,"11.0-11.2":0.02251,"11.3-11.4":0.1013,"12.0-12.1":0.07034,"12.2-12.5":0.50366,"13.0-13.1":0.01126,"13.2":0.00563,"13.3":0.02814,"13.4-13.7":0.12943,"14.0-14.4":0.44457,"14.5-14.8":1.36749,"15.0-15.1":0.36298,"15.2-15.3":0.68656,"15.4":1.08893,"15.5":7.12445,"15.6":15.8021,"16.0":0.12381},P:{"4":0.06158,"5.0-5.4":0.01026,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01026,"12.0":0.01026,"13.0":0.01026,"14.0":0.01026,"15.0":0.01026,"16.0":0.02053,"17.0":0.8518,"18.0":1.35467},I:{"0":0,"3":0,"4":0.02245,"2.1":0,"2.2":0.03282,"2.3":0.00691,"4.1":0.00518,"4.2-4.3":0.01554,"4.4":0,"4.4.3-4.4.4":0.057},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00701,"9":0,"10":0,"11":0.10515,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":18.41805},S:{"2.5":0},R:{_:"0"},M:{"0":0.31694},Q:{"10.4":0},O:{"0":0.01495},H:{"0":0.16701}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00673,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0.00673,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02019,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.02019,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00673,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03365,"79":0.01346,"80":0.01346,"81":0.02019,"82":0.00673,"83":0.00673,"84":0.00673,"85":0,"86":0,"87":0.00673,"88":0,"89":0,"90":0,"91":0.03365,"92":0,"93":0,"94":0,"95":0.00673,"96":0.01346,"97":0,"98":0,"99":0,"100":0.00673,"101":0.01346,"102":0.02019,"103":0.06056,"104":0.96898,"105":0.31626,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00673,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00673,"64":0.00673,"65":0.00673,"66":0.07402,"67":0.00673,"68":0,"69":0.02692,"70":0,"71":0,"72":0,"73":0.01346,"74":0,"75":0,"76":0.00673,"77":0,"78":0.02019,"79":0.02019,"80":0.02019,"81":0.01346,"83":0.06056,"84":0.14131,"85":2.65123,"86":0.10094,"87":0.12785,"88":0.00673,"89":0.02692,"90":0.01346,"91":0.4172,"92":0.03365,"93":0.02019,"94":0.00673,"95":0.02019,"96":0.04037,"97":0.03365,"98":0.0471,"99":0.03365,"100":0.05383,"101":0.11439,"102":0.16823,"103":0.50468,"104":4.42095,"105":23.32944,"106":0.26243,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00673,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00673,"71":0.00673,"72":0.02019,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00673,"87":0,"88":0.02019,"89":0.06729,"90":0.76711,"91":0.02019,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00673,"18":0.01346,"79":0,"80":0,"81":0,"83":0.00673,"84":0.00673,"85":0.00673,"86":0.01346,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00673,"96":0,"97":0,"98":0,"99":0.00673,"100":0.00673,"101":0.00673,"102":0.01346,"103":0.03365,"104":0.53832,"105":3.66731},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00673,"13":0.01346,"14":0.13458,"15":0.04037,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00673,"10.1":0.00673,"11.1":0.02692,"12.1":0.02692,"13.1":0.1615,"14.1":0.53832,"15.1":0.08748,"15.2-15.3":0.09421,"15.4":0.34318,"15.5":0.47776,"15.6":2.18693,"16.0":0.26916,"16.1":0.00673},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.00342,"9.0-9.2":0,"9.3":0.04108,"10.0-10.2":0.01027,"10.3":0.10613,"11.0-11.2":0.05477,"11.3-11.4":0.09243,"12.0-12.1":0.09586,"12.2-12.5":0.45189,"13.0-13.1":0.01027,"13.2":0.03423,"13.3":0.03081,"13.4-13.7":0.1164,"14.0-14.4":0.46901,"14.5-14.8":1.48233,"15.0-15.1":0.31153,"15.2-15.3":0.50666,"15.4":0.76342,"15.5":2.22179,"15.6":20.47195,"16.0":6.25456,"16.1":0.04108},P:{"4":0.06087,"5.0-5.4":0.01014,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0.01014,"13.0":0.01014,"14.0":0.01014,"15.0":0.01014,"16.0":0.03043,"17.0":0.07101,"18.0":1.98835},I:{"0":0,"3":0,"4":0.00401,"2.1":0,"2.2":0.02003,"2.3":0.00601,"4.1":0.00401,"4.2-4.3":0.04807,"4.4":0,"4.4.3-4.4.4":0.03405},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00673,"9":0.00673,"10":0,"11":0.10766,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.01963},H:{"0":0.13935},L:{"0":17.20274},S:{"2.5":0},R:{_:"0"},M:{"0":0.22243},Q:{"13.1":0}}; 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 7cd2ba52685421..27638733707520 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00205,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00411,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.02876,"88":0,"89":0,"90":0,"91":0.00205,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00411,"100":0.00205,"101":0,"102":0.00411,"103":0.17048,"104":0.04313,"105":0.00205,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00205,"66":0,"67":0,"68":0,"69":0,"70":0.00205,"71":0,"72":0,"73":0,"74":0.00205,"75":0.00205,"76":0,"77":0,"78":0,"79":0.00411,"80":0,"81":0.00411,"83":0.00205,"84":0.00205,"85":0,"86":0.00411,"87":0.00411,"88":0.00411,"89":0.0267,"90":0,"91":0.00205,"92":0.00205,"93":0.00205,"94":0.00205,"95":0.00205,"96":0.00411,"97":0.00411,"98":0.00411,"99":0.00205,"100":0.00616,"101":0.00822,"102":0.02054,"103":0.82776,"104":2.38059,"105":0.01232,"106":0.00205,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.03081,"64":0.03286,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00205,"74":0,"75":0.00411,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00411,"86":0,"87":0,"88":0,"89":0.06984,"90":0.01027,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00205},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00205,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01027,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.05546,"104":0.16637,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00616,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00205,"13.1":0.00411,"14.1":0.00822,"15.1":0.00205,"15.2-15.3":0.00205,"15.4":0.00411,"15.5":0.01643,"15.6":0.0267,"16.0":0},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.00552,"8.1-8.4":0,"9.0-9.2":0.00061,"9.3":0.0233,"10.0-10.2":0.00123,"10.3":0.03679,"11.0-11.2":0.00736,"11.3-11.4":0.01042,"12.0-12.1":0.01226,"12.2-12.5":0.49539,"13.0-13.1":0.00552,"13.2":0.00429,"13.3":0.02391,"13.4-13.7":0.05763,"14.0-14.4":0.14286,"14.5-14.8":0.4255,"15.0-15.1":0.06683,"15.2-15.3":0.14408,"15.4":0.2103,"15.5":1.4402,"15.6":2.98279,"16.0":0.03311},P:{"4":0.11386,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05175,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01035,"12.0":0.01035,"13.0":0.0207,"14.0":0.0207,"15.0":0.0207,"16.0":0.0414,"17.0":0.25877,"18.0":0.23807},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00347,"4.2-4.3":0.00695,"4.4":0,"4.4.3-4.4.4":0.0886},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00205,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":87.26589},S:{"2.5":0},R:{_:"0"},M:{"0":0.03973},Q:{"10.4":0},O:{"0":0.64363},H:{"0":0.50402}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00206,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01442,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00206,"87":0.09888,"88":0,"89":0,"90":0,"91":0.00206,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00206,"100":0.00206,"101":0,"102":0.00206,"103":0.00618,"104":0.1442,"105":0.0515,"106":0.00206,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00206,"66":0,"67":0,"68":0,"69":0,"70":0.00206,"71":0,"72":0,"73":0,"74":0.00206,"75":0.00206,"76":0,"77":0,"78":0,"79":0.00412,"80":0,"81":0.00412,"83":0.00206,"84":0,"85":0,"86":0.00412,"87":0.00206,"88":0.00618,"89":0.08446,"90":0,"91":0.00206,"92":0.00206,"93":0.00206,"94":0.00206,"95":0.00206,"96":0.00412,"97":0.00412,"98":0.00206,"99":0.00206,"100":0.00618,"101":0.00824,"102":0.00824,"103":0.03502,"104":0.67156,"105":2.40608,"106":0.03296,"107":0.00206,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00412,"64":0.05768,"65":0.00206,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.01236,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00206,"86":0,"87":0,"88":0,"89":0.00412,"90":0.07416,"91":0.00206,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.03502,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00206,"104":0.03502,"105":0.17716},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01648,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00206,"13.1":0.00412,"14.1":0.00618,"15.1":0.00206,"15.2-15.3":0.00206,"15.4":0.00412,"15.5":0.00824,"15.6":0.03296,"16.0":0.00618,"16.1":0},G:{"8":0.00066,"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.00731,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0266,"10.0-10.2":0.00133,"10.3":0.04256,"11.0-11.2":0.01064,"11.3-11.4":0.00997,"12.0-12.1":0.01064,"12.2-12.5":0.48939,"13.0-13.1":0.00532,"13.2":0.00465,"13.3":0.01995,"13.4-13.7":0.05585,"14.0-14.4":0.14097,"14.5-14.8":0.39231,"15.0-15.1":0.0625,"15.2-15.3":0.11104,"15.4":0.15692,"15.5":0.51865,"15.6":3.91846,"16.0":0.53727,"16.1":0.00665},P:{"4":0.09458,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04204,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01051,"12.0":0.01051,"13.0":0.02102,"14.0":0.02102,"15.0":0.01051,"16.0":0.02102,"17.0":0.08407,"18.0":0.39934},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00405,"4.2-4.3":0.00607,"4.4":0,"4.4.3-4.4.4":0.09108},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00206,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.68284},H:{"0":0.51116},L:{"0":86.84922},S:{"2.5":0},R:{_:"0"},M:{"0":0.0397},Q:{"13.1":0}}; 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 3be6b68d19d24f..32a6a9a42c7381 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":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00217,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00217,"102":0,"103":0.00651,"104":0,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00217,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00217,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00217,"93":0,"94":0.0152,"95":0,"96":0.00868,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00651,"103":0.66216,"104":1.64996,"105":0.00651,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.35387,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01954,"64":0.00217,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00217,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00217},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0.00217,"81":0,"83":0,"84":0,"85":0,"86":0.00651,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00651,"101":0.01737,"102":0.00217,"103":0.14329,"104":0.37775,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01954,"14":0.28874,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.03474,"14.1":0.06513,"15.1":0,"15.2-15.3":0,"15.4":0.00651,"15.5":0.01086,"15.6":0.00868,"16.0":0},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.0301,"12.0-12.1":0.01505,"12.2-12.5":0.07464,"13.0-13.1":0,"13.2":0.01505,"13.3":0.07464,"13.4-13.7":0.0301,"14.0-14.4":1.40125,"14.5-14.8":1.72809,"15.0-15.1":0.99857,"15.2-15.3":0.0301,"15.4":0.2829,"15.5":0.74517,"15.6":0.59589,"16.0":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.88194,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.07015,"12.0":0.1804,"13.0":0.30066,"14.0":0.11024,"15.0":0.07015,"16.0":0.17038,"17.0":0.57126,"18.0":0.97214},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.05822},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00651,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":80.84151},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":2.65403},H:{"0":1.853}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.0114,"104":0.01711,"105":0,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.0057,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.0114,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.04562,"101":0,"102":0,"103":0,"104":0.31361,"105":1.4369,"106":0.02281,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.4305,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0057,"64":0.11689,"65":0.0057,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02281},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.0114,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.0114,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.0057,"102":0,"103":0.02281,"104":0.22238,"105":0.64718},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0.0057,"15.5":0.0114,"15.6":0.0057,"16.0":0,"16.1":0},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.06614,"12.0-12.1":0,"12.2-12.5":0.0222,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.06614,"14.0-14.4":0.35202,"14.5-14.8":1.38454,"15.0-15.1":0.13228,"15.2-15.3":0.04439,"15.4":0.32982,"15.5":0.41771,"15.6":1.60427,"16.0":0.0222,"16.1":0},P:{"4":0.10247,"5.0-5.4":0,"6.2-6.4":0.16395,"7.2-7.4":1.94691,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.06148,"12.0":0,"13.0":0.02049,"14.0":0,"15.0":0,"16.0":0.30741,"17.0":0.16395,"18.0":1.22963},I:{"0":0,"3":0,"4":0.1025,"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.3075},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01711,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":2.05891},H:{"0":2.57869},L:{"0":80.63689},S:{"2.5":0},R:{_:"0"},M:{"0":0.04289},Q:{"13.1":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 3ee7160a59af36..22165e369c18e5 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.08408,"103":0.25416,"104":0,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.93448,"104":2.20912,"105":0,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.08408,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0},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.52643,"15.5":52.94215,"15.6":6.35306,"16.0":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0.88979,"15.0":0,"16.0":0,"17.0":0,"18.0":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 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":35.55065},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":15.9237,"105":2.05239,"106":0,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":1.02892,"15.6":5.65087,"16.0":0,"16.1":0},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":17.87445,"15.5":4.87382,"15.6":32.4959,"16.0":1.6265,"16.1":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":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 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.51174,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":17.96173},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"13.1":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 ac3180c97c4e90..6267664fca7814 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00582,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00582,"51":0,"52":0.01746,"53":0,"54":0.00582,"55":0,"56":0,"57":0,"58":0,"59":0.01746,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00582,"66":0,"67":0,"68":0.00582,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.05239,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00582,"85":0,"86":0,"87":0,"88":0.00582,"89":0.00582,"90":0,"91":0.04657,"92":0,"93":0.00582,"94":0.05821,"95":0,"96":0.00582,"97":0,"98":0.00582,"99":0.01746,"100":0.00582,"101":0.02328,"102":0.08732,"103":1.45525,"104":0.26195,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01164,"35":0,"36":0,"37":0,"38":0.06403,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02328,"50":0,"51":0,"52":0,"53":0.01164,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00582,"60":0,"61":0.00582,"62":0,"63":0,"64":0,"65":0.01164,"66":0.05239,"67":0.00582,"68":0.00582,"69":0.00582,"70":0.00582,"71":0.00582,"72":0.00582,"73":0.00582,"74":0.00582,"75":0.00582,"76":0.03493,"77":0.01164,"78":0.00582,"79":0.09314,"80":0.01164,"81":0.01164,"83":0.01164,"84":0.00582,"85":0.01164,"86":0.00582,"87":0.05821,"88":0.00582,"89":0.01164,"90":0.04075,"91":0.01164,"92":0.05821,"93":0.09314,"94":0.01746,"95":0.01746,"96":0.04075,"97":0.05239,"98":0.05239,"99":0.09314,"100":0.08149,"101":0.1106,"102":0.20956,"103":5.80354,"104":12.96919,"105":0.04075,"106":0.00582,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01164,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.02911,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01164,"89":0.41329,"90":0.03493,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00582,"15":0.00582,"16":0,"17":0.00582,"18":0.00582,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00582,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00582,"93":0,"94":0,"95":0.00582,"96":0.00582,"97":0,"98":0,"99":0.00582,"100":0.00582,"101":0.05239,"102":0.01164,"103":0.93136,"104":2.84065,"105":0},E:{"4":0,"5":0,"6":0.00582,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00582,"13":0.03493,"14":0.14553,"15":0.05239,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00582,"10.1":0.01164,"11.1":0.03493,"12.1":0.04657,"13.1":0.27941,"14.1":0.50061,"15.1":0.10478,"15.2-15.3":0.07567,"15.4":0.26195,"15.5":1.08271,"15.6":2.2178,"16.0":0.01164},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00595,"6.0-6.1":0.01786,"7.0-7.1":0.01191,"8.1-8.4":0.04168,"9.0-9.2":0.03572,"9.3":0.24411,"10.0-10.2":0.00893,"10.3":0.27983,"11.0-11.2":0.05359,"11.3-11.4":0.15183,"12.0-12.1":0.03275,"12.2-12.5":1.32773,"13.0-13.1":0.01488,"13.2":0.00298,"13.3":0.08633,"13.4-13.7":0.21434,"14.0-14.4":0.44059,"14.5-14.8":1.49444,"15.0-15.1":0.34533,"15.2-15.3":0.60135,"15.4":0.84248,"15.5":5.70386,"15.6":17.63552,"16.0":0.16671},P:{"4":0.28452,"5.0-5.4":0.01054,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.01054,"11.1-11.2":0.03161,"12.0":0,"13.0":0.07376,"14.0":0.06323,"15.0":0.02108,"16.0":0.09484,"17.0":1.05378,"18.0":1.77035},I:{"0":0,"3":0,"4":0.0072,"2.1":0,"2.2":0.0048,"2.3":0.0048,"4.1":0.0072,"4.2-4.3":0.02159,"4.4":0,"4.4.3-4.4.4":0.09354},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01128,"9":0,"10":0,"11":0.16917,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":31.33372},S:{"2.5":0},R:{_:"0"},M:{"0":0.46805},Q:{"10.4":0.01254},O:{"0":0.0794},H:{"0":0.1543}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.0058,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01159,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.01159,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.01159,"67":0,"68":0.0058,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.04638,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.02319,"88":0.0058,"89":0,"90":0,"91":0.02899,"92":0,"93":0,"94":0,"95":0,"96":0.0058,"97":0,"98":0.0058,"99":0.01159,"100":0.0058,"101":0.01739,"102":0.02899,"103":0.08696,"104":1.29853,"105":0.42898,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.0058,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01159,"35":0,"36":0,"37":0,"38":0.06956,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02319,"50":0,"51":0.0058,"52":0,"53":0.01159,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.0058,"60":0,"61":0.0058,"62":0,"63":0,"64":0,"65":0.01159,"66":0.05797,"67":0.0058,"68":0.0058,"69":0.0058,"70":0,"71":0,"72":0.0058,"73":0.0058,"74":0.0058,"75":0.01159,"76":0.03478,"77":0.0058,"78":0.0058,"79":0.08116,"80":0.01159,"81":0.01159,"83":0.01159,"84":0.0058,"85":0.0058,"86":0.0058,"87":0.04638,"88":0.0058,"89":0.04058,"90":0.03478,"91":0.01159,"92":0.04638,"93":0.07536,"94":0.01159,"95":0.0058,"96":0.02899,"97":0.04058,"98":0.04058,"99":0.06956,"100":0.05217,"101":0.05797,"102":0.09855,"103":0.72463,"104":4.56224,"105":13.64034,"106":0.22608,"107":0.0058,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0058,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.02319,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.0058,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.0058,"89":0.04638,"90":0.3884,"91":0.01739,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.0058,"16":0,"17":0.0058,"18":0.0058,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01159,"90":0,"91":0,"92":0.0058,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.0058,"100":0,"101":0.01739,"102":0.01159,"103":0.02899,"104":0.63187,"105":3.12458},E:{"4":0,"5":0,"6":0.0058,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02899,"14":0.15072,"15":0.04638,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.0058,"10.1":0.01159,"11.1":0.03478,"12.1":0.04638,"13.1":0.26087,"14.1":0.48695,"15.1":0.08116,"15.2-15.3":0.06956,"15.4":0.1913,"15.5":0.46376,"15.6":2.7072,"16.0":0.21449,"16.1":0.01159},G:{"8":0.00304,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0152,"7.0-7.1":0.0152,"8.1-8.4":0.04865,"9.0-9.2":0.03649,"9.3":0.22501,"10.0-10.2":0.00912,"10.3":0.28583,"11.0-11.2":0.07906,"11.3-11.4":0.15204,"12.0-12.1":0.02737,"12.2-12.5":1.2467,"13.0-13.1":0.00912,"13.2":0.00304,"13.3":0.06081,"13.4-13.7":0.19765,"14.0-14.4":0.47131,"14.5-14.8":1.32879,"15.0-15.1":0.32232,"15.2-15.3":0.4409,"15.4":0.56861,"15.5":1.53556,"15.6":19.76164,"16.0":2.94038,"16.1":0.03953},P:{"4":0.26483,"5.0-5.4":0.01059,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.01059,"11.1-11.2":0.02119,"12.0":0,"13.0":0.07415,"14.0":0.05297,"15.0":0.02119,"16.0":0.09534,"17.0":0.13771,"18.0":2.68006},I:{"0":0,"3":0,"4":0.00711,"2.1":0,"2.2":0.00711,"2.3":0.00474,"4.1":0.00711,"4.2-4.3":0.02606,"4.4":0,"4.4.3-4.4.4":0.08528},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.02246,"9":0,"10":0,"11":0.15724,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.07565},H:{"0":0.19498},L:{"0":31.37407},S:{"2.5":0},R:{_:"0"},M:{"0":0.48335},Q:{"13.1":0.00841}}; 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 a08c2a75a6f923..b1382bb69121c0 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0067,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00335,"87":0,"88":0,"89":0,"90":0,"91":0.00335,"92":0,"93":0,"94":0,"95":0.00335,"96":0,"97":0,"98":0,"99":0,"100":0.00335,"101":0.00335,"102":0.01004,"103":0.17744,"104":0.03683,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00335,"27":0,"28":0,"29":0,"30":0.00335,"31":0,"32":0,"33":0,"34":0.00335,"35":0,"36":0,"37":0,"38":0.0067,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00335,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00335,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.01004,"63":0,"64":0.00335,"65":0,"66":0,"67":0,"68":0,"69":0.0067,"70":0.00335,"71":0,"72":0.0067,"73":0.00335,"74":0.00335,"75":0.0067,"76":0.00335,"77":0.00335,"78":0.00335,"79":0.03683,"80":0.01339,"81":0.01339,"83":0.0067,"84":0.01339,"85":0.01339,"86":0.01004,"87":0.0067,"88":0.01339,"89":0.01674,"90":0.00335,"91":0.01339,"92":0.05692,"93":0.02009,"94":0.0067,"95":0.01339,"96":0.01004,"97":0.01339,"98":0.01004,"99":0.01004,"100":0.01339,"101":0.02344,"102":0.07031,"103":1.80792,"104":5.25971,"105":0.04018,"106":0.00335,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0067,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00335,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00335,"60":0,"62":0,"63":0.13727,"64":0.14396,"65":0,"66":0,"67":0,"68":0,"69":0.00335,"70":0,"71":0.00335,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00335,"86":0,"87":0,"88":0.00335,"89":0.14731,"90":0.01674,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00335,"16":0.00335,"17":0,"18":0.0067,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00335,"93":0,"94":0.0067,"95":0,"96":0.00335,"97":0,"98":0.00335,"99":0.00335,"100":0.00335,"101":0.01339,"102":0.01004,"103":0.2578,"104":0.76334,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0067,"14":0.02009,"15":0.01004,_:"0","3.1":0,"3.2":0,"5.1":0.00335,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00335,"13.1":0.02344,"14.1":0.06361,"15.1":0.01339,"15.2-15.3":0.01339,"15.4":0.04352,"15.5":0.17075,"15.6":0.18414,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00759,"6.0-6.1":0,"7.0-7.1":0.06581,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05569,"10.0-10.2":0,"10.3":0.05316,"11.0-11.2":0.00759,"11.3-11.4":0.00506,"12.0-12.1":0.01772,"12.2-12.5":0.55941,"13.0-13.1":0.03038,"13.2":0.01013,"13.3":0.05316,"13.4-13.7":0.17466,"14.0-14.4":0.62269,"14.5-14.8":1.34663,"15.0-15.1":0.38728,"15.2-15.3":0.68344,"15.4":1.48332,"15.5":6.48255,"15.6":13.06634,"16.0":0.18984},P:{"4":0.24625,"5.0-5.4":0,"6.2-6.4":0.01026,"7.2-7.4":0.18469,"8.2":0,"9.2":0.04104,"10.1":0,"11.1-11.2":0.09234,"12.0":0.02052,"13.0":0.12313,"14.0":0.12313,"15.0":0.1026,"16.0":0.16417,"17.0":1.14917,"18.0":1.48777},I:{"0":0,"3":0,"4":0.00613,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00613,"4.2-4.3":0.0674,"4.4":0,"4.4.3-4.4.4":0.26043},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.78343,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":55.92585},S:{"2.5":0},R:{_:"0"},M:{"0":0.07982},Q:{"10.4":0},O:{"0":0.8315},H:{"0":1.13358}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0029,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.0029,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.0029,"103":0.0058,"104":0.09283,"105":0.02901,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.0029,"27":0,"28":0,"29":0,"30":0.0058,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0029,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0029,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.0029,"63":0,"64":0,"65":0.0029,"66":0,"67":0,"68":0.0029,"69":0.0029,"70":0.0029,"71":0,"72":0.0058,"73":0,"74":0.0029,"75":0.0058,"76":0.0029,"77":0.0029,"78":0.0029,"79":0.02321,"80":0,"81":0.01741,"83":0.0029,"84":0.0029,"85":0.0058,"86":0.0116,"87":0.0058,"88":0.0116,"89":0.01741,"90":0.0029,"91":0.01451,"92":0.05512,"93":0.01451,"94":0.0058,"95":0.01451,"96":0.0116,"97":0.0087,"98":0.0087,"99":0.0087,"100":0.01741,"101":0.01741,"102":0.04352,"103":0.11024,"104":0.98344,"105":4.38051,"106":0.05802,"107":0.0029,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0029,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.0029,"46":0.0029,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.02031,"64":0.13055,"65":0.0116,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.0029,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.0058,"90":0.08703,"91":0.0058,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.0029,"18":0.0058,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0029,"93":0,"94":0.0029,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.0058,"102":0.0029,"103":0.0087,"104":0.08703,"105":0.5889},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0029,"14":0.01741,"15":0.0058,_:"0","3.1":0,"3.2":0,"5.1":0.0087,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.0029,"12.1":0.0029,"13.1":0.02611,"14.1":0.04642,"15.1":0.0087,"15.2-15.3":0.0087,"15.4":0.03191,"15.5":0.06382,"15.6":0.24659,"16.0":0.02031,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00966,"6.0-6.1":0.00242,"7.0-7.1":0.05073,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06764,"10.0-10.2":0,"10.3":0.05556,"11.0-11.2":0.00966,"11.3-11.4":0.00483,"12.0-12.1":0.01449,"12.2-12.5":0.57976,"13.0-13.1":0.01449,"13.2":0.01208,"13.3":0.06281,"13.4-13.7":0.16185,"14.0-14.4":0.54836,"14.5-14.8":1.09672,"15.0-15.1":0.29713,"15.2-15.3":0.54595,"15.4":0.9856,"15.5":2.39636,"15.6":12.83696,"16.0":3.69359,"16.1":0.04107},P:{"4":0.20691,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.20691,"8.2":0,"9.2":0.02069,"10.1":0,"11.1-11.2":0.14483,"12.0":0.04138,"13.0":0.15518,"14.0":0.18621,"15.0":0.09311,"16.0":0.26898,"17.0":0.35174,"18.0":2.44149},I:{"0":0,"3":0,"4":0.00905,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00905,"4.2-4.3":0.04526,"4.4":0,"4.4.3-4.4.4":0.16595},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00292,"9":0,"10":0,"11":0.42643,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.67441},H:{"0":0.79978},L:{"0":61.011},S:{"2.5":0},R:{_:"0"},M:{"0":0.07099},Q:{"13.1":0}}; 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 ab49a2bdc70c9c..959e243cd06cbb 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:{"2":0.00417,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00417,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00417,"73":0.02502,"74":0,"75":0,"76":0,"77":0,"78":0.00417,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00417,"89":0,"90":0.02919,"91":0.00417,"92":0,"93":0,"94":0,"95":0.00417,"96":0,"97":0.01668,"98":0.02085,"99":0.00417,"100":0.00417,"101":0.00834,"102":0.01668,"103":0.5004,"104":0.10008,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00417,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00417,"48":0,"49":0.00834,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00417,"65":0,"66":0,"67":0,"68":0.00834,"69":0.00417,"70":0.00417,"71":0,"72":0,"73":0.00834,"74":0.00417,"75":0.01251,"76":0.14595,"77":0.00417,"78":0.00417,"79":0.0417,"80":0.00417,"81":0.02502,"83":0.02085,"84":0.00834,"85":0.01251,"86":0.01251,"87":0.02085,"88":0.00417,"89":0.01668,"90":0.00417,"91":0.01668,"92":0.03336,"93":0.02085,"94":0.01251,"95":0.01251,"96":0.02502,"97":0.0417,"98":0.02502,"99":0.03336,"100":0.02919,"101":0.06672,"102":0.07506,"103":2.94819,"104":7.88964,"105":0.02502,"106":0.00834,"107":0.00417,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00834,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00834,"64":0.00417,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01251,"89":0.64218,"90":0.0417,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.02502,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00417,"16":0,"17":0.00417,"18":0.00417,"79":0,"80":0,"81":0,"83":0,"84":0.00417,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00834,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00417,"100":0.00417,"101":0.01251,"102":0.01251,"103":0.48789,"104":1.26768,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01668,"14":0.03753,"15":0.01251,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00417,"12.1":0.00417,"13.1":0.06255,"14.1":0.17514,"15.1":0.01251,"15.2-15.3":0.02502,"15.4":0.06672,"15.5":0.23769,"15.6":0.42117,"16.0":0.01251},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00268,"6.0-6.1":0.02142,"7.0-7.1":0.05086,"8.1-8.4":0.00134,"9.0-9.2":0,"9.3":0.07496,"10.0-10.2":0,"10.3":0.06023,"11.0-11.2":0.03079,"11.3-11.4":0.00268,"12.0-12.1":0.00669,"12.2-12.5":0.27306,"13.0-13.1":0.01472,"13.2":0.00268,"13.3":0.01606,"13.4-13.7":0.1807,"14.0-14.4":0.20881,"14.5-14.8":0.65587,"15.0-15.1":0.19275,"15.2-15.3":0.34935,"15.4":0.775,"15.5":2.73457,"15.6":7.59604,"16.0":0.12716},P:{"4":0.22489,"5.0-5.4":0.01022,"6.2-6.4":0.01022,"7.2-7.4":0.43957,"8.2":0,"9.2":0.02044,"10.1":0.01022,"11.1-11.2":0.16356,"12.0":0.01022,"13.0":0.07156,"14.0":0.10222,"15.0":0.08178,"16.0":0.28623,"17.0":1.48226,"18.0":1.56404},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00935,"4.2-4.3":0.0187,"4.4":0,"4.4.3-4.4.4":0.17454},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06672,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":61.78012},S:{"2.5":0},R:{_:"0"},M:{"0":0.26235},Q:{"10.4":0},O:{"0":0.12243},H:{"0":0.22078}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00418,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.02506,"74":0,"75":0,"76":0,"77":0,"78":0.00418,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00418,"89":0,"90":0.00418,"91":0.00418,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00418,"98":0.02924,"99":0,"100":0.00418,"101":0.00418,"102":0.00418,"103":0.02089,"104":0.46782,"105":0.15873,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0.02089,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00418,"48":0,"49":0.00835,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00835,"69":0,"70":0.00418,"71":0,"72":0,"73":0.00835,"74":0.00418,"75":0.01253,"76":0.03759,"77":0.00418,"78":0.00418,"79":0.04595,"80":0.02924,"81":0.02924,"83":0.00835,"84":0.00418,"85":0.00835,"86":0.02924,"87":0.02924,"88":0.00418,"89":0.00835,"90":0.00835,"91":0.02924,"92":0.02924,"93":0.03342,"94":0.00835,"95":0.00835,"96":0.02506,"97":0.05012,"98":0.03342,"99":0.03342,"100":0.03342,"101":0.05012,"102":0.03759,"103":0.2548,"104":2.21381,"105":8.4626,"106":0.15037,"107":0.00418,"108":0.00418,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00418,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00418,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00835,"64":0.01671,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.07936,"90":0.64326,"91":0.01671,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00418,"17":0.00418,"18":0.00418,"79":0,"80":0,"81":0,"83":0,"84":0.00418,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00418,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00418,"101":0.00835,"102":0.00835,"103":0.01671,"104":0.29239,"105":1.54967},E:{"4":0,"5":0.02089,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00418,"13":0.00418,"14":0.02924,"15":0.00835,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00418,"10.1":0,"11.1":0.00418,"12.1":0.00418,"13.1":0.04595,"14.1":0.15455,"15.1":0.01671,"15.2-15.3":0.01671,"15.4":0.04595,"15.5":0.12113,"15.6":0.52213,"16.0":0.06683,"16.1":0.00835},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00557,"6.0-6.1":0.01253,"7.0-7.1":0.04596,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07381,"10.0-10.2":0,"10.3":0.09888,"11.0-11.2":0.01671,"11.3-11.4":0.01114,"12.0-12.1":0.01532,"12.2-12.5":0.26042,"13.0-13.1":0.02925,"13.2":0.00279,"13.3":0.01393,"13.4-13.7":0.10723,"14.0-14.4":0.21168,"14.5-14.8":0.63365,"15.0-15.1":0.14066,"15.2-15.3":0.2451,"15.4":0.38994,"15.5":0.84533,"15.6":8.01741,"16.0":2.33685,"16.1":0.02089},P:{"4":0.22433,"5.0-5.4":0.04079,"6.2-6.4":0,"7.2-7.4":0.46906,"8.2":0,"9.2":0.0102,"10.1":0,"11.1-11.2":0.15295,"12.0":0.03059,"13.0":0.05098,"14.0":0.08158,"15.0":0.06118,"16.0":0.21414,"17.0":0.56083,"18.0":2.51865},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.03167,"4.4":0,"4.4.3-4.4.4":0.17946},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06683,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00582},O:{"0":0.06988},H:{"0":0.33077},L:{"0":61.9561},S:{"2.5":0},R:{_:"0"},M:{"0":0.31444},Q:{"13.1":0}}; 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 42a99513e23b47..4970475999503a 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00547,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00547,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00547,"85":0,"86":0,"87":0,"88":0.00547,"89":0,"90":0.01642,"91":0.00547,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.01095,"98":0,"99":0.00547,"100":0.00547,"101":0.00547,"102":0.01642,"103":0.49266,"104":0.10401,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00547,"35":0,"36":0,"37":0,"38":0.0219,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01095,"50":0,"51":0,"52":0,"53":0.00547,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.02737,"67":0.00547,"68":0.01095,"69":0,"70":0.00547,"71":0.00547,"72":0.00547,"73":0,"74":0.01095,"75":0.00547,"76":0,"77":0.00547,"78":0.00547,"79":0.14232,"80":0.01642,"81":0.03284,"83":0.00547,"84":0.00547,"85":0.01095,"86":0.02737,"87":0.09306,"88":0.01095,"89":0.01095,"90":0.01095,"91":0.08758,"92":0.04927,"93":0.0219,"94":0.01642,"95":0.02737,"96":0.06021,"97":0.05474,"98":0.03832,"99":0.04927,"100":0.08211,"101":0.07116,"102":0.14232,"103":5.46305,"104":17.36353,"105":0.05474,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00547,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01095,"64":0.01095,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00547,"86":0.00547,"87":0,"88":0.01095,"89":1.36303,"90":0.07116,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00547,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00547,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00547,"99":0,"100":0.00547,"101":0.01095,"102":0.0219,"103":0.39413,"104":1.19881,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01095,"14":0.0219,"15":0.00547,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00547,"13.1":0.0219,"14.1":0.04379,"15.1":0.01095,"15.2-15.3":0.01642,"15.4":0.02737,"15.5":0.10401,"15.6":0.15875,"16.0":0.00547},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00317,"6.0-6.1":0.00317,"7.0-7.1":0.00211,"8.1-8.4":0.00106,"9.0-9.2":0.00106,"9.3":0.01638,"10.0-10.2":0,"10.3":0.01532,"11.0-11.2":0.00317,"11.3-11.4":0.00423,"12.0-12.1":0.01373,"12.2-12.5":0.15795,"13.0-13.1":0.00423,"13.2":0.00211,"13.3":0.02113,"13.4-13.7":0.06445,"14.0-14.4":0.11357,"14.5-14.8":0.31959,"15.0-15.1":0.09297,"15.2-15.3":0.159,"15.4":0.28895,"15.5":1.30635,"15.6":2.637,"16.0":0.04807},P:{"4":0.20152,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.08061,"8.2":0,"9.2":0.02015,"10.1":0,"11.1-11.2":0.0403,"12.0":0.01008,"13.0":0.03023,"14.0":0.05038,"15.0":0.03023,"16.0":0.11084,"17.0":0.41312,"18.0":0.39297},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00399,"4.2-4.3":0.01064,"4.4":0,"4.4.3-4.4.4":0.12632},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03284,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":63.35241},S:{"2.5":0},R:{_:"0"},M:{"0":0.07694},Q:{"10.4":0},O:{"0":0.02263},H:{"0":0.15426}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00568,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00568,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00568,"69":0,"70":0,"71":0,"72":0,"73":0.00568,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00568,"85":0,"86":0,"87":0,"88":0.00568,"89":0,"90":0.00568,"91":0.00568,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.01136,"98":0,"99":0,"100":0.00568,"101":0.00568,"102":0.00568,"103":0.02272,"104":0.44312,"105":0.14771,"106":0.00568,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01704,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01136,"50":0,"51":0.00568,"52":0,"53":0.00568,"54":0,"55":0,"56":0,"57":0,"58":0.00568,"59":0,"60":0,"61":0,"62":0.00568,"63":0,"64":0,"65":0,"66":0.02841,"67":0,"68":0.01136,"69":0,"70":0.00568,"71":0,"72":0.00568,"73":0,"74":0.01136,"75":0.00568,"76":0.00568,"77":0.00568,"78":0.00568,"79":0.1193,"80":0.01704,"81":0.03409,"83":0.01136,"84":0.00568,"85":0.01136,"86":0.01704,"87":0.06817,"88":0.01136,"89":0.01136,"90":0.01136,"91":0.05681,"92":0.05681,"93":0.02841,"94":0.01704,"95":0.02272,"96":0.06817,"97":0.05113,"98":0.03409,"99":0.04545,"100":0.06817,"101":0.05681,"102":0.08522,"103":0.30109,"104":4.81749,"105":19.98576,"106":0.36927,"107":0.00568,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00568,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00568,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00568,"64":0.01136,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00568,"86":0,"87":0,"88":0,"89":0.17043,"90":1.27823,"91":0.03977,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00568,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00568,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00568,"101":0.01136,"102":0.02272,"103":0.02272,"104":0.24428,"105":1.48842},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01136,"14":0.02272,"15":0.00568,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00568,"13.1":0.01704,"14.1":0.04545,"15.1":0.01136,"15.2-15.3":0.01136,"15.4":0.02272,"15.5":0.06249,"15.6":0.19884,"16.0":0.04545,"16.1":0},G:{"8":0.00109,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00327,"6.0-6.1":0.00218,"7.0-7.1":0.00218,"8.1-8.4":0,"9.0-9.2":0.00109,"9.3":0.01525,"10.0-10.2":0,"10.3":0.0158,"11.0-11.2":0.00381,"11.3-11.4":0.00381,"12.0-12.1":0.00545,"12.2-12.5":0.20158,"13.0-13.1":0.00436,"13.2":0.00381,"13.3":0.0207,"13.4-13.7":0.0474,"14.0-14.4":0.10678,"14.5-14.8":0.31326,"15.0-15.1":0.073,"15.2-15.3":0.12422,"15.4":0.19177,"15.5":0.48161,"15.6":2.75728,"16.0":0.94197,"16.1":0.00926},P:{"4":0.19726,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.08877,"8.2":0,"9.2":0.01973,"10.1":0,"11.1-11.2":0.05918,"12.0":0.00986,"13.0":0.02959,"14.0":0.04931,"15.0":0.02959,"16.0":0.0789,"17.0":0.13808,"18.0":0.62136},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00282,"4.2-4.3":0.00989,"4.4":0,"4.4.3-4.4.4":0.11865},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03977,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.01728},H:{"0":0.1472},L:{"0":60.72108},S:{"2.5":0},R:{_:"0"},M:{"0":0.08638},Q:{"13.1":0}}; 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 9bc651ffbffeb0..287b6a3872ed75 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.24518,"49":0,"50":0,"51":0,"52":0.00463,"53":0,"54":0,"55":0,"56":0.00463,"57":0,"58":0.00925,"59":0.02313,"60":0.01388,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.16191,"69":0,"70":0,"71":0.00463,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.04626,"79":0,"80":0,"81":0.00463,"82":0.01388,"83":0,"84":0.0185,"85":0,"86":0,"87":0,"88":0.00463,"89":0,"90":0,"91":0.31919,"92":0,"93":0.01388,"94":0.00463,"95":0,"96":0,"97":0.00463,"98":0.03238,"99":0.00463,"100":0.00925,"101":0.03701,"102":0.05089,"103":1.73938,"104":0.30532,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00463,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00463,"64":0.00463,"65":0,"66":0,"67":0.0185,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00463,"75":0,"76":0,"77":0.00463,"78":0,"79":0.00463,"80":0,"81":0.00463,"83":0,"84":0.00925,"85":0.00463,"86":0,"87":0.09715,"88":0,"89":0,"90":0.00463,"91":0.00463,"92":0.00925,"93":0.00925,"94":0.00463,"95":0.00463,"96":0.02313,"97":0.02313,"98":0.00463,"99":0.05089,"100":0.0185,"101":0.02776,"102":0.34232,"103":2.76635,"104":5.83801,"105":0.00925,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00463,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00463,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00463,"89":0.25443,"90":0.02313,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.2313,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00925,"79":0,"80":0,"81":0,"83":0,"84":0.00463,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00925,"91":0.02776,"92":0.01388,"93":0.02313,"94":0,"95":0,"96":0,"97":0.01388,"98":0,"99":0,"100":0.00463,"101":0.01388,"102":0.02776,"103":0.41634,"104":2.14184,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00463,"13":0.01388,"14":0.14803,"15":0.06014,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00925,"10.1":0.00925,"11.1":0.02776,"12.1":0.04626,"13.1":0.17116,"14.1":0.41634,"15.1":0.09715,"15.2-15.3":0.05089,"15.4":0.30994,"15.5":0.62451,"15.6":1.36004,"16.0":0.03238},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01069,"6.0-6.1":0,"7.0-7.1":0.00802,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.35012,"10.0-10.2":0.00267,"10.3":0.09622,"11.0-11.2":0.00535,"11.3-11.4":0.06949,"12.0-12.1":0.02673,"12.2-12.5":1.45662,"13.0-13.1":0.01069,"13.2":0.00535,"13.3":0.04009,"13.4-13.7":0.14165,"14.0-14.4":0.79379,"14.5-14.8":2.31189,"15.0-15.1":0.62541,"15.2-15.3":0.78845,"15.4":0.99692,"15.5":7.24035,"15.6":11.58883,"16.0":0.14967},P:{"4":0.10328,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.07229,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.10328,"12.0":0.01033,"13.0":0.07229,"14.0":0.05164,"15.0":0.02066,"16.0":0.1859,"17.0":1.49753,"18.0":2.90211},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01164,"4.4":0,"4.4.3-4.4.4":0.19789},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.13878,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":44.52937},S:{"2.5":0},R:{_:"0"},M:{"0":0.32781},Q:{"10.4":0},O:{"0":0.33319},H:{"0":0.47825}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.26299,"49":0.00496,"50":0,"51":0,"52":0.00992,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00992,"59":0,"60":0.01489,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.04962,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.06451,"79":0,"80":0,"81":0,"82":0.784,"83":0,"84":0.00496,"85":0,"86":0,"87":0,"88":0.00992,"89":0.00496,"90":0,"91":0.40192,"92":0.00496,"93":0.00992,"94":0,"95":0.00496,"96":0,"97":0.00496,"98":0.02977,"99":0.00992,"100":0.00992,"101":0.00992,"102":0.02977,"103":0.09924,"104":2.28252,"105":0.73438,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.04466,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00496,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.01489,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00496,"80":0,"81":0.00496,"83":0,"84":0,"85":0,"86":0,"87":0.02481,"88":0,"89":0,"90":0,"91":0.00992,"92":0.00992,"93":0.00496,"94":0.00496,"95":0.01489,"96":0.02481,"97":0.00992,"98":0.00992,"99":0.06451,"100":0.01489,"101":0.04466,"102":0.06947,"103":0.50612,"104":1.87564,"105":8.06821,"106":0.1042,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00992,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.07443,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00496,"87":0,"88":0,"89":0.01489,"90":0.2084,"91":0.00496,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00496,"79":0,"80":0,"81":0,"83":0,"84":0.01489,"85":0.00496,"86":0,"87":0,"88":0,"89":0,"90":0.00496,"91":0.01489,"92":0.00992,"93":0.06947,"94":0,"95":0,"96":0,"97":0.04962,"98":0.00496,"99":0.00496,"100":0.00496,"101":0.00496,"102":0.01489,"103":0.04962,"104":0.34238,"105":1.86571},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00496,"13":0.02481,"14":0.19848,"15":0.04962,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.02977,"12.1":0.04466,"13.1":0.25802,"14.1":0.40688,"15.1":0.05458,"15.2-15.3":0.0397,"15.4":0.10916,"15.5":0.36223,"15.6":1.93022,"16.0":0.19352,"16.1":0.01489},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00675,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.83256,"10.0-10.2":0,"10.3":0.06525,"11.0-11.2":0.00675,"11.3-11.4":0.027,"12.0-12.1":0.027,"12.2-12.5":1.35009,"13.0-13.1":0.0045,"13.2":0.00675,"13.3":0.04725,"13.4-13.7":0.10126,"14.0-14.4":0.56929,"14.5-14.8":1.68986,"15.0-15.1":0.46353,"15.2-15.3":0.65704,"15.4":0.56479,"15.5":1.77312,"15.6":12.19806,"16.0":1.74837,"16.1":0.027},P:{"4":0.01046,"5.0-5.4":0,"6.2-6.4":0.02092,"7.2-7.4":0.10461,"8.2":0,"9.2":0,"10.1":0.01046,"11.1-11.2":0.05231,"12.0":0.02092,"13.0":0.07323,"14.0":0.05231,"15.0":0.03138,"16.0":0.05231,"17.0":0.35569,"18.0":4.82269},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00689,"4.4":0,"4.4.3-4.4.4":0.14739},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.15878,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.17129},H:{"0":0.93962},L:{"0":43.7349},S:{"2.5":0},R:{_:"0"},M:{"0":0.85646},Q:{"13.1":0}}; 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 866aa658f41efe..87ae5dc205b7be 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00271,"73":0,"74":0,"75":0,"76":0,"77":0.00813,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00271,"85":0.00271,"86":0,"87":0,"88":0.00271,"89":0.00813,"90":0,"91":0.00542,"92":0.00813,"93":0.00271,"94":0.00813,"95":0.00542,"96":0.00813,"97":0.00813,"98":0.02439,"99":0.01355,"100":0.01897,"101":0.02439,"102":0.03794,"103":0.24661,"104":0.00542,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00271,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00813,"41":0,"42":0,"43":0.00271,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00271,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00271,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.0271,"64":0,"65":0.00271,"66":0,"67":0.00271,"68":0.00271,"69":0.01355,"70":0.01355,"71":0,"72":0,"73":0,"74":0.01084,"75":0,"76":0,"77":0,"78":0,"79":0.00542,"80":0.00271,"81":0.02439,"83":0.00271,"84":0,"85":0,"86":0.00271,"87":0.01355,"88":0.05962,"89":0.00542,"90":0.00813,"91":0.00542,"92":0.01355,"93":0.00542,"94":0.02981,"95":0.00542,"96":0.01897,"97":0.00271,"98":0.00542,"99":0.01084,"100":0.01626,"101":0.02168,"102":0.0271,"103":1.20324,"104":0.52845,"105":0,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00542,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00271,"62":0,"63":0.02439,"64":0.00542,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00271,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.02981,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00271,"13":0.00542,"14":0.00271,"15":0.00813,"16":0.00542,"17":0.00271,"18":0.0271,"79":0,"80":0,"81":0,"83":0,"84":0.00542,"85":0.00271,"86":0,"87":0,"88":0,"89":0.00271,"90":0.00271,"91":0,"92":0.00271,"93":0.00542,"94":0,"95":0.00271,"96":0.00271,"97":0.00271,"98":0.01084,"99":0.00542,"100":0.00813,"101":0.01355,"102":0.01084,"103":0.52845,"104":0.15989,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00271,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00271,"13.1":0.00813,"14.1":0.00813,"15.1":0,"15.2-15.3":0,"15.4":0.00271,"15.5":0.01626,"15.6":0.01084,"16.0":0},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.00679,"7.0-7.1":0.00136,"8.1-8.4":0,"9.0-9.2":0.00045,"9.3":0.01358,"10.0-10.2":0.00385,"10.3":0.01968,"11.0-11.2":0.00294,"11.3-11.4":0.02919,"12.0-12.1":0.01335,"12.2-12.5":0.1353,"13.0-13.1":0.09819,"13.2":0.00792,"13.3":0.01991,"13.4-13.7":0.06901,"14.0-14.4":0.19141,"14.5-14.8":0.18191,"15.0-15.1":0.10091,"15.2-15.3":0.12806,"15.4":0.2473,"15.5":0.63758,"15.6":0.3516,"16.0":0.00113},P:{"4":0.1227,"5.0-5.4":0.01022,"6.2-6.4":0,"7.2-7.4":0.47035,"8.2":0,"9.2":0.07157,"10.1":0,"11.1-11.2":0.46012,"12.0":0.0409,"13.0":0.2045,"14.0":0.46012,"15.0":0.21472,"16.0":0.70552,"17.0":1.84049,"18.0":0.1227},I:{"0":0,"3":0,"4":0.00286,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0043,"4.2-4.3":0.00716,"4.4":0,"4.4.3-4.4.4":0.09736},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04878,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":86.41889},S:{"2.5":0.03645},R:{_:"0"},M:{"0":0.16767},Q:{"10.4":0},O:{"0":0.2187},H:{"0":0.77989}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00366,"48":0.00366,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.01099,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00366,"68":0,"69":0,"70":0.00366,"71":0,"72":0.00366,"73":0,"74":0,"75":0,"76":0,"77":0.00732,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00366,"88":0.00366,"89":0.00732,"90":0,"91":0.00366,"92":0.00732,"93":0.00366,"94":0.00732,"95":0.00366,"96":0.00366,"97":0.01831,"98":0.01465,"99":0.01099,"100":0.00732,"101":0.01831,"102":0.01831,"103":0.04761,"104":0.47606,"105":0.09521,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00366,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.02563,"41":0,"42":0,"43":0.0293,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00732,"50":0.00366,"51":0,"52":0,"53":0,"54":0,"55":0.00732,"56":0.00366,"57":0,"58":0,"59":0,"60":0.00366,"61":0,"62":0,"63":0.00366,"64":0.00732,"65":0.00366,"66":0.00366,"67":0.00366,"68":0.01099,"69":0.01465,"70":0.03296,"71":0.00366,"72":0.00732,"73":0,"74":0.01099,"75":0,"76":0.00366,"77":0.00366,"78":0.00366,"79":0.00732,"80":0.01099,"81":0.02197,"83":0.01099,"84":0.00732,"85":0,"86":0.00732,"87":0.01099,"88":0.06225,"89":0.00732,"90":0.01465,"91":0.01831,"92":0.06225,"93":0.01099,"94":0.01099,"95":0.00366,"96":0.01465,"97":0.00732,"98":0.01831,"99":0.00732,"100":0.01465,"101":0.01465,"102":0.07324,"103":0.31859,"104":1.16818,"105":3.39467,"106":0.03662,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00366,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00366,"57":0,"58":0,"60":0.00366,"62":0,"63":0.04028,"64":0.06958,"65":0.01099,"66":0,"67":0.00366,"68":0,"69":0.00732,"70":0,"71":0.00366,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00366,"86":0.00366,"87":0,"88":0.01099,"89":0.00732,"90":0.13549,"91":0.00366,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.01099,"13":0.00732,"14":0.00366,"15":0.01099,"16":0.01465,"17":0.01099,"18":0.04028,"79":0,"80":0.00732,"81":0,"83":0,"84":0.02563,"85":0.00732,"86":0,"87":0,"88":0,"89":0.01099,"90":0.02197,"91":0.00366,"92":0.02197,"93":0.00366,"94":0,"95":0,"96":0.00366,"97":0.00366,"98":0.01099,"99":0.01099,"100":0.01831,"101":0.04028,"102":0.01831,"103":0.05859,"104":0.37719,"105":1.25973},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00366,"14":0.01099,"15":0.00732,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01831,"14.1":0.01831,"15.1":0.00732,"15.2-15.3":0,"15.4":0.00366,"15.5":0.03662,"15.6":0.04761,"16.0":0.00366,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01242,"5.0-5.1":0.00093,"6.0-6.1":0,"7.0-7.1":0.00683,"8.1-8.4":0.00248,"9.0-9.2":0.00901,"9.3":0.00777,"10.0-10.2":0.0028,"10.3":0.02889,"11.0-11.2":0.01367,"11.3-11.4":0.02236,"12.0-12.1":0.00901,"12.2-12.5":0.17456,"13.0-13.1":0.07144,"13.2":0.00031,"13.3":0.0177,"13.4-13.7":0.22395,"14.0-14.4":0.18232,"14.5-14.8":0.16183,"15.0-15.1":0.0733,"15.2-15.3":0.18295,"15.4":0.10126,"15.5":0.4131,"15.6":1.18931,"16.0":0.15375,"16.1":0.00031},P:{"4":0.23499,"5.0-5.4":0,"6.2-6.4":0.01022,"7.2-7.4":0.69477,"8.2":0,"9.2":0.03065,"10.1":0,"11.1-11.2":0.31673,"12.0":0.01022,"13.0":0.14304,"14.0":0.25543,"15.0":0.20434,"16.0":0.48021,"17.0":0.73564,"18.0":1.11367},I:{"0":0,"3":0,"4":0.0065,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00867,"4.2-4.3":0.0325,"4.4":0,"4.4.3-4.4.4":0.26431},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00381,"10":0.00381,"11":0.0876,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":2.26267},H:{"0":1.4761},L:{"0":75.75572},S:{"2.5":0.35493},R:{_:"0"},M:{"0":0.1838},Q:{"13.1":0.01901}}; 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 707d1032e8f218..1844fd74d0c856 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00486,"53":0,"54":0,"55":0,"56":0.03405,"57":0,"58":0,"59":0.00973,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00486,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00486,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00486,"89":0,"90":0,"91":0.00486,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00486,"99":0.00973,"100":0.01459,"101":0.00486,"102":0.01459,"103":0.38912,"104":0.09242,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00973,"50":0,"51":0,"52":0.00486,"53":0,"54":0,"55":0.00486,"56":0,"57":0,"58":0.00486,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00486,"66":0.03405,"67":0.00486,"68":0.00486,"69":0.00486,"70":0.00486,"71":0.00486,"72":0.00486,"73":0.00486,"74":0.01459,"75":0.00973,"76":0.01459,"77":0.00486,"78":0.03405,"79":0.04378,"80":0.00973,"81":0.01946,"83":0.02918,"84":0.01459,"85":0.01459,"86":0.01946,"87":0.03891,"88":0.01459,"89":0.02432,"90":0.01459,"91":0.03891,"92":0.09728,"93":0.04378,"94":0.01946,"95":0.02918,"96":0.04378,"97":0.04378,"98":0.03891,"99":0.0535,"100":0.0681,"101":0.07782,"102":0.15078,"103":4.31923,"104":12.44211,"105":0.04864,"106":0.00486,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01946,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00486,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00486,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00486,"56":0,"57":0,"58":0,"60":0.00486,"62":0,"63":0.03891,"64":0.02918,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00486,"86":0,"87":0,"88":0.00486,"89":0.46208,"90":0.02432,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00486,"13":0,"14":0,"15":0,"16":0,"17":0.00486,"18":0.00486,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00486,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00486,"99":0.00486,"100":0.00486,"101":0.00486,"102":0.00973,"103":0.43776,"104":1.37651,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00486,"14":0.02918,"15":0.00486,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00973,"12.1":0.00973,"13.1":0.02432,"14.1":0.0535,"15.1":0.01459,"15.2-15.3":0.00973,"15.4":0.04378,"15.5":0.15078,"15.6":0.22861,"16.0":0.00486},G:{"8":0.00148,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00074,"5.0-5.1":0.01113,"6.0-6.1":0.00445,"7.0-7.1":0.02003,"8.1-8.4":0.00742,"9.0-9.2":0.00965,"9.3":0.12242,"10.0-10.2":0.0089,"10.3":0.06752,"11.0-11.2":0.01855,"11.3-11.4":0.07048,"12.0-12.1":0.023,"12.2-12.5":0.54161,"13.0-13.1":0.01335,"13.2":0.00816,"13.3":0.03264,"13.4-13.7":0.10016,"14.0-14.4":0.24187,"14.5-14.8":0.46964,"15.0-15.1":0.16026,"15.2-15.3":0.22109,"15.4":0.44219,"15.5":1.56844,"15.6":3.19475,"16.0":0.05787},P:{"4":0.3287,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01027,"8.2":0,"9.2":0.01027,"10.1":0,"11.1-11.2":0.02054,"12.0":0.01027,"13.0":0.02054,"14.0":0.02054,"15.0":0.02054,"16.0":0.04109,"17.0":0.35952,"18.0":0.35952},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00423,"4.2-4.3":0.01268,"4.4":0,"4.4.3-4.4.4":0.18173},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.92902,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":65.3992},S:{"2.5":0},R:{_:"0"},M:{"0":0.09245},Q:{"10.4":0},O:{"0":0.6985},H:{"0":0.62239}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00465,"53":0,"54":0,"55":0,"56":0.0698,"57":0,"58":0,"59":0.00931,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00465,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00465,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00465,"89":0,"90":0,"91":0.00465,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00465,"100":0.00465,"101":0.00465,"102":0.00931,"103":0.01861,"104":0.40946,"105":0.12563,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00465,"50":0,"51":0,"52":0.00465,"53":0.00465,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00465,"66":0.03257,"67":0.00465,"68":0.00465,"69":0.00465,"70":0.00465,"71":0.00465,"72":0.00465,"73":0.00465,"74":0.01396,"75":0.00931,"76":0.00931,"77":0.00465,"78":0.04188,"79":0.04188,"80":0.00465,"81":0.02327,"83":0.02792,"84":0.00931,"85":0.01396,"86":0.02327,"87":0.02792,"88":0.01861,"89":0.01396,"90":0.01396,"91":0.03257,"92":0.08841,"93":0.02327,"94":0.01396,"95":0.01861,"96":0.03257,"97":0.02792,"98":0.03257,"99":0.03722,"100":0.05584,"101":0.05584,"102":0.08375,"103":0.29779,"104":3.46183,"105":10.83218,"106":0.15355,"107":0.00931,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01861,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00465,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00465,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00465,"62":0,"63":0.01396,"64":0.04653,"65":0.00465,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00465,"86":0,"87":0,"88":0,"89":0.06049,"90":0.47461,"91":0.01396,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00465,"13":0,"14":0,"15":0,"16":0,"17":0.00465,"18":0.00465,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00465,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00465,"102":0.00465,"103":0.01396,"104":0.31175,"105":1.36798},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00465,"14":0.02792,"15":0.00465,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00931,"12.1":0.00465,"13.1":0.02792,"14.1":0.05584,"15.1":0.01396,"15.2-15.3":0.00931,"15.4":0.03722,"15.5":0.07445,"15.6":0.3071,"16.0":0.03257,"16.1":0.00465},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01048,"6.0-6.1":0.00242,"7.0-7.1":0.02337,"8.1-8.4":0.00322,"9.0-9.2":0.00725,"9.3":0.13296,"10.0-10.2":0.00725,"10.3":0.06446,"11.0-11.2":0.01531,"11.3-11.4":0.07252,"12.0-12.1":0.01692,"12.2-12.5":0.52054,"13.0-13.1":0.01289,"13.2":0.01209,"13.3":0.03143,"13.4-13.7":0.09267,"14.0-14.4":0.22965,"14.5-14.8":0.4174,"15.0-15.1":0.14343,"15.2-15.3":0.1813,"15.4":0.31748,"15.5":0.65349,"15.6":3.57528,"16.0":1.27073,"16.1":0.0145},P:{"4":0.30217,"5.0-5.4":0.01042,"6.2-6.4":0,"7.2-7.4":0.01042,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02084,"12.0":0.01042,"13.0":0.01042,"14.0":0.02084,"15.0":0.01042,"16.0":0.04168,"17.0":0.1042,"18.0":0.67729},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00814,"4.2-4.3":0.02034,"4.4":0,"4.4.3-4.4.4":0.16271},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00467,"9":0,"10":0,"11":1.33074,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.63629},H:{"0":0.63784},L:{"0":66.8542},S:{"2.5":0},R:{_:"0"},M:{"0":0.0909},Q:{"13.1":0}}; 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 162f484dad4140..181a619da22545 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00276,"51":0,"52":0.00829,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00276,"69":0,"70":0,"71":0,"72":0.00276,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00276,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00276,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00553,"92":0,"93":0,"94":0.00276,"95":0.00276,"96":0,"97":0,"98":0.00553,"99":0.00553,"100":0.00553,"101":0.00276,"102":0.00829,"103":0.22388,"104":0.05804,"105":0.00276,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00276,"41":0,"42":0.00276,"43":0.00276,"44":0,"45":0,"46":0.00276,"47":0,"48":0,"49":0.00276,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00553,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00276,"64":0.00829,"65":0.00276,"66":0,"67":0.00276,"68":0.00276,"69":0.00276,"70":0.00276,"71":0.00276,"72":0.00553,"73":0.00553,"74":0.01382,"75":0.00276,"76":0.00276,"77":0.00553,"78":0.00276,"79":0.00553,"80":0.00829,"81":0.01935,"83":0.01106,"84":0.01935,"85":0.0995,"86":0.01935,"87":0.01935,"88":0.00553,"89":0.00829,"90":0.00553,"91":0.00553,"92":0.00829,"93":0.00829,"94":0.00553,"95":0.01382,"96":0.01382,"97":0.01382,"98":0.01382,"99":0.01382,"100":0.01658,"101":0.02211,"102":0.04975,"103":1.24933,"104":3.68165,"105":0.01935,"106":0.00829,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00829,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00276,"62":0,"63":0.0691,"64":0.07186,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00276,"71":0.00276,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00276,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00553,"86":0,"87":0,"88":0.00276,"89":0.14096,"90":0.02764,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00276,"13":0,"14":0.00276,"15":0.00276,"16":0.00276,"17":0,"18":0.00553,"79":0,"80":0,"81":0,"83":0,"84":0.00276,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00276,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00276,"100":0,"101":0.00276,"102":0.00276,"103":0.07463,"104":0.19072,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00276,"14":0.00553,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00553,"14.1":0.01658,"15.1":0.00276,"15.2-15.3":0.00276,"15.4":0.00553,"15.5":0.02211,"15.6":0.03317,"16.0":0},G:{"8":0,"3.2":0.00053,"4.0-4.1":0,"4.2-4.3":0.00106,"5.0-5.1":0.00638,"6.0-6.1":0,"7.0-7.1":0.0697,"8.1-8.4":0.00266,"9.0-9.2":0.00532,"9.3":0.1543,"10.0-10.2":0.00426,"10.3":0.07236,"11.0-11.2":0.00905,"11.3-11.4":0.00905,"12.0-12.1":0.01117,"12.2-12.5":0.41448,"13.0-13.1":0.00638,"13.2":0.00638,"13.3":0.02128,"13.4-13.7":0.07289,"14.0-14.4":0.17239,"14.5-14.8":0.33999,"15.0-15.1":0.11333,"15.2-15.3":0.17452,"15.4":0.23145,"15.5":1.19235,"15.6":2.17188,"16.0":0.05693},P:{"4":0.19248,"5.0-5.4":0.01013,"6.2-6.4":0.02026,"7.2-7.4":0.05065,"8.2":0,"9.2":0.02026,"10.1":0,"11.1-11.2":0.04052,"12.0":0.01013,"13.0":0.06078,"14.0":0.04052,"15.0":0.03039,"16.0":0.1013,"17.0":0.61795,"18.0":0.62808},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00433,"4.2-4.3":0.00866,"4.4":0,"4.4.3-4.4.4":0.09742},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00276,"9":0,"10":0,"11":0.02764,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":79.86656},S:{"2.5":0.12301},R:{_:"0"},M:{"0":0.08683},Q:{"10.4":0},O:{"0":2.95229},H:{"0":1.32901}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.0027,"48":0,"49":0,"50":0,"51":0,"52":0.00541,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0027,"69":0,"70":0,"71":0,"72":0.0027,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00541,"79":0.0027,"80":0.00541,"81":0.0027,"82":0.0027,"83":0.0027,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.0027,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00541,"99":0.0027,"100":0.0027,"101":0.0027,"102":0.0027,"103":0.00811,"104":0.20273,"105":0.07568,"106":0.0027,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.0027,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00541,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00541,"57":0,"58":0,"59":0,"60":0,"61":0.0027,"62":0,"63":0.0027,"64":0.00811,"65":0.0027,"66":0,"67":0.0027,"68":0.0027,"69":0.00541,"70":0.0027,"71":0.0027,"72":0.00541,"73":0.00541,"74":0.01892,"75":0.00541,"76":0.0027,"77":0.00541,"78":0.00541,"79":0.00811,"80":0.00811,"81":0.01892,"83":0.02973,"84":0.04595,"85":0.13515,"86":0.05676,"87":0.04325,"88":0.00541,"89":0.00811,"90":0.0027,"91":0.00541,"92":0.00811,"93":0.00541,"94":0.00541,"95":0.01352,"96":0.01622,"97":0.01081,"98":0.01622,"99":0.00811,"100":0.01081,"101":0.01352,"102":0.02162,"103":0.08109,"104":0.91632,"105":3.81123,"106":0.08109,"107":0.00541,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0027,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00811,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.0027,"62":0,"63":0.01892,"64":0.12704,"65":0.01081,"66":0,"67":0,"68":0.0027,"69":0.0027,"70":0.0027,"71":0.00541,"72":0.0027,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.0027,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0027,"86":0.0027,"87":0,"88":0,"89":0.00541,"90":0.15137,"91":0.01352,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.0027,"13":0,"14":0,"15":0.0027,"16":0,"17":0,"18":0.00811,"79":0,"80":0,"81":0,"83":0,"84":0.00541,"85":0.0027,"86":0.0027,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0027,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.0027,"104":0.04055,"105":0.21354},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0027,"14":0.00811,"15":0.0027,_:"0","3.1":0,"3.2":0,"5.1":0.0027,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00811,"14.1":0.01081,"15.1":0.0027,"15.2-15.3":0.0027,"15.4":0.00541,"15.5":0.01081,"15.6":0.03514,"16.0":0.00541,"16.1":0},G:{"8":0,"3.2":0.00051,"4.0-4.1":0,"4.2-4.3":0.00202,"5.0-5.1":0.00658,"6.0-6.1":0,"7.0-7.1":0.07334,"8.1-8.4":0.00253,"9.0-9.2":0.00303,"9.3":0.14163,"10.0-10.2":0.00455,"10.3":0.04502,"11.0-11.2":0.0091,"11.3-11.4":0.0086,"12.0-12.1":0.01012,"12.2-12.5":0.36115,"13.0-13.1":0.00506,"13.2":0.00556,"13.3":0.01669,"13.4-13.7":0.05766,"14.0-14.4":0.16236,"14.5-14.8":0.25998,"15.0-15.1":0.08548,"15.2-15.3":0.12089,"15.4":0.15326,"15.5":0.47445,"15.6":2.21189,"16.0":0.67727,"16.1":0.01315},P:{"4":0.19237,"5.0-5.4":0.01012,"6.2-6.4":0.03037,"7.2-7.4":0.05062,"8.2":0,"9.2":0.02025,"10.1":0,"11.1-11.2":0.02025,"12.0":0.01012,"13.0":0.0405,"14.0":0.03037,"15.0":0.02025,"16.0":0.06075,"17.0":0.18224,"18.0":0.95171},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00295,"4.2-4.3":0.00983,"4.4":0,"4.4.3-4.4.4":0.07965},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0027,"9":0.0027,"10":0,"11":0.03784,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":3.10852},H:{"0":1.56128},L:{"0":80.05531},S:{"2.5":0.10216},R:{_:"0"},M:{"0":0.08027},Q:{"13.1":0}}; 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 28a4db698e683c..892fcef046ed26 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00347,"52":0.03119,"53":0,"54":0,"55":0,"56":0.00347,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00347,"69":0,"70":0,"71":0,"72":0.00347,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0104,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00347,"85":0,"86":0.00347,"87":0.00347,"88":0.00693,"89":0.00347,"90":0,"91":0.02773,"92":0.00347,"93":0.01386,"94":0.0208,"95":0.00693,"96":0.00693,"97":0.00693,"98":0.0104,"99":0.0104,"100":0.01386,"101":0.0208,"102":0.06932,"103":1.3656,"104":0.25995,"105":0.00347,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0208,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00347,"61":0,"62":0,"63":0.00347,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00347,"70":0.00347,"71":0,"72":0,"73":0,"74":0.00347,"75":0.00347,"76":0.00347,"77":0,"78":0.00347,"79":0.07972,"80":0.00347,"81":0.0104,"83":0.00347,"84":0.0104,"85":0.00347,"86":0.00693,"87":0.0104,"88":0.00693,"89":0.00693,"90":0.00347,"91":0.0104,"92":0.0104,"93":0.00693,"94":0.0104,"95":0.03466,"96":0.01733,"97":0.01386,"98":0.01386,"99":0.03466,"100":0.02426,"101":0.02426,"102":0.06239,"103":1.58396,"104":4.21119,"105":0.0104,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00347,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01733,"64":0.01386,"65":0,"66":0,"67":0.00347,"68":0,"69":0,"70":0,"71":0.00693,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00347,"79":0.00347,"80":0.00347,"81":0,"82":0.00347,"83":0.00347,"84":0.00693,"85":0.01386,"86":0.00693,"87":0.00693,"88":0.02426,"89":1.75726,"90":0.12131,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00347,"15":0.00347,"16":0,"17":0.00347,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00347,"93":0,"94":0,"95":0,"96":0.00347,"97":0,"98":0.00347,"99":0.00347,"100":0.00347,"101":0.0104,"102":0.0104,"103":0.28075,"104":0.73826,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00347,"14":0.0104,"15":0.00693,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00347,"13.1":0.0104,"14.1":0.0208,"15.1":0.0104,"15.2-15.3":0.00693,"15.4":0.01733,"15.5":0.04852,"15.6":0.08318,"16.0":0.00347},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.0016,"7.0-7.1":0.0016,"8.1-8.4":0.0016,"9.0-9.2":0,"9.3":0.01998,"10.0-10.2":0.0016,"10.3":0.01039,"11.0-11.2":0,"11.3-11.4":0.0024,"12.0-12.1":0.004,"12.2-12.5":0.08949,"13.0-13.1":0.01678,"13.2":0.0024,"13.3":0.01358,"13.4-13.7":0.06472,"14.0-14.4":0.14543,"14.5-14.8":0.35798,"15.0-15.1":0.08949,"15.2-15.3":0.19177,"15.4":0.30284,"15.5":1.94649,"15.6":4.60654,"16.0":0.11267},P:{"4":0.15312,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01021,"8.2":0,"9.2":0.03062,"10.1":0,"11.1-11.2":0.06125,"12.0":0.01021,"13.0":0.04083,"14.0":0.06125,"15.0":0.03062,"16.0":0.1225,"17.0":1.15351,"18.0":1.521},I:{"0":0,"3":0,"4":0.00303,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02345,"4.2-4.3":0.02193,"4.4":0,"4.4.3-4.4.4":0.0416},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0208,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":71.67328},S:{"2.5":0.00653},R:{_:"0"},M:{"0":0.53579},Q:{"10.4":0},O:{"0":0.02614},H:{"0":2.12797}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02952,"53":0,"54":0,"55":0.00738,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00369,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01107,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00369,"85":0,"86":0,"87":0.00369,"88":0.00369,"89":0.00369,"90":0,"91":0.02214,"92":0.00369,"93":0.00738,"94":0.01107,"95":0.00738,"96":0.00369,"97":0.00738,"98":0.00738,"99":0.01107,"100":0.01107,"101":0.01107,"102":0.02583,"103":0.08487,"104":1.28043,"105":0.50184,"106":0.00369,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.02952,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01845,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00369,"61":0,"62":0,"63":0.00369,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00369,"71":0,"72":0,"73":0,"74":0.00369,"75":0,"76":0.00369,"77":0,"78":0.00369,"79":0.08856,"80":0.00369,"81":0.00738,"83":0.00369,"84":0.00738,"85":0.00738,"86":0.00738,"87":0.01107,"88":0.00369,"89":0.00738,"90":0.00369,"91":0.00738,"92":0.00738,"93":0.00738,"94":0.00738,"95":0.01476,"96":0.01107,"97":0.01845,"98":0.01476,"99":0.03321,"100":0.01845,"101":0.01476,"102":0.0369,"103":0.11808,"104":1.27305,"105":5.37264,"106":0.09963,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00369,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00369,"64":0.02214,"65":0.00369,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.01107,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00369,"79":0.00369,"80":0.00369,"81":0,"82":0.00369,"83":0.00369,"84":0.00369,"85":0.02214,"86":0.00369,"87":0.00369,"88":0.00738,"89":0.18081,"90":2.05533,"91":0.07011,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00369,"16":0,"17":0,"18":0.00369,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00369,"93":0,"94":0,"95":0,"96":0.00369,"97":0,"98":0.00369,"99":0,"100":0.00369,"101":0.00369,"102":0.00369,"103":0.01476,"104":0.17343,"105":0.91143},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01107,"15":0.00369,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00369,"13.1":0.01476,"14.1":0.02214,"15.1":0.00738,"15.2-15.3":0.00738,"15.4":0.01476,"15.5":0.03321,"15.6":0.1107,"16.0":0.02952,"16.1":0.00369},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.00777,"7.0-7.1":0.00173,"8.1-8.4":0.00173,"9.0-9.2":0,"9.3":0.01209,"10.0-10.2":0,"10.3":0.01209,"11.0-11.2":0.00173,"11.3-11.4":0.00259,"12.0-12.1":0.00346,"12.2-12.5":0.07775,"13.0-13.1":0.00691,"13.2":0.00259,"13.3":0.00864,"13.4-13.7":0.04319,"14.0-14.4":0.13476,"14.5-14.8":0.32739,"15.0-15.1":0.07515,"15.2-15.3":0.15722,"15.4":0.19868,"15.5":0.63319,"15.6":4.92473,"16.0":1.82356,"16.1":0.02851},P:{"4":0.17121,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03021,"8.2":0,"9.2":0.03021,"10.1":0,"11.1-11.2":0.03021,"12.0":0.01007,"13.0":0.04029,"14.0":0.04029,"15.0":0.03021,"16.0":0.10071,"17.0":0.18128,"18.0":2.41712},I:{"0":0,"3":0,"4":0.00202,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02286,"4.2-4.3":0.01882,"4.4":0,"4.4.3-4.4.4":0.0363},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01845,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.01893},H:{"0":2.13268},L:{"0":69.48948},S:{"2.5":0.00631},R:{_:"0"},M:{"0":0.5048},Q:{"13.1":0}}; 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 5df8b7d1b3c923..4505bb172d5981 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00405,"52":0.0081,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00405,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0081,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.01215,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.07697,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.01215,"102":0.11748,"103":1.00465,"104":0.12963,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0081,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00405,"57":0,"58":0.00405,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.06887,"77":0,"78":0,"79":0.01215,"80":0,"81":0,"83":0,"84":0,"85":0.00405,"86":0,"87":0.00405,"88":0,"89":0,"90":0,"91":0.05671,"92":0.00405,"93":0,"94":0,"95":0,"96":0.06077,"97":0,"98":0,"99":0.05671,"100":0,"101":0.01215,"102":0.32813,"103":1.86346,"104":4.13202,"105":0,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.00405,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.14584,"90":0.01215,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.02836,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00405,"102":0,"103":0.1904,"104":1.11403,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.02026,"15":0.00405,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.04051,"14.1":0.21875,"15.1":0.04456,"15.2-15.3":0.34434,"15.4":0.04456,"15.5":0.57119,"15.6":2.53593,"16.0":0.14179},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.02906,"10.0-10.2":0,"10.3":0.04844,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":6.56842,"13.0-13.1":0.04844,"13.2":0,"13.3":0.14047,"13.4-13.7":0.10657,"14.0-14.4":0.1986,"14.5-14.8":0.86223,"15.0-15.1":0.78472,"15.2-15.3":3.46344,"15.4":0.61518,"15.5":15.08895,"15.6":20.01042,"16.0":0.47955},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0.0114,"15.0":0.0114,"16.0":0.03421,"17.0":0.43329,"18.0":0.33067},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.05026,"4.2-4.3":1.4073,"4.4":0,"4.4.3-4.4.4":0.05026},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.32408,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":34.33771},S:{"2.5":0},R:{_:"0"},M:{"0":0.32125},Q:{"10.4":0},O:{"0":0},H:{"0":0.04506}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01199,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.04198,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.07796,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01199,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.006,"99":0.006,"100":0,"101":0,"102":0.31784,"103":0.09595,"104":1.10345,"105":1.43328,"106":0.006,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.006,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.07196,"77":0.006,"78":0,"79":0.04198,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01199,"92":0,"93":0,"94":0.61169,"95":0.09595,"96":0.14993,"97":0,"98":0,"99":0.006,"100":0.02999,"101":0.01199,"102":0.04198,"103":0.5997,"104":2.55472,"105":10.96851,"106":0.07796,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.04198,"90":0.34783,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.02399,"104":0.17991,"105":2.81859},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.1919,"15":0.01199,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01199,"12.1":0,"13.1":0.07196,"14.1":0.07796,"15.1":0.12594,"15.2-15.3":1.6012,"15.4":0.55772,"15.5":0.89955,"15.6":4.27586,"16.0":0.98951,"16.1":0.37781},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.15188,"10.3":0.03334,"11.0-11.2":0,"11.3-11.4":0.02223,"12.0-12.1":0,"12.2-12.5":1.18171,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.34822,"14.0-14.4":0.14077,"14.5-14.8":0.47787,"15.0-15.1":0.56678,"15.2-15.3":3.49698,"15.4":0.95574,"15.5":6.38273,"15.6":16.5662,"16.0":6.10119,"16.1":0.06668},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0.08649,"18.0":1.07037},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":1.72649,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04198,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":27.26881},S:{"2.5":0},R:{_:"0"},M:{"0":0.16813},Q:{"13.1":0}}; 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 00a76f6ad2fd42..677666ba403cc1 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":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":5.78089,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":69.336,"105":0,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0},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":0,"16.0":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":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 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":0},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":13.33},H:{"0":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":9.7867,"105":62.88893,"106":0,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":1.3981,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0},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":24.28755,"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":0,"16.0":0,"16.1":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":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 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0},H:{"0":1.55144},L:{"0":0},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"13.1":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 ae0ecb868c2a8f..4ce55ca1432d99 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.22365,"39":0,"40":0,"41":0,"42":0,"43":0.23382,"44":1.05726,"45":0.24398,"46":0,"47":0,"48":0,"49":0.00508,"50":0,"51":0,"52":0.01017,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00508,"69":0,"70":0,"71":0,"72":0,"73":0.01525,"74":0,"75":0,"76":0,"77":0,"78":0.00508,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.01525,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.07116,"91":0.01017,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00508,"98":0,"99":0,"100":0.00508,"101":0.01017,"102":0.0305,"103":0.70145,"104":0.15249,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.23382,"48":2.8109,"49":0.65062,"50":0,"51":0,"52":0,"53":0.00508,"54":0,"55":0,"56":0,"57":0,"58":0.01017,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.02033,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00508,"76":0.00508,"77":0,"78":0,"79":0.03558,"80":0.00508,"81":0.00508,"83":0.00508,"84":0.01017,"85":0.00508,"86":0.01525,"87":0.08641,"88":0.01017,"89":0.00508,"90":0.00508,"91":0.00508,"92":0.01017,"93":0.01525,"94":0.01017,"95":0.00508,"96":0.01017,"97":0.01017,"98":0.02033,"99":0.01525,"100":0.02542,"101":0.07116,"102":0.11183,"103":2.59233,"104":6.92813,"105":0.02542,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00508,"89":0.39139,"90":0.04066,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.08133,"13":0.08133,"14":0,"15":0,"16":0,"17":0.00508,"18":0.01017,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00508,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00508,"93":0,"94":0.00508,"95":0.00508,"96":0.00508,"97":0.00508,"98":0.00508,"99":0.00508,"100":0.00508,"101":0.08641,"102":0.03558,"103":0.75228,"104":2.38901,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.08133,"9":0.42189,"10":0,"11":0,"12":0.00508,"13":0.01525,"14":0.12199,"15":0.0305,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.02033,"11.1":0.01017,"12.1":0.01525,"13.1":0.13724,"14.1":0.26432,"15.1":0.061,"15.2-15.3":0.04575,"15.4":0.18807,"15.5":0.60996,"15.6":1.08268,"16.0":0.01525},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.00763,"8.1-8.4":0,"9.0-9.2":0.2099,"9.3":0.08014,"10.0-10.2":0,"10.3":0.0458,"11.0-11.2":0.03053,"11.3-11.4":0.0229,"12.0-12.1":0.01908,"12.2-12.5":0.2786,"13.0-13.1":0.01145,"13.2":0.01145,"13.3":0.03053,"13.4-13.7":0.10686,"14.0-14.4":0.59154,"14.5-14.8":1.51128,"15.0-15.1":0.53811,"15.2-15.3":0.82815,"15.4":1.52273,"15.5":8.56012,"15.6":23.32947,"16.0":0.40835},P:{"4":0.25077,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04179,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03135,"12.0":0.01045,"13.0":0.06269,"14.0":0.07314,"15.0":0.01045,"16.0":0.08359,"17.0":0.83589,"18.0":1.35832},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.08569,"4.4":0,"4.4.3-4.4.4":0.23371},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.16774,"10":0,"11":0.35581,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":32.15674},S:{"2.5":0},R:{_:"0"},M:{"0":0.22127},Q:{"10.4":0},O:{"0":0.00492},H:{"0":0.06983}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.2548,"39":0,"40":0,"41":0,"42":0,"43":0.2548,"44":1.07914,"45":0.2548,"46":0,"47":0,"48":0,"49":0.005,"50":0,"51":0,"52":0.005,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.005,"69":0,"70":0,"71":0,"72":0,"73":0.01998,"74":0,"75":0,"76":0,"77":0,"78":0.00999,"79":0.00999,"80":0,"81":0,"82":0,"83":0,"84":0.005,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.01499,"91":0.01499,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.005,"98":0,"99":0,"100":0,"101":0.005,"102":0.005,"103":0.05995,"104":0.69944,"105":0.13989,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.2498,"48":2.98761,"49":0.67946,"50":0,"51":0,"52":0,"53":0.005,"54":0,"55":0,"56":0,"57":0,"58":0.005,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00999,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.005,"76":0.005,"77":0,"78":0,"79":0.03497,"80":0.005,"81":0,"83":0,"84":0.04496,"85":0,"86":0.02998,"87":0.10492,"88":0.005,"89":0.005,"90":0.005,"91":0.005,"92":0.01499,"93":0.00999,"94":0.00999,"95":0,"96":0.00999,"97":0.005,"98":0.00999,"99":0.00999,"100":0.01998,"101":0.02998,"102":0.03997,"103":0.26978,"104":2.1233,"105":6.43984,"106":0.1299,"107":0.005,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.04996,"90":0.31475,"91":0.005,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.08993,"13":0.08493,"14":0,"15":0,"16":0,"17":0,"18":0.00999,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.005,"93":0,"94":0,"95":0.005,"96":0.005,"97":0.005,"98":0,"99":0.005,"100":0.005,"101":0.02998,"102":0.00999,"103":0.01499,"104":0.54456,"105":2.54296},E:{"4":0,"5":0,"6":0,"7":0,"8":0.09492,"9":0.42466,"10":0,"11":0,"12":0,"13":0.00999,"14":0.07994,"15":0.01998,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01499,"12.1":0.02498,"13.1":0.15987,"14.1":0.20484,"15.1":0.03497,"15.2-15.3":0.04496,"15.4":0.13489,"15.5":0.28977,"15.6":1.33393,"16.0":0.1299,"16.1":0.02498},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.00401,"8.1-8.4":0,"9.0-9.2":0.21646,"9.3":0.06013,"10.0-10.2":0,"10.3":0.03207,"11.0-11.2":0.02405,"11.3-11.4":0.02004,"12.0-12.1":0.02004,"12.2-12.5":0.24051,"13.0-13.1":0.01603,"13.2":0.00802,"13.3":0.04009,"13.4-13.7":0.12427,"14.0-14.4":0.53314,"14.5-14.8":1.399,"15.0-15.1":0.50909,"15.2-15.3":0.7456,"15.4":1.00215,"15.5":2.92226,"15.6":25.89945,"16.0":5.59197,"16.1":0.07616},P:{"4":0.19429,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06135,"8.2":0,"9.2":0.01023,"10.1":0,"11.1-11.2":0.03068,"12.0":0.01023,"13.0":0.07158,"14.0":0.0818,"15.0":0.01023,"16.0":0.05113,"17.0":0.18406,"18.0":2.10647},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.03454,"4.4":0,"4.4.3-4.4.4":0.23029},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.17986,"10":0,"11":0.39468,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.005},H:{"0":0.06159},L:{"0":31.51343},S:{"2.5":0},R:{_:"0"},M:{"0":0.21517},Q:{"13.1":0}}; 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 21edee5c9bcd46..2fda8a083c7c6e 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00269,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00538,"89":0,"90":0,"91":0.00269,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00269,"100":0.00269,"101":0.00269,"102":0.01076,"103":0.22335,"104":0.04575,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00269,"39":0,"40":0,"41":0.00269,"42":0,"43":0,"44":0,"45":0,"46":0.00538,"47":0,"48":0,"49":0.00269,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00269,"59":0,"60":0,"61":0,"62":0.00269,"63":0.00269,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00269,"70":0,"71":0.00269,"72":0.00269,"73":0,"74":0.00269,"75":0,"76":0.00269,"77":0.09957,"78":0.00269,"79":0.01076,"80":0.00538,"81":0.01884,"83":0.00269,"84":0.00269,"85":0.00269,"86":0.00807,"87":0.00807,"88":0.00538,"89":0.06189,"90":0.00538,"91":0.00269,"92":0.00538,"93":0.00269,"94":0.00269,"95":0.02691,"96":0.00807,"97":0.00807,"98":0.01076,"99":0.01076,"100":0.01615,"101":0.02422,"102":0.06458,"103":1.32128,"104":3.97999,"105":0.01346,"106":0.00269,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01884,"64":0.02422,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00269,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00269,"86":0,"87":0,"88":0.00269,"89":0.15339,"90":0.02153,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00269,"18":0.00269,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00269,"93":0,"94":0,"95":0,"96":0,"97":0.00269,"98":0,"99":0,"100":0,"101":0.00538,"102":0.00269,"103":0.11033,"104":0.33368,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00269,"14":0.0296,"15":0.00807,_:"0","3.1":0,"3.2":0,"5.1":0.00269,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00807,"14.1":0.01884,"15.1":0.00807,"15.2-15.3":0.00269,"15.4":0.01346,"15.5":0.03767,"15.6":0.0592,"16.0":0.00269},G:{"8":0,"3.2":0.00105,"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.05555,"8.1-8.4":0.0021,"9.0-9.2":0,"9.3":0.0283,"10.0-10.2":0.00314,"10.3":0.01572,"11.0-11.2":0.00838,"11.3-11.4":0.01048,"12.0-12.1":0.00943,"12.2-12.5":0.27251,"13.0-13.1":0.00524,"13.2":0.01467,"13.3":0.01572,"13.4-13.7":0.06289,"14.0-14.4":0.21381,"14.5-14.8":0.72215,"15.0-15.1":0.1656,"15.2-15.3":0.30081,"15.4":0.53768,"15.5":2.54166,"15.6":5.36422,"16.0":0.12368},P:{"4":0.09099,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.10109,"8.2":0,"9.2":0.02022,"10.1":0.02022,"11.1-11.2":0.12131,"12.0":0.04044,"13.0":0.18197,"14.0":0.16175,"15.0":0.08088,"16.0":0.25274,"17.0":1.31423,"18.0":1.33445},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01952,"4.4":0,"4.4.3-4.4.4":0.2147},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01076,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":76.66492},S:{"2.5":0},R:{_:"0"},M:{"0":0.10964},Q:{"10.4":0},O:{"0":0.09502},H:{"0":0.4567}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00307,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00922,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00307,"89":0,"90":0,"91":0.00307,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00307,"100":0.00307,"101":0.00307,"102":0.00307,"103":0.01844,"104":0.32881,"105":0.09834,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00615,"39":0,"40":0,"41":0.00307,"42":0,"43":0,"44":0,"45":0,"46":0.00615,"47":0,"48":0,"49":0.00615,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00307,"59":0,"60":0,"61":0,"62":0,"63":0.00307,"64":0,"65":0.00307,"66":0,"67":0,"68":0,"69":0.00307,"70":0,"71":0.00307,"72":0.00307,"73":0.00307,"74":0.00307,"75":0,"76":0.00615,"77":0.15058,"78":0.00615,"79":0.01537,"80":0.00307,"81":0.02151,"83":0.00307,"84":0.00307,"85":0.01229,"86":0.01229,"87":0.00922,"88":0.00615,"89":0.03688,"90":0.00615,"91":0.00615,"92":0.00615,"93":0.00307,"94":0.00922,"95":0.02458,"96":0.00922,"97":0.00922,"98":0.01537,"99":0.01229,"100":0.04302,"101":0.02151,"102":0.0461,"103":0.08297,"104":1.32139,"105":5.5314,"106":0.08604,"107":0.00307,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00307,"64":0.04917,"65":0.00307,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00307,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00307,"86":0,"87":0,"88":0,"89":0.01844,"90":0.1936,"91":0.01229,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00307,"18":0.00307,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00615,"93":0,"94":0,"95":0,"96":0,"97":0.00307,"98":0,"99":0,"100":0,"101":0.00307,"102":0.00307,"103":0.00922,"104":0.08297,"105":0.48553},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00307,"14":0.03688,"15":0.00307,_:"0","3.1":0,"3.2":0,"5.1":0.02151,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00922,"14.1":0.01229,"15.1":0.00307,"15.2-15.3":0.00307,"15.4":0.01229,"15.5":0.02458,"15.6":0.09834,"16.0":0.01229,"16.1":0.00307},G:{"8":0,"3.2":0.00223,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.24171,"6.0-6.1":0,"7.0-7.1":0.04901,"8.1-8.4":0,"9.0-9.2":0.00668,"9.3":0.01337,"10.0-10.2":0.00223,"10.3":0.01114,"11.0-11.2":0.01114,"11.3-11.4":0.00334,"12.0-12.1":0.0078,"12.2-12.5":0.26844,"13.0-13.1":0.00334,"13.2":0.00223,"13.3":0.01225,"13.4-13.7":0.07686,"14.0-14.4":0.18156,"14.5-14.8":0.60259,"15.0-15.1":0.1047,"15.2-15.3":0.2172,"15.4":0.36869,"15.5":0.80309,"15.6":5.31753,"16.0":2.50728,"16.1":0.03007},P:{"4":0.13202,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0914,"8.2":0,"9.2":0.02031,"10.1":0.01016,"11.1-11.2":0.11171,"12.0":0.04062,"13.0":0.14218,"14.0":0.13202,"15.0":0.08125,"16.0":0.19296,"17.0":0.45701,"18.0":2.17332},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01725,"4.4":0,"4.4.3-4.4.4":0.23119},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01844,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.13161},H:{"0":0.4525},L:{"0":73.94801},S:{"2.5":0},R:{_:"0"},M:{"0":0.13854},Q:{"13.1":0}}; 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 561b8cbf011233..dcc3f85152f66f 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02608,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00522,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01043,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00522,"85":0,"86":0,"87":0.01043,"88":0.00522,"89":0.00522,"90":0,"91":0.03129,"92":0,"93":0,"94":0.00522,"95":0.00522,"96":0,"97":0.00522,"98":0.00522,"99":0.00522,"100":0.01043,"101":0.01043,"102":0.07301,"103":1.24117,"104":0.24511,"105":0.00522,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00522,"39":0,"40":0,"41":0.00522,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02608,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.01043,"64":0,"65":0.00522,"66":0,"67":0.00522,"68":0.00522,"69":0.06258,"70":0,"71":0.01043,"72":0,"73":0,"74":0,"75":0.01043,"76":0.00522,"77":0.00522,"78":0,"79":0.03129,"80":0.00522,"81":0.01043,"83":0.00522,"84":0.02086,"85":0.01565,"86":0.00522,"87":0.03129,"88":0.01043,"89":0.04694,"90":0.01565,"91":0.02086,"92":0.01565,"93":0.02608,"94":0.01043,"95":0.02086,"96":0.02608,"97":0.02086,"98":0.01565,"99":0.04694,"100":0.06258,"101":0.04694,"102":0.11995,"103":4.36496,"104":12.03622,"105":0.04694,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00522,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01043,"64":0.01043,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00522,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00522,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00522,"86":0.00522,"87":0,"88":0.01565,"89":1.77832,"90":0.07301,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00522,"16":0,"17":0,"18":0.00522,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00522,"93":0,"94":0,"95":0,"96":0.01043,"97":0,"98":0.01043,"99":0.00522,"100":0,"101":0.01565,"102":0.01565,"103":0.81354,"104":2.31025,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01043,"14":0.05737,"15":0.02608,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00522,"11.1":0.01565,"12.1":0.01565,"13.1":0.09387,"14.1":0.16688,"15.1":0.03129,"15.2-15.3":0.03651,"15.4":0.09909,"15.5":0.3807,"15.6":0.57887,"16.0":0.01043},G:{"8":0.00181,"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.00363,"8.1-8.4":0.00544,"9.0-9.2":0.00363,"9.3":0.12145,"10.0-10.2":0,"10.3":0.09064,"11.0-11.2":0.01269,"11.3-11.4":0.02175,"12.0-12.1":0.01269,"12.2-12.5":0.57645,"13.0-13.1":0.01088,"13.2":0.00725,"13.3":0.029,"13.4-13.7":0.09607,"14.0-14.4":0.2701,"14.5-14.8":0.87555,"15.0-15.1":0.22478,"15.2-15.3":0.37342,"15.4":0.61995,"15.5":4.42306,"15.6":10.00263,"16.0":0.33354},P:{"4":0.09231,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01026,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02051,"12.0":0.01026,"13.0":0.04103,"14.0":0.03077,"15.0":0.01026,"16.0":0.08205,"17.0":0.72823,"18.0":1.18978},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00651,"4.2-4.3":0.03256,"4.4":0,"4.4.3-4.4.4":0.28657},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.2764,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":45.81077},S:{"2.5":0},R:{_:"0"},M:{"0":0.26796},Q:{"10.4":0},O:{"0":0.1914},H:{"0":0.24916}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02914,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00583,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00583,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01748,"79":0,"80":0,"81":0,"82":0,"83":0.00583,"84":0,"85":0,"86":0,"87":0.01165,"88":0,"89":0,"90":0,"91":0.02331,"92":0,"93":0,"94":0.00583,"95":0.00583,"96":0.00583,"97":0.00583,"98":0,"99":0.00583,"100":0.00583,"101":0.01165,"102":0.02914,"103":0.0641,"104":1.11878,"105":0.54774,"106":0.00583,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00583,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03496,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.01165,"64":0,"65":0.00583,"66":0,"67":0,"68":0.00583,"69":0.03496,"70":0,"71":0.01165,"72":0,"73":0.00583,"74":0,"75":0.01748,"76":0.00583,"77":0.01165,"78":0,"79":0.02331,"80":0.00583,"81":0.01165,"83":0.01165,"84":0.02331,"85":0.01748,"86":0.02331,"87":0.02914,"88":0.00583,"89":0.04662,"90":0.01165,"91":0.03496,"92":0.01748,"93":0.01165,"94":0.01165,"95":0.01165,"96":0.02331,"97":0.02331,"98":0.02331,"99":0.03496,"100":0.04662,"101":0.04662,"102":0.07575,"103":0.29135,"104":3.3447,"105":17.73739,"106":0.57687,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00583,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00583,"64":0.02914,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00583,"86":0,"87":0,"88":0,"89":0.18646,"90":2.15016,"91":0.08741,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01748,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00583,"90":0,"91":0,"92":0.00583,"93":0,"94":0,"95":0,"96":0.00583,"97":0,"98":0.01165,"99":0.00583,"100":0,"101":0.01748,"102":0.01165,"103":0.02914,"104":0.46033,"105":3.15241},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00583,"14":0.05244,"15":0.02331,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01748,"12.1":0.01748,"13.1":0.11654,"14.1":0.17481,"15.1":0.03496,"15.2-15.3":0.03496,"15.4":0.09906,"15.5":0.2156,"15.6":0.93815,"16.0":0.18064,"16.1":0.01165},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.00203,"8.1-8.4":0.00405,"9.0-9.2":0,"9.3":0.08106,"10.0-10.2":0,"10.3":0.09525,"11.0-11.2":0.00608,"11.3-11.4":0.01419,"12.0-12.1":0.00608,"12.2-12.5":0.47219,"13.0-13.1":0.00811,"13.2":0.00608,"13.3":0.01824,"13.4-13.7":0.07701,"14.0-14.4":0.22495,"14.5-14.8":0.6789,"15.0-15.1":0.24522,"15.2-15.3":0.39316,"15.4":0.5188,"15.5":1.61518,"15.6":11.6508,"16.0":3.71472,"16.1":0.09322},P:{"4":0.10332,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01033,"12.0":0,"13.0":0.02066,"14.0":0.02066,"15.0":0.01033,"16.0":0.05166,"17.0":0.07232,"18.0":1.42581},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02507,"4.2-4.3":0.03134,"4.4":0,"4.4.3-4.4.4":0.23193},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00617,"9":0,"10":0,"11":0.09872,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.14606},H:{"0":0.24099},L:{"0":38.04624},S:{"2.5":0},R:{_:"0"},M:{"0":0.19613},Q:{"13.1":0}}; 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 815ae8b248faff..c22c64d9ba2eb6 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00526,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00526,"89":0,"90":0,"91":0.00526,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.06838,"99":0.1315,"100":0,"101":0,"102":0.12098,"103":0.19988,"104":0.03156,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.04208,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01052,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00526,"73":0,"74":0.01578,"75":0.1578,"76":0.25248,"77":0,"78":0.03156,"79":0.06312,"80":0,"81":0.00526,"83":0.01052,"84":0.0263,"85":0,"86":0.9731,"87":0.1578,"88":0.00526,"89":0.00526,"90":0,"91":0,"92":0,"93":0.15254,"94":0.01578,"95":0.01052,"96":0.63646,"97":0.01052,"98":0,"99":0.01052,"100":0.01052,"101":1.7884,"102":0.1315,"103":4.57094,"104":11.76662,"105":0.01578,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.93102,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.26826,"90":0.01578,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00526,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.31034,"104":0.80478,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.19988,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.19462,"13.1":0.36294,"14.1":1.22032,"15.1":0.00526,"15.2-15.3":0.04208,"15.4":0.01052,"15.5":0.13676,"15.6":0.3419,"16.0":0},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.17866,"10.0-10.2":0.02091,"10.3":0.05512,"11.0-11.2":0.0114,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":1.684,"13.0-13.1":0.01711,"13.2":0,"13.3":0.05892,"13.4-13.7":0.07603,"14.0-14.4":0.21098,"14.5-14.8":0.53789,"15.0-15.1":0.07603,"15.2-15.3":0.36493,"15.4":1.9729,"15.5":4.75169,"15.6":8.76402,"16.0":0.22238},P:{"4":0.13286,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.2044,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01022,"12.0":0,"13.0":0,"14.0":0.04088,"15.0":0,"16.0":0.08176,"17.0":0.7154,"18.0":1.23662},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.24566},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.02705,"10":0,"11":0.16231,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":49.00082},S:{"2.5":0},R:{_:"0"},M:{"0":0.02844},Q:{"10.4":0},O:{"0":0.76788},H:{"0":0.19296}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00451,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00451,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.17123,"100":0,"101":0,"102":0.16672,"103":0,"104":0.25684,"105":0.09463,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.02253,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00451,"75":0.04957,"76":0,"77":0,"78":0,"79":0.01802,"80":0,"81":0.02253,"83":0,"84":0.00451,"85":0,"86":0.55424,"87":0.00451,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.04957,"94":0.03154,"95":0.00451,"96":0.16222,"97":0.00451,"98":0.00451,"99":0.00451,"100":0.00451,"101":0.09012,"102":0.03605,"103":0.76151,"104":2.92439,"105":9.3905,"106":0.0766,"107":0.00451,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.47313,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00451,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00901,"90":0.15771,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.06308,"79":0,"80":0,"81":0.00451,"83":0.00451,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00451,"101":0.00451,"102":0.00901,"103":0.01802,"104":0.09012,"105":0.89219},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00451,"12":0,"13":0,"14":0.31091,"15":0.00901,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.02253,"13.1":0.53171,"14.1":1.05891,"15.1":0.01352,"15.2-15.3":0.00451,"15.4":0.02253,"15.5":0.13067,"15.6":0.31091,"16.0":0.08561,"16.1":0},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.00664,"9.3":0.50704,"10.0-10.2":0.00664,"10.3":0.03985,"11.0-11.2":0,"11.3-11.4":0.03321,"12.0-12.1":0,"12.2-12.5":0.75723,"13.0-13.1":0,"13.2":0,"13.3":0.0465,"13.4-13.7":0.11292,"14.0-14.4":0.25684,"14.5-14.8":0.40076,"15.0-15.1":0.36312,"15.2-15.3":0.12621,"15.4":1.24877,"15.5":1.95286,"15.6":11.64852,"16.0":4.41054,"16.1":0.00664},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.33501,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01015,"12.0":0,"13.0":0,"14.0":0.06091,"15.0":0,"16.0":0.01015,"17.0":0.2335,"18.0":1.68522},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.22253},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03605,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.15933},H:{"0":0.24967},L:{"0":54.50073},S:{"2.5":0},R:{_:"0"},M:{"0":0.14834},Q:{"13.1":0.01648}}; 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 4c75412392fca1..fd9a72ba81c614 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.01145,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00229,"44":0,"45":0.00229,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02747,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00229,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00229,"73":0.00916,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00458,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00458,"89":0,"90":0,"91":0.00229,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01373,"100":0.00229,"101":0.00229,"102":0.00916,"103":0.1877,"104":0.0412,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00458,"48":0,"49":0.00687,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00458,"65":0.00458,"66":0,"67":0,"68":0,"69":0.00229,"70":0.00229,"71":0.00229,"72":0,"73":0.00229,"74":0,"75":0.00229,"76":0,"77":0.00229,"78":0,"79":0.01145,"80":0.00229,"81":0.00458,"83":0.01145,"84":0.00458,"85":0.00229,"86":0.00458,"87":0.1877,"88":0.00229,"89":0.00687,"90":0.00229,"91":0.01373,"92":0.00687,"93":0.00229,"94":0.00687,"95":0.01145,"96":0.00916,"97":0.00916,"98":0.00916,"99":0.00916,"100":0.00916,"101":0.04807,"102":0.03205,"103":0.9362,"104":2.54308,"105":0.00916,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00458,"64":0.00458,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00229,"86":0,"87":0,"88":0.00229,"89":0.17625,"90":0.01373,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00229,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00229,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00458,"101":0.00229,"102":0.00229,"103":0.10758,"104":0.27239,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00229,"14":0.00229,"15":0.00229,_:"0","3.1":0,"3.2":0,"5.1":0.00229,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01145,"14.1":0.00687,"15.1":0.00229,"15.2-15.3":0.00229,"15.4":0.00916,"15.5":0.02289,"15.6":0.03891,"16.0":0},G:{"8":0,"3.2":0.00196,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00587,"6.0-6.1":0.00065,"7.0-7.1":0.03197,"8.1-8.4":0,"9.0-9.2":0.00261,"9.3":0.01044,"10.0-10.2":0.00065,"10.3":0.00653,"11.0-11.2":0.01044,"11.3-11.4":0.00783,"12.0-12.1":0.00587,"12.2-12.5":0.35041,"13.0-13.1":0.00392,"13.2":0.00326,"13.3":0.0124,"13.4-13.7":0.04568,"14.0-14.4":0.15987,"14.5-14.8":0.37325,"15.0-15.1":0.06069,"15.2-15.3":0.08874,"15.4":0.19315,"15.5":1.28419,"15.6":3.80036,"16.0":0.06264},P:{"4":0.42473,"5.0-5.4":0.01011,"6.2-6.4":0,"7.2-7.4":0.71799,"8.2":0,"9.2":0.05056,"10.1":0.02023,"11.1-11.2":0.13146,"12.0":0.06068,"13.0":0.2427,"14.0":0.39439,"15.0":0.13146,"16.0":0.31349,"17.0":1.62812,"18.0":1.26407},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00894,"4.2-4.3":0.02235,"4.4":0,"4.4.3-4.4.4":0.15196},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01145,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":81.07079},S:{"2.5":0},R:{_:"0"},M:{"0":0.08482},Q:{"10.4":0},O:{"0":0.05398},H:{"0":0.16061}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.01042,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.0026,"44":0,"45":0.0026,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02604,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0026,"69":0,"70":0,"71":0,"72":0.0026,"73":0.01042,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.0026,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00781,"89":0,"90":0,"91":0.0026,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.0026,"98":0.0026,"99":0.00521,"100":0.0026,"101":0.0026,"102":0.00521,"103":0.01302,"104":0.22915,"105":0.07031,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0026,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00521,"48":0,"49":0.00781,"50":0,"51":0,"52":0.0026,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.0026,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.0026,"65":0.00781,"66":0,"67":0,"68":0,"69":0.0026,"70":0.0026,"71":0.0026,"72":0,"73":0.0026,"74":0,"75":0.0026,"76":0,"77":0,"78":0,"79":0.01302,"80":0.0026,"81":0.0026,"83":0.01042,"84":0.00521,"85":0.0026,"86":0.00781,"87":0.20051,"88":0.0026,"89":0.01042,"90":0.0026,"91":0.02344,"92":0.00521,"93":0.0026,"94":0.00781,"95":0.01302,"96":0.01042,"97":0.01302,"98":0.01042,"99":0.00781,"100":0.01042,"101":0.0625,"102":0.03125,"103":0.0625,"104":0.8437,"105":3.65862,"106":0.07031,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0026,"64":0.00781,"65":0.0026,"66":0,"67":0,"68":0,"69":0,"70":0.0026,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.02344,"90":0.23696,"91":0.01042,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.0026,"17":0,"18":0.0026,"79":0,"80":0,"81":0,"83":0.0026,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0026,"93":0,"94":0,"95":0.0026,"96":0.0026,"97":0,"98":0,"99":0,"100":0,"101":0.0026,"102":0.0026,"103":0.00781,"104":0.08593,"105":0.41404},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00521,"14":0.00521,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.0026,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01302,"14.1":0.01042,"15.1":0.0026,"15.2-15.3":0.0026,"15.4":0.01042,"15.5":0.02083,"15.6":0.05468,"16.0":0.02083,"16.1":0},G:{"8":0,"3.2":0.00285,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00213,"6.0-6.1":0.00071,"7.0-7.1":0.01637,"8.1-8.4":0,"9.0-9.2":0.00712,"9.3":0.0064,"10.0-10.2":0,"10.3":0.01139,"11.0-11.2":0.01067,"11.3-11.4":0.0064,"12.0-12.1":0.00285,"12.2-12.5":0.39567,"13.0-13.1":0.02206,"13.2":0.00285,"13.3":0.0121,"13.4-13.7":0.03772,"14.0-14.4":0.17008,"14.5-14.8":0.36009,"15.0-15.1":0.04056,"15.2-15.3":0.07899,"15.4":0.13236,"15.5":0.43054,"15.6":4.12676,"16.0":1.06318,"16.1":0.01423},P:{"4":0.50365,"5.0-5.4":0.02015,"6.2-6.4":0.01007,"7.2-7.4":0.77562,"8.2":0.02015,"9.2":0.06044,"10.1":0.02015,"11.1-11.2":0.1511,"12.0":0.05037,"13.0":0.17124,"14.0":0.45329,"15.0":0.14102,"16.0":0.28204,"17.0":0.80584,"18.0":2.4981},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01604,"4.2-4.3":0.01604,"4.4":0,"4.4.3-4.4.4":0.17645},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01042,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.04438},H:{"0":0.18906},L:{"0":77.98328},S:{"2.5":0},R:{_:"0"},M:{"0":0.11094},Q:{"13.1":0}}; 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 9693acf4e63e84..12f84e568cf83d 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00313,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00313,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00313,"90":0,"91":0.0094,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00627,"103":0.18491,"104":0.03447,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00313,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00313,"39":0,"40":0,"41":0.00313,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00313,"50":0,"51":0,"52":0,"53":0.00313,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00313,"69":0.00313,"70":0,"71":0.00313,"72":0,"73":0,"74":0.00627,"75":0.00313,"76":0.00313,"77":0,"78":0.00313,"79":0.0188,"80":0.00313,"81":0.00627,"83":0.00627,"84":0.0094,"85":0.00313,"86":0.0094,"87":0.01567,"88":0.00627,"89":0.0094,"90":0.00313,"91":0.0094,"92":0.0188,"93":0.00627,"94":0.00313,"95":0.00313,"96":0.00627,"97":0.00627,"98":0.0094,"99":0.0188,"100":0.01254,"101":0.01567,"102":0.06268,"103":1.63281,"104":4.92351,"105":0.0188,"106":0.00313,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00627,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00313,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00313,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00313,"60":0,"62":0,"63":0.05955,"64":0.04701,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00313,"71":0.00313,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00313,"86":0,"87":0,"88":0.00313,"89":0.16924,"90":0.0188,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00313,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00313,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00313,"99":0.00627,"100":0.00313,"101":0.0094,"102":0.0094,"103":0.26012,"104":0.70202,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00627,"14":0.02507,"15":0.0094,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00313,"13.1":0.02194,"14.1":0.05955,"15.1":0.01567,"15.2-15.3":0.01254,"15.4":0.04388,"15.5":0.16297,"15.6":0.26326,"16.0":0.00627},G:{"8":0.01081,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0018,"6.0-6.1":0.0054,"7.0-7.1":0.02702,"8.1-8.4":0,"9.0-9.2":0.0054,"9.3":0.05044,"10.0-10.2":0,"10.3":0.05225,"11.0-11.2":0.00721,"11.3-11.4":0.0054,"12.0-12.1":0.0036,"12.2-12.5":0.29366,"13.0-13.1":0.0054,"13.2":0.0036,"13.3":0.03243,"13.4-13.7":0.10629,"14.0-14.4":0.31528,"14.5-14.8":0.75306,"15.0-15.1":0.28105,"15.2-15.3":0.48283,"15.4":0.75486,"15.5":3.69145,"15.6":10.7951,"16.0":0.31708},P:{"4":0.16459,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06172,"8.2":0,"9.2":0,"10.1":0.01029,"11.1-11.2":0.03086,"12.0":0.01029,"13.0":0.03086,"14.0":0.04115,"15.0":0.03086,"16.0":0.07201,"17.0":0.97723,"18.0":1.41955},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.16254},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02507,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":62.09654},S:{"2.5":0},R:{_:"0"},M:{"0":0.08926},Q:{"10.4":0},O:{"0":2.91118},H:{"0":0.96204}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01885,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00314,"79":0,"80":0,"81":0.00314,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00314,"89":0.00314,"90":0,"91":0.00628,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00314,"103":0.00628,"104":0.15391,"105":0.0534,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00314,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00314,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00314,"68":0.00314,"69":0,"70":0,"71":0.00314,"72":0,"73":0.00314,"74":0.00628,"75":0.00314,"76":0.00628,"77":0,"78":0.00314,"79":0.01885,"80":0,"81":0.00314,"83":0.00628,"84":0.01885,"85":0.00942,"86":0.04083,"87":0.02199,"88":0.00314,"89":0.00628,"90":0,"91":0.00628,"92":0.01256,"93":0.00942,"94":0.00314,"95":0.00314,"96":0.00314,"97":0.00628,"98":0.01256,"99":0.01256,"100":0.00942,"101":0.00942,"102":0.02513,"103":0.09109,"104":1.30352,"105":5.24547,"106":0.05654,"107":0.00314,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00314,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00314,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00314,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00314,"60":0,"62":0,"63":0.01885,"64":0.11936,"65":0.00942,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00314,"72":0.00314,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01885,"90":0.17904,"91":0.00942,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00628,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00628,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00628,"100":0,"101":0.00628,"102":0.00628,"103":0.01571,"104":0.15705,"105":0.83865},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00628,"14":0.02827,"15":0.00628,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00314,"12.1":0.00314,"13.1":0.02513,"14.1":0.06282,"15.1":0.01256,"15.2-15.3":0.01256,"15.4":0.04397,"15.5":0.07853,"15.6":0.33295,"16.0":0.05026,"16.1":0.00314},G:{"8":0.00768,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00192,"6.0-6.1":0,"7.0-7.1":0.02882,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04611,"10.0-10.2":0,"10.3":0.04419,"11.0-11.2":0.00768,"11.3-11.4":0.00384,"12.0-12.1":0.00384,"12.2-12.5":0.29971,"13.0-13.1":0.00384,"13.2":0.00384,"13.3":0.03266,"13.4-13.7":0.10759,"14.0-14.4":0.30163,"14.5-14.8":0.65897,"15.0-15.1":0.20941,"15.2-15.3":0.3266,"15.4":0.45917,"15.5":1.20267,"15.6":10.11704,"16.0":4.6762,"16.1":0.07493},P:{"4":0.09205,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04091,"8.2":0,"9.2":0.02046,"10.1":0,"11.1-11.2":0.03068,"12.0":0.02046,"13.0":0.03068,"14.0":0.04091,"15.0":0.02046,"16.0":0.0716,"17.0":0.21479,"18.0":2.30128},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.07942},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02513,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":2.87392},H:{"0":1.03899},L:{"0":61.52044},S:{"2.5":0},R:{_:"0"},M:{"0":0.06859},Q:{"13.1":0}}; 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 b5f8be400d1592..ab7645f4dab803 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00458,"49":0.00458,"50":0,"51":0,"52":0.00916,"53":0,"54":0,"55":0.0229,"56":0.00916,"57":0,"58":0,"59":0,"60":0.00916,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00458,"67":0,"68":0.00916,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00916,"78":0.06411,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00916,"85":0.01374,"86":0,"87":0.00458,"88":0.00458,"89":0.02747,"90":0,"91":0.07326,"92":0.00458,"93":0.01374,"94":0.00458,"95":0.00458,"96":0.00458,"97":0.01374,"98":0.00458,"99":0.00916,"100":0.01374,"101":0.01832,"102":0.10074,"103":2.23455,"104":0.3709,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00458,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00916,"48":0,"49":0.01832,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00458,"68":0,"69":0,"70":0.00458,"71":0.00458,"72":0,"73":0,"74":0.00458,"75":0,"76":0.03663,"77":0,"78":0.00458,"79":0.02747,"80":0.00458,"81":0.00458,"83":0.00458,"84":0.00458,"85":0.00916,"86":0.00458,"87":0.07784,"88":0,"89":0.00916,"90":0.00458,"91":0.01832,"92":0.00458,"93":0,"94":0.00458,"95":0.00458,"96":0.0229,"97":0.01832,"98":0.00916,"99":0.03205,"100":0.01832,"101":0.07326,"102":0.21979,"103":2.86645,"104":7.11577,"105":0.01832,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00458,"86":0,"87":0,"88":0.01374,"89":0.56322,"90":0.06411,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00458,"17":0.00458,"18":0.00916,"79":0,"80":0,"81":0,"83":0,"84":0.00458,"85":0,"86":0,"87":0,"88":0,"89":0.00458,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00458,"98":0.00458,"99":0.00458,"100":0.00458,"101":0.01832,"102":0.00916,"103":0.73722,"104":2.25287,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00458,"12":0,"13":0.01374,"14":0.06869,"15":0.00916,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00458,"10.1":0.00458,"11.1":0.01832,"12.1":0.05495,"13.1":0.16942,"14.1":0.25642,"15.1":0.03205,"15.2-15.3":0.06869,"15.4":0.15111,"15.5":0.45332,"15.6":0.83338,"16.0":0.00458},G:{"8":0.00429,"3.2":0,"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.01503,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.27266,"10.0-10.2":0,"10.3":0.08588,"11.0-11.2":0.04079,"11.3-11.4":0.01288,"12.0-12.1":0.0365,"12.2-12.5":0.4573,"13.0-13.1":0.01718,"13.2":0.00859,"13.3":0.04294,"13.4-13.7":0.12882,"14.0-14.4":0.50024,"14.5-14.8":1.00048,"15.0-15.1":0.32419,"15.2-15.3":0.47018,"15.4":0.78793,"15.5":5.54987,"15.6":11.40031,"16.0":0.30701},P:{"4":0.11407,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03111,"8.2":0,"9.2":0.01037,"10.1":0,"11.1-11.2":0.07259,"12.0":0.01037,"13.0":0.04148,"14.0":0.12444,"15.0":0.03111,"16.0":0.16592,"17.0":1.24439,"18.0":1.60733},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00433,"4.2-4.3":0.01298,"4.4":0,"4.4.3-4.4.4":0.20764},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02747,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":52.0209},S:{"2.5":0},R:{_:"0"},M:{"0":0.42826},Q:{"10.4":0},O:{"0":0.34152},H:{"0":0.21042}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.0081,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00405,"49":0.00405,"50":0,"51":0,"52":0.0081,"53":0,"54":0,"55":0.0081,"56":0.00405,"57":0,"58":0,"59":0,"60":0.00405,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00405,"69":0,"70":0.00405,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.08503,"79":0,"80":0,"81":0,"82":0.03239,"83":0,"84":0.00405,"85":0.00405,"86":0,"87":0,"88":0.00405,"89":0.04049,"90":0,"91":0.07288,"92":0.00405,"93":0.00405,"94":0.00405,"95":0.00405,"96":0.00405,"97":0.0081,"98":0,"99":0.01215,"100":0.0081,"101":0.0081,"102":0.03239,"103":0.07693,"104":1.36451,"105":0.44539,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00405,"48":0,"49":0.0081,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00405,"58":0,"59":0,"60":0,"61":0.00405,"62":0,"63":0,"64":0,"65":0.00405,"66":0,"67":0.00405,"68":0,"69":0,"70":0.03644,"71":0.00405,"72":0.00405,"73":0,"74":0.00405,"75":0,"76":0.03644,"77":0.00405,"78":0.00405,"79":0.02834,"80":0.01215,"81":0.0081,"83":0.0081,"84":0.01215,"85":0.02025,"86":0.02429,"87":0.02429,"88":0,"89":0.00405,"90":0.00405,"91":0.01215,"92":0.00405,"93":0.00405,"94":0,"95":0.0081,"96":0.00405,"97":0.00405,"98":0.0162,"99":0.0081,"100":0.01215,"101":0.0162,"102":0.04859,"103":0.27938,"104":1.64794,"105":6.19902,"106":0.08908,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00405,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00405,"86":0,"87":0,"88":0,"89":0.06074,"90":0.53447,"91":0.00405,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00405,"17":0.00405,"18":0.01215,"79":0,"80":0,"81":0,"83":0,"84":0.00405,"85":0,"86":0.0081,"87":0,"88":0,"89":0,"90":0.0081,"91":0,"92":0.0081,"93":0,"94":0,"95":0,"96":0,"97":0.00405,"98":0,"99":0,"100":0.00405,"101":0.0081,"102":0.00405,"103":0.01215,"104":0.34821,"105":2.0245},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00405,"14":0.07288,"15":0.0162,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00405,"10.1":0.00405,"11.1":0.01215,"12.1":0.02429,"13.1":0.12147,"14.1":0.16196,"15.1":0.02025,"15.2-15.3":0.04454,"15.4":0.08908,"15.5":0.15791,"15.6":0.76526,"16.0":0.08503,"16.1":0.00405},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.00836,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.10198,"10.0-10.2":0.03845,"10.3":0.08526,"11.0-11.2":0.00502,"11.3-11.4":0.00836,"12.0-12.1":0.02173,"12.2-12.5":0.38619,"13.0-13.1":0.01672,"13.2":0.00502,"13.3":0.03009,"13.4-13.7":0.07523,"14.0-14.4":0.3444,"14.5-14.8":0.70886,"15.0-15.1":0.16718,"15.2-15.3":0.22904,"15.4":0.49988,"15.5":1.44279,"15.6":9.24023,"16.0":2.98088,"16.1":0.04681},P:{"4":0.03085,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04113,"8.2":0,"9.2":0.01028,"10.1":0,"11.1-11.2":0.05141,"12.0":0.01028,"13.0":0.11311,"14.0":0.07198,"15.0":0.02057,"16.0":0.10283,"17.0":0.20566,"18.0":2.13886},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01275,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.16154},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02429,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.20829},H:{"0":0.15775},L:{"0":38.69536},S:{"2.5":0},R:{_:"0"},M:{"0":0.28565},Q:{"13.1":0}}; 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 c74184e2c06bae..766fde54ae61ee 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.03585,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00398,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00398,"79":0,"80":0,"81":0.00398,"82":0,"83":0.00398,"84":0.00398,"85":0,"86":0,"87":0,"88":0.00398,"89":0,"90":0.00398,"91":0.01992,"92":0,"93":0,"94":0.00398,"95":0.00398,"96":0.00398,"97":0.00398,"98":0.00398,"99":0.01195,"100":0.00797,"101":0.01195,"102":0.09161,"103":2.63675,"104":0.20313,"105":0.00398,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00398,"40":0,"41":0.00398,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.07966,"50":0,"51":0.01992,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00398,"59":0,"60":0.18322,"61":0.00398,"62":0,"63":0.00398,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.04381,"70":0.00398,"71":0.01593,"72":0,"73":0.00398,"74":0.00398,"75":0.00398,"76":0.00398,"77":0.00398,"78":0.00398,"79":0.01992,"80":0.00398,"81":0.01593,"83":0.00797,"84":0.01195,"85":0.01593,"86":0.01195,"87":0.01992,"88":0.00797,"89":0.01195,"90":0.00797,"91":0.00797,"92":0.01992,"93":0.01195,"94":0.00797,"95":0.00797,"96":0.01593,"97":0.01593,"98":0.01593,"99":0.01593,"100":0.02788,"101":0.0478,"102":0.06771,"103":2.44158,"104":6.73525,"105":0.01992,"106":0.00398,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00398,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00398,"64":0.00398,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00398,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00398,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.04381,"86":0,"87":0.00398,"88":0.00797,"89":0.74084,"90":0.07966,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00398,"13":0,"14":0,"15":0.00398,"16":0,"17":0,"18":0.00398,"79":0,"80":0,"81":0,"83":0,"84":0.00398,"85":0,"86":0.00398,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00398,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00398,"99":0.00398,"100":0,"101":0.00797,"102":0.00797,"103":0.22305,"104":0.68508,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00398,"14":0.01593,"15":0.00398,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00398,"13.1":0.01992,"14.1":0.03585,"15.1":0.00797,"15.2-15.3":0.00797,"15.4":0.0239,"15.5":0.07568,"15.6":0.14339,"16.0":0.00398},G:{"8":0,"3.2":0.03311,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.12748,"6.0-6.1":0.00166,"7.0-7.1":0.00497,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05298,"10.0-10.2":0.00166,"10.3":0.05464,"11.0-11.2":0.00662,"11.3-11.4":0.01325,"12.0-12.1":0.01987,"12.2-12.5":0.32947,"13.0-13.1":0.01325,"13.2":0.00828,"13.3":0.04636,"13.4-13.7":0.13576,"14.0-14.4":0.38908,"14.5-14.8":1.01491,"15.0-15.1":0.23841,"15.2-15.3":0.42053,"15.4":0.7318,"15.5":3.85932,"15.6":8.76169,"16.0":0.28146},P:{"4":0.12208,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01017,"8.2":0,"9.2":0.05087,"10.1":0,"11.1-11.2":0.08138,"12.0":0.03052,"13.0":0.07121,"14.0":0.24415,"15.0":0.05087,"16.0":0.16277,"17.0":1.34285,"18.0":1.78029},I:{"0":0,"3":0,"4":0.02016,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0252,"4.2-4.3":0.06049,"4.4":0,"4.4.3-4.4.4":0.26211},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00858,"9":0.00429,"10":0.00429,"11":0.0386,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":60.17074},S:{"2.5":0},R:{_:"0"},M:{"0":0.24068},Q:{"10.4":0},O:{"0":0.06619},H:{"0":0.29622}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.03664,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00407,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00814,"79":0,"80":0,"81":0.00407,"82":0.00407,"83":0.00407,"84":0.00407,"85":0,"86":0,"87":0,"88":0.00407,"89":0,"90":0,"91":0.02036,"92":0,"93":0,"94":0,"95":0.00407,"96":0.00407,"97":0.00407,"98":0.00407,"99":0.00814,"100":0.00407,"101":0.00407,"102":0.01628,"103":0.86712,"104":2.14542,"105":0.34604,"106":0.00407,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02036,"50":0,"51":0.01628,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.16284,"61":0.00407,"62":0,"63":0,"64":0.00407,"65":0,"66":0,"67":0.00814,"68":0,"69":0.01628,"70":0.00407,"71":0.01221,"72":0,"73":0,"74":0.00407,"75":0.00407,"76":0.00407,"77":0.00407,"78":0.00407,"79":0.02443,"80":0.00814,"81":0.02036,"83":0.00814,"84":0.02036,"85":0.02443,"86":0.01628,"87":0.02036,"88":0.00407,"89":0.00814,"90":0.00814,"91":0.00814,"92":0.01628,"93":0.00814,"94":0.00814,"95":0.01221,"96":0.01221,"97":0.01628,"98":0.01628,"99":0.01221,"100":0.02443,"101":0.02036,"102":0.04071,"103":0.1262,"104":1.89302,"105":7.51914,"106":0.13434,"107":0.00407,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00407,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01628,"86":0,"87":0,"88":0,"89":0.05699,"90":0.80606,"91":0.0285,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00407,"16":0,"17":0,"18":0.00814,"79":0,"80":0,"81":0,"83":0,"84":0.00407,"85":0,"86":0.00407,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00407,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00407,"102":0.00814,"103":0.00814,"104":0.13841,"105":0.76942},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00407,"14":0.01628,"15":0.00407,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00407,"13.1":0.02036,"14.1":0.0285,"15.1":0.00814,"15.2-15.3":0.00814,"15.4":0.02036,"15.5":0.04478,"15.6":0.17098,"16.0":0.04071,"16.1":0.00407},G:{"8":0,"3.2":0.03163,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.11535,"6.0-6.1":0,"7.0-7.1":0.00372,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03163,"10.0-10.2":0.00372,"10.3":0.04651,"11.0-11.2":0.00558,"11.3-11.4":0.01116,"12.0-12.1":0.01488,"12.2-12.5":0.2921,"13.0-13.1":0.01302,"13.2":0.0093,"13.3":0.04279,"13.4-13.7":0.12838,"14.0-14.4":0.36094,"14.5-14.8":0.91538,"15.0-15.1":0.20652,"15.2-15.3":0.30885,"15.4":0.51909,"15.5":1.2819,"15.6":9.94452,"16.0":3.90897,"16.1":0.07256},P:{"4":0.09168,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01019,"8.2":0,"9.2":0.02037,"10.1":0,"11.1-11.2":0.0713,"12.0":0.03056,"13.0":0.0713,"14.0":0.21391,"15.0":0.05093,"16.0":0.12223,"17.0":0.24447,"18.0":2.97435},I:{"0":0,"3":0,"4":0.0098,"2.1":0,"2.2":0.0049,"2.3":0,"4.1":0.0098,"4.2-4.3":0.04411,"4.4":0,"4.4.3-4.4.4":0.22545},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00872,"9":0.00436,"10":0.00436,"11":0.04362,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.04743},H:{"0":0.26382},L:{"0":57.94402},S:{"2.5":0},R:{_:"0"},M:{"0":0.20752},Q:{"13.1":0}}; 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 0556dac3d82eda..baf011b0b284cd 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.04997,"53":0,"54":0,"55":0,"56":0.00357,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00357,"69":0,"70":0,"71":0,"72":0.00357,"73":0.00357,"74":0,"75":0,"76":0,"77":0.00357,"78":0.00714,"79":0.00357,"80":0,"81":0.00357,"82":0,"83":0.00357,"84":0.00357,"85":0,"86":0,"87":0,"88":0.01071,"89":0.00357,"90":0,"91":0.01785,"92":0.0571,"93":0.00714,"94":0.00357,"95":0.00714,"96":0.00357,"97":0.00714,"98":0.00357,"99":0.02141,"100":0.00714,"101":0.01071,"102":0.04997,"103":1.04215,"104":0.21414,"105":0.00357,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00357,"39":0,"40":0,"41":0.00357,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00357,"48":0,"49":0.03212,"50":0,"51":0,"52":0.03569,"53":0.00714,"54":0,"55":0,"56":0,"57":0,"58":0.00357,"59":0,"60":0,"61":0.00714,"62":0,"63":0.00357,"64":0,"65":0.00357,"66":0,"67":0.00357,"68":0.01071,"69":0.00357,"70":0.00714,"71":0.01428,"72":0.00357,"73":0.00357,"74":0.00357,"75":0.00714,"76":0.00357,"77":0.00357,"78":0.00357,"79":0.04283,"80":0.00714,"81":0.01785,"83":0.01071,"84":0.01785,"85":0.02141,"86":0.03212,"87":0.02855,"88":0.01071,"89":0.01428,"90":0.00714,"91":0.01071,"92":0.01785,"93":0.00357,"94":0.00714,"95":0.01428,"96":0.01785,"97":0.02855,"98":0.01428,"99":0.02141,"100":0.02855,"101":0.02141,"102":0.07138,"103":2.11285,"104":5.89599,"105":0.01785,"106":0.00357,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00714,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00357,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00714,"64":0.00714,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00357,"72":0,"73":0,"74":0,"75":0,"76":0.00357,"77":0,"78":0,"79":0.00357,"80":0,"81":0,"82":0,"83":0,"84":0.00357,"85":0.03212,"86":0.00357,"87":0.00357,"88":0.00714,"89":0.62101,"90":0.08209,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00357,"16":0,"17":0,"18":0.00714,"79":0,"80":0.00357,"81":0,"83":0,"84":0.00357,"85":0.00357,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00357,"102":0.00714,"103":0.13919,"104":0.42471,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00357,"14":0.01428,"15":0.00357,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00357,"12.1":0.00357,"13.1":0.02498,"14.1":0.03926,"15.1":0.00714,"15.2-15.3":0.00714,"15.4":0.01428,"15.5":0.0571,"15.6":0.10707,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00253,"6.0-6.1":0,"7.0-7.1":0.05056,"8.1-8.4":0.01264,"9.0-9.2":0,"9.3":0.04298,"10.0-10.2":0.00506,"10.3":0.10112,"11.0-11.2":0.0177,"11.3-11.4":0.01517,"12.0-12.1":0.01011,"12.2-12.5":0.52835,"13.0-13.1":0.01517,"13.2":0.00758,"13.3":0.03792,"13.4-13.7":0.2073,"14.0-14.4":0.49296,"14.5-14.8":1.78225,"15.0-15.1":0.30336,"15.2-15.3":0.63453,"15.4":1.18058,"15.5":5.67538,"15.6":13.84338,"16.0":0.29831},P:{"4":0.10211,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01021,"8.2":0,"9.2":0.02042,"10.1":0,"11.1-11.2":0.05106,"12.0":0.01021,"13.0":0.06127,"14.0":0.07148,"15.0":0.04084,"16.0":0.0919,"17.0":0.95986,"18.0":1.42957},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.05615,"4.2-4.3":0.00727,"4.4":0,"4.4.3-4.4.4":0.04228},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00751,"9":0.00376,"10":0.00376,"11":0.05635,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":57.65561},S:{"2.5":0},R:{_:"0"},M:{"0":0.26367},Q:{"10.4":0},O:{"0":0.04502},H:{"0":0.36531}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.04306,"53":0,"54":0,"55":0,"56":0.00359,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00718,"67":0,"68":0.00359,"69":0,"70":0,"71":0,"72":0.00359,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00718,"79":0.00359,"80":0.00359,"81":0.00359,"82":0.00359,"83":0.00359,"84":0.00359,"85":0,"86":0,"87":0.00359,"88":0.01076,"89":0.00359,"90":0,"91":0.01435,"92":0.06458,"93":0.00359,"94":0.00359,"95":0.00718,"96":0.00359,"97":0.00718,"98":0.00359,"99":0.02512,"100":0.00359,"101":0.02512,"102":0.01794,"103":0.061,"104":0.92929,"105":0.34086,"106":0.00359,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00359,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00359,"48":0.00359,"49":0.03588,"50":0,"51":0,"52":0.04306,"53":0.00359,"54":0,"55":0,"56":0,"57":0,"58":0.00359,"59":0,"60":0,"61":0.00359,"62":0.00718,"63":0.00359,"64":0,"65":0.00359,"66":0.00359,"67":0.00359,"68":0.00718,"69":0,"70":0.00359,"71":0.00718,"72":0.00718,"73":0.00359,"74":0.00718,"75":0.00718,"76":0.00359,"77":0.00359,"78":0.00359,"79":0.03588,"80":0.00718,"81":0.01435,"83":0.00718,"84":0.01076,"85":0.01794,"86":0.02153,"87":0.02512,"88":0.00718,"89":0.01435,"90":0.00718,"91":0.01076,"92":0.01435,"93":0.00718,"94":0.00359,"95":0.00718,"96":0.01435,"97":0.0287,"98":0.01435,"99":0.02153,"100":0.02512,"101":0.01794,"102":0.03588,"103":0.14352,"104":1.733,"105":6.33641,"106":0.09329,"107":0.00359,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00359,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00359,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00359,"64":0.00718,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00359,"72":0.00359,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00359,"80":0,"81":0,"82":0,"83":0,"84":0.00359,"85":0.02512,"86":0.00359,"87":0,"88":0,"89":0.04306,"90":0.66378,"91":0.02153,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00718,"16":0,"17":0,"18":0.00359,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00359,"100":0,"101":0.00359,"102":0.00359,"103":0.00718,"104":0.09329,"105":0.4772},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00359,"14":0.01435,"15":0.00359,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01435,"12.1":0.00359,"13.1":0.03588,"14.1":0.02153,"15.1":0.00718,"15.2-15.3":0.00359,"15.4":0.01435,"15.5":0.03588,"15.6":0.11482,"16.0":0.03588,"16.1":0},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.04257,"8.1-8.4":0.0133,"9.0-9.2":0,"9.3":0.04523,"10.0-10.2":0.00798,"10.3":0.09578,"11.0-11.2":0.01596,"11.3-11.4":0.01596,"12.0-12.1":0.01064,"12.2-12.5":0.6359,"13.0-13.1":0.01862,"13.2":0.00532,"13.3":0.05587,"13.4-13.7":0.23414,"14.0-14.4":0.57736,"14.5-14.8":2.14716,"15.0-15.1":0.28203,"15.2-15.3":0.47094,"15.4":0.76627,"15.5":2.02477,"15.6":14.74274,"16.0":3.84466,"16.1":0.06652},P:{"4":0.0823,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01029,"8.2":0,"9.2":0.01029,"10.1":0,"11.1-11.2":0.04115,"12.0":0.01029,"13.0":0.05144,"14.0":0.06173,"15.0":0.03086,"16.0":0.06173,"17.0":0.16461,"18.0":2.23248},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02185,"4.2-4.3":0.01352,"4.4":0,"4.4.3-4.4.4":0.0541},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01558,"9":0.0039,"10":0.00779,"11":0.10908,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.0513},H:{"0":0.33995},L:{"0":56.57461},S:{"2.5":0},R:{_:"0"},M:{"0":0.33342},Q:{"13.1":0}}; 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 f5792e14a1245b..f2332913c50c16 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00557,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00557,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.08352,"51":0.00557,"52":0.22829,"53":0.08352,"54":0,"55":0.00557,"56":0.08352,"57":0,"58":0,"59":0.00557,"60":0.00557,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0167,"69":0,"70":0.00557,"71":0,"72":0.06682,"73":0,"74":0,"75":0,"76":0.00557,"77":0.00557,"78":0.02784,"79":0.01114,"80":0.0167,"81":0.01114,"82":0.00557,"83":0.01114,"84":0.02227,"85":0.00557,"86":0.00557,"87":0.00557,"88":0.01114,"89":0.03341,"90":0.03341,"91":0.05568,"92":0.00557,"93":0.00557,"94":0.01114,"95":0.09466,"96":0.02227,"97":0.0167,"98":0.0167,"99":0.03898,"100":0.02227,"101":0.03898,"102":0.07238,"103":1.16371,"104":0.23942,"105":0.00557,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.00557,"20":0,"21":0,"22":0.01114,"23":0,"24":0,"25":0,"26":0.00557,"27":0,"28":0.00557,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00557,"39":0,"40":0,"41":0.00557,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00557,"48":0,"49":0.06125,"50":0,"51":0.06125,"52":0.03341,"53":0.00557,"54":0,"55":0,"56":0.0167,"57":0.00557,"58":0,"59":0.00557,"60":0,"61":0.00557,"62":0,"63":0.00557,"64":0.01114,"65":0.00557,"66":0.06125,"67":0.00557,"68":0.01114,"69":0.02227,"70":0.13363,"71":0.01114,"72":0.01114,"73":0.01114,"74":0.04454,"75":0.01114,"76":0.0167,"77":0.01114,"78":0.0167,"79":0.08352,"80":0.02784,"81":0.05568,"83":0.06682,"84":0.1225,"85":0.10579,"86":0.17261,"87":0.16704,"88":0.05568,"89":0.06125,"90":0.07795,"91":0.06125,"92":0.08352,"93":0.05011,"94":0.06125,"95":0.03898,"96":0.08909,"97":0.1392,"98":0.11136,"99":0.08352,"100":0.07795,"101":0.23942,"102":0.41203,"103":3.24614,"104":7.83974,"105":0.02227,"106":0.00557,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02784,"37":0.00557,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00557,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00557,"55":0,"56":0,"57":0,"58":0.00557,"60":0.00557,"62":0,"63":0.01114,"64":0.00557,"65":0,"66":0,"67":0.00557,"68":0.00557,"69":0.00557,"70":0.00557,"71":0.01114,"72":0.00557,"73":0.00557,"74":0.00557,"75":0.00557,"76":0.00557,"77":0.01114,"78":0.00557,"79":0.0167,"80":0.00557,"81":0.00557,"82":0.02784,"83":0.01114,"84":0.01114,"85":0.11136,"86":0.02784,"87":0.02227,"88":0.04454,"89":2.47776,"90":0.33965,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01114},B:{"12":0,"13":0,"14":0.00557,"15":0.00557,"16":0.00557,"17":0.01114,"18":0.05568,"79":0,"80":0,"81":0,"83":0.00557,"84":0.00557,"85":0.00557,"86":0.01114,"87":0.00557,"88":0,"89":0.00557,"90":0.00557,"91":0,"92":0.00557,"93":0,"94":0.00557,"95":0.00557,"96":0.00557,"97":0.00557,"98":0.00557,"99":0.00557,"100":0.00557,"101":0.01114,"102":0.0167,"103":0.37306,"104":1.03008,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02784,"14":0.04454,"15":0.01114,_:"0","3.1":0,"3.2":0,"5.1":0.00557,"6.1":0,"7.1":0,"9.1":0.02227,"10.1":0,"11.1":0.00557,"12.1":0.01114,"13.1":0.05011,"14.1":0.10022,"15.1":0.02784,"15.2-15.3":0.03341,"15.4":0.06125,"15.5":0.15034,"15.6":0.25056,"16.0":0.00557},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00487,"6.0-6.1":0.00325,"7.0-7.1":0.02274,"8.1-8.4":0.00974,"9.0-9.2":0.06496,"9.3":0.09582,"10.0-10.2":0.01299,"10.3":0.10394,"11.0-11.2":0.06821,"11.3-11.4":0.07958,"12.0-12.1":0.05846,"12.2-12.5":0.9208,"13.0-13.1":0.06496,"13.2":0.02274,"13.3":0.14454,"13.4-13.7":0.38813,"14.0-14.4":1.26834,"14.5-14.8":2.11606,"15.0-15.1":0.73892,"15.2-15.3":1.75229,"15.4":0.97115,"15.5":2.77053,"15.6":4.38641,"16.0":0.1559},P:{"4":0.11402,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06219,"8.2":0,"9.2":0.01037,"10.1":0,"11.1-11.2":0.04146,"12.0":0.01037,"13.0":0.04146,"14.0":0.0311,"15.0":0.02073,"16.0":0.08292,"17.0":0.42497,"18.0":0.4457},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02203,"4.2-4.3":0.04774,"4.4":0,"4.4.3-4.4.4":0.23136},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.02333,"9":0.01167,"10":0.00583,"11":0.20416,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":42.90707},S:{"2.5":0.00443},R:{_:"0"},M:{"0":0.13739},Q:{"10.4":0.00443},O:{"0":0.18171},H:{"0":0.7217}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.01126,"51":0.00563,"52":0.12388,"53":0.01126,"54":0,"55":0.10136,"56":0.01689,"57":0,"58":0,"59":0,"60":0.01126,"61":0,"62":0,"63":0,"64":0,"65":0.00563,"66":0,"67":0,"68":0.01689,"69":0.00563,"70":0.01689,"71":0.01126,"72":0.03379,"73":0,"74":0.00563,"75":0.00563,"76":0.00563,"77":0.00563,"78":0.03942,"79":0.02252,"80":0.03379,"81":0.03379,"82":0.02816,"83":0.01689,"84":0.01689,"85":0.00563,"86":0.00563,"87":0.00563,"88":0.01126,"89":0.02252,"90":0.01689,"91":0.04505,"92":0.00563,"93":0.01689,"94":0.01689,"95":0.08447,"96":0.03379,"97":0.01689,"98":0.01126,"99":0.03379,"100":0.01689,"101":0.02252,"102":0.03379,"103":0.0732,"104":1.02484,"105":0.33786,"106":0.00563,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00563,"23":0,"24":0,"25":0,"26":0.00563,"27":0,"28":0.00563,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00563,"37":0,"38":0.00563,"39":0,"40":0,"41":0.00563,"42":0,"43":0,"44":0,"45":0,"46":0.00563,"47":0.00563,"48":0.01126,"49":0.06194,"50":0.00563,"51":0.05631,"52":0.01126,"53":0.00563,"54":0,"55":0,"56":0.01126,"57":0.00563,"58":0.00563,"59":0.00563,"60":0,"61":0.00563,"62":0,"63":0.00563,"64":0.00563,"65":0.00563,"66":0.02816,"67":0.00563,"68":0.01689,"69":0.01689,"70":0.07883,"71":0.01126,"72":0.01126,"73":0.01126,"74":0.01689,"75":0.01126,"76":0.02816,"77":0.01126,"78":0.02252,"79":0.11262,"80":0.05068,"81":0.06194,"83":0.13514,"84":0.28155,"85":0.29281,"86":0.33223,"87":0.29281,"88":0.0732,"89":0.05068,"90":0.05068,"91":0.03379,"92":0.05631,"93":0.02816,"94":0.02816,"95":0.03379,"96":0.07883,"97":0.11825,"98":0.18019,"99":0.06757,"100":0.06194,"101":0.07883,"102":0.21961,"103":1.1262,"104":2.35939,"105":8.48029,"106":0.15767,"107":0.00563,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02252,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00563,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00563,"55":0,"56":0,"57":0,"58":0.00563,"60":0,"62":0,"63":0.00563,"64":0.02816,"65":0,"66":0,"67":0.00563,"68":0.02252,"69":0.00563,"70":0.01126,"71":0.01689,"72":0.01689,"73":0.00563,"74":0.00563,"75":0,"76":0,"77":0.01126,"78":0,"79":0.01126,"80":0,"81":0.00563,"82":0.01126,"83":0.01126,"84":0.01126,"85":0.0901,"86":0.02252,"87":0.01689,"88":0.02252,"89":0.13514,"90":2.4157,"91":0.12388,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01126},B:{"12":0,"13":0.00563,"14":0,"15":0.00563,"16":0.00563,"17":0.00563,"18":0.05631,"79":0,"80":0,"81":0,"83":0,"84":0.01689,"85":0.01689,"86":0.01126,"87":0.01126,"88":0,"89":0.00563,"90":0,"91":0,"92":0.00563,"93":0,"94":0.00563,"95":0.00563,"96":0,"97":0.00563,"98":0.00563,"99":0.00563,"100":0,"101":0.00563,"102":0.00563,"103":0.01689,"104":0.19145,"105":1.16562},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00563,"10":0,"11":0,"12":0,"13":0.02252,"14":0.05631,"15":0.01126,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.02816,"10.1":0.00563,"11.1":0.00563,"12.1":0.00563,"13.1":0.05631,"14.1":0.0901,"15.1":0.02816,"15.2-15.3":0.02252,"15.4":0.05068,"15.5":0.07883,"15.6":0.31534,"16.0":0.04505,"16.1":0.00563},G:{"8":0,"3.2":0.00192,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00383,"6.0-6.1":0,"7.0-7.1":0.01534,"8.1-8.4":0.00767,"9.0-9.2":0.0326,"9.3":0.10354,"10.0-10.2":0.01534,"10.3":0.08629,"11.0-11.2":0.0882,"11.3-11.4":0.09587,"12.0-12.1":0.07095,"12.2-12.5":1.29045,"13.0-13.1":0.08245,"13.2":0.02684,"13.3":0.18599,"13.4-13.7":0.47553,"14.0-14.4":1.65093,"14.5-14.8":2.4601,"15.0-15.1":0.59633,"15.2-15.3":1.96731,"15.4":0.98557,"15.5":1.56273,"15.6":4.80706,"16.0":2.21274,"16.1":0.03451},P:{"4":0.08465,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05291,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03175,"12.0":0.01058,"13.0":0.04233,"14.0":0.02116,"15.0":0.01058,"16.0":0.05291,"17.0":0.1164,"18.0":0.73014},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.04329,"4.2-4.3":0.10823,"4.4":0,"4.4.3-4.4.4":0.66022},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0172,"9":0.0172,"10":0,"11":0.28094,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.17476},H:{"0":0.78589},L:{"0":39.97109},S:{"2.5":0.00437},R:{_:"0"},M:{"0":0.12233},Q:{"13.1":0.00437}}; 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 e4c75ca23407dd..2986e4af6e1bdc 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00653,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00653,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00653,"53":0,"54":0,"55":0,"56":0.00653,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00653,"89":0,"90":0,"91":0.00653,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00653,"100":0.00653,"101":0.01958,"102":0.06525,"103":0.99833,"104":0.18923,"105":0.00653,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00653,"39":0,"40":0.00653,"41":0,"42":0,"43":0.01958,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00653,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00653,"56":0,"57":0,"58":0.00653,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.01305,"66":0,"67":0,"68":0,"69":0.00653,"70":0.00653,"71":0,"72":0,"73":0,"74":0.01305,"75":0.00653,"76":0,"77":0.01305,"78":0.00653,"79":0.01958,"80":0.0522,"81":0.01305,"83":0.01958,"84":0.00653,"85":0.00653,"86":0.09788,"87":0.0261,"88":0.01305,"89":0.00653,"90":0.00653,"91":0.01305,"92":0.00653,"93":0.01305,"94":0.00653,"95":0.03263,"96":0.01958,"97":0.0261,"98":0.03915,"99":0.05873,"100":0.0522,"101":0.0522,"102":0.12398,"103":4.22168,"104":9.2655,"105":0.04568,"106":0.03915,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.01305,"25":0,"26":0,"27":0,"28":0.01305,"29":0,"30":0,"31":0,"32":0.01305,"33":0.00653,"34":0,"35":0,"36":0.00653,"37":0.00653,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00653,"48":0,"49":0,"50":0,"51":0.00653,"52":0,"53":0.00653,"54":0,"55":0,"56":0.04568,"57":0,"58":0.00653,"60":0.18923,"62":0,"63":0.54158,"64":0.1566,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00653,"80":0,"81":0,"82":0.00653,"83":0,"84":0,"85":0.00653,"86":0.00653,"87":0,"88":0.01305,"89":0.48285,"90":0.0522,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00653},B:{"12":0.03263,"13":0.01305,"14":0.01305,"15":0.00653,"16":0.01305,"17":0.00653,"18":0.03915,"79":0,"80":0,"81":0,"83":0,"84":0.01305,"85":0.00653,"86":0,"87":0,"88":0,"89":0.00653,"90":0.00653,"91":0,"92":0.01305,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00653,"100":0.00653,"101":0.00653,"102":0.01958,"103":7.91483,"104":15.52298,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00653,"14":0.01305,"15":0.00653,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00653,"11.1":0.00653,"12.1":0.01958,"13.1":0.0261,"14.1":0.03915,"15.1":0.00653,"15.2-15.3":0.01305,"15.4":0.01305,"15.5":0.05873,"15.6":0.06525,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00368,"6.0-6.1":0,"7.0-7.1":0.01399,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.1171,"10.0-10.2":0.00368,"10.3":0.0302,"11.0-11.2":0.00663,"11.3-11.4":0.04124,"12.0-12.1":0.02209,"12.2-12.5":0.73574,"13.0-13.1":0.01694,"13.2":0.00368,"13.3":0.0302,"13.4-13.7":0.07659,"14.0-14.4":0.33362,"14.5-14.8":0.49418,"15.0-15.1":0.15908,"15.2-15.3":0.33657,"15.4":0.40506,"15.5":1.36396,"15.6":3.08142,"16.0":0.08617},P:{"4":0.10953,"5.0-5.4":0.00996,"6.2-6.4":0,"7.2-7.4":0.10953,"8.2":0,"9.2":0.01991,"10.1":0,"11.1-11.2":0.08961,"12.0":0.00996,"13.0":0.00996,"14.0":0.01991,"15.0":0.01991,"16.0":0.0697,"17.0":0.30867,"18.0":0.25889},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00286,"4.2-4.3":0.01049,"4.4":0,"4.4.3-4.4.4":0.14495},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0522,"5.5":0},J:{"7":0,"10":0.00348},N:{"10":0,"11":0},L:{"0":42.0004},S:{"2.5":0.03128},R:{_:"0"},M:{"0":0.14943},Q:{"10.4":0},O:{"0":0.21198},H:{"0":4.37886}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00627,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00627,"51":0,"52":0.00627,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00627,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00627,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00627,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00627,"98":0,"99":0.00627,"100":0.00627,"101":0.01254,"102":0.02509,"103":0.05018,"104":0.87181,"105":0.2697,"106":0.01882,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00627,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00627,"41":0,"42":0,"43":0.01882,"44":0,"45":0,"46":0.00627,"47":0,"48":0,"49":0.00627,"50":0.00627,"51":0,"52":0,"53":0,"54":0,"55":0.00627,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00627,"70":0.00627,"71":0.00627,"72":0.00627,"73":0,"74":0.01254,"75":0.00627,"76":0.00627,"77":0.00627,"78":0,"79":0.01254,"80":0.0439,"81":0.01254,"83":0.00627,"84":0.01254,"85":0.00627,"86":0.01882,"87":0.01254,"88":0.00627,"89":0.01254,"90":0.00627,"91":0.01254,"92":0.00627,"93":0.02509,"94":0.01254,"95":0.02509,"96":0.01882,"97":0.01882,"98":0.05018,"99":0.0439,"100":0.03136,"101":0.03136,"102":0.16307,"103":0.31987,"104":3.2489,"105":23.77088,"106":0.14426,"107":0.01254,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0.00627,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00627,"25":0,"26":0,"27":0,"28":0.00627,"29":0,"30":0,"31":0,"32":0,"33":0.00627,"34":0,"35":0.00627,"36":0,"37":0.00627,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00627,"52":0,"53":0.01254,"54":0,"55":0.00627,"56":0.0439,"57":0.00627,"58":0.00627,"60":0.28851,"62":0,"63":0.26342,"64":0.44531,"65":0.02509,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00627,"86":0,"87":0,"88":0,"89":0.03136,"90":0.3575,"91":0.01882,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00627},B:{"12":0.05018,"13":0.01254,"14":0.01254,"15":0.01254,"16":0.00627,"17":0,"18":0.05018,"79":0,"80":0,"81":0,"83":0,"84":0.00627,"85":0,"86":0,"87":0,"88":0,"89":0.00627,"90":0.00627,"91":0,"92":0.01882,"93":0,"94":0,"95":0,"96":0.00627,"97":0,"98":0.00627,"99":0.01254,"100":0.00627,"101":0.00627,"102":0.01254,"103":0.03136,"104":4.69773,"105":2.22029},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01254,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00627,"12.1":0.00627,"13.1":0.01882,"14.1":0.02509,"15.1":0.00627,"15.2-15.3":0.00627,"15.4":0.00627,"15.5":0.02509,"15.6":0.07526,"16.0":0.01882,"16.1":0},G:{"8":0.0008,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01119,"6.0-6.1":0,"7.0-7.1":0.01679,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02639,"10.0-10.2":0.0016,"10.3":0.11195,"11.0-11.2":0.0024,"11.3-11.4":0.02159,"12.0-12.1":0.04078,"12.2-12.5":0.82762,"13.0-13.1":0.004,"13.2":0.01359,"13.3":0.02399,"13.4-13.7":0.10075,"14.0-14.4":0.32945,"14.5-14.8":0.42621,"15.0-15.1":0.12234,"15.2-15.3":0.31985,"15.4":0.31426,"15.5":0.70688,"15.6":3.34808,"16.0":0.75086,"16.1":0.0032},P:{"4":0.1357,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04175,"8.2":0,"9.2":0.08351,"10.1":0,"11.1-11.2":0.08351,"12.0":0,"13.0":0.01044,"14.0":0.01044,"15.0":0.01044,"16.0":0.05219,"17.0":0.10438,"18.0":0.51148},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00908,"4.2-4.3":0.01135,"4.4":0,"4.4.3-4.4.4":0.19857},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0439,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00746},O:{"0":0.13421},H:{"0":5.83768},L:{"0":42.69803},S:{"2.5":0.01864},R:{_:"0"},M:{"0":0.08574},Q:{"13.1":0}}; 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 efba6282d7a192..3a7c3797dd62c5 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.002,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.004,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.002,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.002,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.002,"100":0.002,"101":0.002,"102":0.004,"103":0.1019,"104":0.01998,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.002,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.002,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.002,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.002,"68":0.002,"69":0.002,"70":0,"71":0,"72":0.002,"73":0.002,"74":0.002,"75":0.002,"76":0,"77":0,"78":0.002,"79":0.00999,"80":0.002,"81":0.004,"83":0.002,"84":0.002,"85":0.004,"86":0.004,"87":0.00999,"88":0.004,"89":0.002,"90":0.002,"91":0.004,"92":0.02198,"93":0.004,"94":0.002,"95":0.002,"96":0.00799,"97":0.00599,"98":0.00599,"99":0.00799,"100":0.00999,"101":0.01199,"102":0.03796,"103":0.63337,"104":1.84016,"105":0.00799,"106":0.002,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.002,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.002,"64":0.002,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.002,"80":0,"81":0,"82":0.002,"83":0.002,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.03796,"90":0.002,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.002,"15":0,"16":0,"17":0,"18":0.004,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.002,"93":0,"94":0,"95":0,"96":0.002,"97":0.002,"98":0.002,"99":0.002,"100":0.002,"101":0.00999,"102":0.00599,"103":0.12587,"104":0.28971,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.004,"14":0.01998,"15":0.00599,_:"0","3.1":0,"3.2":0,"5.1":0.002,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.002,"12.1":0.002,"13.1":0.01199,"14.1":0.04196,"15.1":0.00999,"15.2-15.3":0.00799,"15.4":0.02797,"15.5":0.09391,"15.6":0.12188,"16.0":0.002},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.01839,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06896,"10.0-10.2":0,"10.3":0.25745,"11.0-11.2":0.01379,"11.3-11.4":0.01839,"12.0-12.1":0.05057,"12.2-12.5":0.6988,"13.0-13.1":0.08735,"13.2":0.05977,"13.3":0.19309,"13.4-13.7":0.58387,"14.0-14.4":2.85497,"14.5-14.8":4.0227,"15.0-15.1":1.71022,"15.2-15.3":2.0964,"15.4":3.6779,"15.5":12.37612,"15.6":17.00107,"16.0":0.15171},P:{"4":0.04121,"5.0-5.4":0.0103,"6.2-6.4":0,"7.2-7.4":0.09273,"8.2":0,"9.2":0.02061,"10.1":0,"11.1-11.2":0.04121,"12.0":0.0103,"13.0":0.06182,"14.0":0.09273,"15.0":0.04121,"16.0":0.15455,"17.0":0.82424,"18.0":1.00969},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01031,"4.2-4.3":0.00687,"4.4":0,"4.4.3-4.4.4":0.11681},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02797,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":46.14807},S:{"2.5":0},R:{_:"0"},M:{"0":0.08802},Q:{"10.4":0},O:{"0":0.58415},H:{"0":0.12121}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00219,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00219,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00219,"103":0.00657,"104":0.09632,"105":0.03721,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00219,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00219,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00219,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00219,"66":0,"67":0.00219,"68":0.00219,"69":0.00219,"70":0.00219,"71":0.00219,"72":0.00219,"73":0,"74":0.00219,"75":0,"76":0.00219,"77":0,"78":0.00219,"79":0.01095,"80":0.00219,"81":0.00219,"83":0.00219,"84":0.00219,"85":0.00438,"86":0.00438,"87":0.01095,"88":0.00438,"89":0.00219,"90":0.00219,"91":0.00657,"92":0.02408,"93":0.00219,"94":0.00219,"95":0.00438,"96":0.00876,"97":0.00438,"98":0.00657,"99":0.00657,"100":0.00657,"101":0.00876,"102":0.01751,"103":0.05254,"104":0.57571,"105":2.49327,"106":0.05691,"107":0.00219,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00219,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00219,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00219,"83":0.00219,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00219,"90":0.03721,"91":0.00219,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00219,"15":0,"16":0,"17":0,"18":0.00219,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00219,"93":0,"94":0,"95":0,"96":0,"97":0.00219,"98":0.00219,"99":0,"100":0.00219,"101":0.00438,"102":0.00438,"103":0.00876,"104":0.10288,"105":0.38745},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00438,"14":0.0197,"15":0.00438,_:"0","3.1":0,"3.2":0,"5.1":0.00657,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00219,"12.1":0.00219,"13.1":0.01313,"14.1":0.04159,"15.1":0.00876,"15.2-15.3":0.00876,"15.4":0.02408,"15.5":0.05473,"15.6":0.19482,"16.0":0.02408,"16.1":0.00219},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.03022,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07052,"10.0-10.2":0,"10.3":0.67499,"11.0-11.2":0,"11.3-11.4":0.01511,"12.0-12.1":0.06548,"12.2-12.5":0.60447,"13.0-13.1":0.07556,"13.2":0.05541,"13.3":0.19645,"13.4-13.7":0.48861,"14.0-14.4":2.60426,"14.5-14.8":3.60164,"15.0-15.1":1.45073,"15.2-15.3":1.67237,"15.4":2.56397,"15.5":5.99938,"15.6":22.58708,"16.0":6.624,"16.1":0.03022},P:{"4":0.06121,"5.0-5.4":0.0102,"6.2-6.4":0,"7.2-7.4":0.08161,"8.2":0,"9.2":0.0102,"10.1":0,"11.1-11.2":0.04081,"12.0":0.0102,"13.0":0.06121,"14.0":0.08161,"15.0":0.04081,"16.0":0.13262,"17.0":0.22443,"18.0":1.61183},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00838,"4.2-4.3":0.00419,"4.4":0,"4.4.3-4.4.4":0.06494},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03502,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.54677},H:{"0":0.11092},L:{"0":42.02086},S:{"2.5":0},R:{_:"0"},M:{"0":0.07811},Q:{"13.1":0}}; 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 0867fbdfbd1b8a..1564c1f5945934 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00375,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00375,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00375,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00375,"91":0,"92":0.01875,"93":0,"94":0.16875,"95":0,"96":0.00375,"97":0,"98":0,"99":0,"100":0.00375,"101":0.21,"102":0.01875,"103":0.555,"104":0.195,"105":0.00375,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.0075,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01125,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.0075,"41":0,"42":0,"43":0.00375,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.015,"70":0.0075,"71":0.00375,"72":0,"73":0,"74":0,"75":0.00375,"76":0,"77":0.015,"78":0.00375,"79":0.00375,"80":0.00375,"81":0.00375,"83":0.70125,"84":0,"85":0,"86":0,"87":0.0075,"88":0,"89":0,"90":0.01125,"91":0.00375,"92":0.0075,"93":0.00375,"94":0,"95":0,"96":0,"97":0.00375,"98":0,"99":0.01125,"100":0.0225,"101":0.01125,"102":0.08625,"103":1.77,"104":3.95625,"105":0.03,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0.00375,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00375,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00375,"57":0,"58":0.0075,"60":0.00375,"62":0,"63":0.04125,"64":0.0375,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.015,"85":0,"86":0,"87":0,"88":0,"89":0.13125,"90":0.01875,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00375},B:{"12":0.02625,"13":0.01875,"14":0.5175,"15":0.0525,"16":0.01875,"17":0.03,"18":0.16875,"79":0,"80":0.00375,"81":0,"83":0.00375,"84":0.015,"85":0.01875,"86":0,"87":0,"88":0.00375,"89":0.01125,"90":0.0075,"91":0,"92":0.01875,"93":0.00375,"94":0,"95":0.01875,"96":0.0075,"97":0.00375,"98":0.00375,"99":0.01125,"100":0,"101":0.04875,"102":0.01875,"103":0.65625,"104":1.0125,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0075,"14":0.00375,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.0075,"10.1":0,"11.1":0.0075,"12.1":0.0075,"13.1":0.0075,"14.1":0.02625,"15.1":0.0075,"15.2-15.3":0,"15.4":0.00375,"15.5":0.06,"15.6":0.0375,"16.0":0},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.00223,"9.0-9.2":0,"9.3":0.05474,"10.0-10.2":0.00223,"10.3":0.06479,"11.0-11.2":0.00894,"11.3-11.4":0.01229,"12.0-12.1":0.00223,"12.2-12.5":0.18878,"13.0-13.1":0,"13.2":0.00223,"13.3":0.02122,"13.4-13.7":0.42951,"14.0-14.4":1.42424,"14.5-14.8":0.7596,"15.0-15.1":0.02513,"15.2-15.3":0.22844,"15.4":0.16365,"15.5":1.13828,"15.6":1.0087,"16.0":0.05027},P:{"4":0.40157,"5.0-5.4":0,"6.2-6.4":0.03012,"7.2-7.4":0.38149,"8.2":0.01004,"9.2":0.10039,"10.1":0,"11.1-11.2":0.03012,"12.0":0.2811,"13.0":0.55216,"14.0":0.08031,"15.0":0.06024,"16.0":0.32125,"17.0":0.31122,"18.0":0.32125},I:{"0":0,"3":0,"4":0.00772,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00772,"4.4":0,"4.4.3-4.4.4":0.20331},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.01125,"10":0,"11":0.27,"5.5":0},J:{"7":0,"10":0.025},N:{"10":0,"11":0},L:{"0":65.67625},S:{"2.5":0},R:{_:"0"},M:{"0":1.15},Q:{"10.4":0},O:{"0":7.49375},H:{"0":1.08875}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.01002,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01002,"79":0,"80":0.00334,"81":0.01002,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00334,"88":0.00334,"89":0,"90":0,"91":0,"92":0.03007,"93":0,"94":0.01002,"95":0.00334,"96":0,"97":0,"98":0.00334,"99":0.00334,"100":0,"101":0.01002,"102":0,"103":0.01336,"104":0.24389,"105":0.11359,"106":0.00334,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00668,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.02005,"35":0,"36":0,"37":0,"38":0.00334,"39":0,"40":0.02005,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00334,"57":0,"58":0.00334,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00334,"65":0,"66":0,"67":0,"68":0,"69":0.01002,"70":0.01002,"71":0,"72":0,"73":0,"74":0,"75":0.00334,"76":0,"77":0.00334,"78":0.01002,"79":0.00334,"80":0,"81":0.01336,"83":0.6114,"84":0,"85":0.00334,"86":0.00334,"87":0.02005,"88":0.00668,"89":0,"90":0.04677,"91":0.00334,"92":0.01002,"93":0.00334,"94":0.00334,"95":0.01002,"96":0.00334,"97":0,"98":0,"99":0.00334,"100":0.01671,"101":0,"102":0.04343,"103":0.14366,"104":0.98225,"105":3.25079,"106":0.07684,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0.00334,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00334,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00334,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00334,"60":0,"62":0,"63":0.01671,"64":0.0568,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00334,"85":0.00334,"86":0,"87":0,"88":0,"89":0,"90":0.08018,"91":0.00668,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00334,"13":0.00668,"14":0.16037,"15":0.03007,"16":0.02673,"17":0.01671,"18":0.04009,"79":0,"80":0,"81":0.00334,"83":0,"84":0.00334,"85":0,"86":0.00334,"87":0,"88":0,"89":0.00334,"90":0.00334,"91":0,"92":0.02005,"93":0,"94":0,"95":0.05012,"96":0.00668,"97":0.00668,"98":0,"99":0.00668,"100":0,"101":0.01671,"102":0.00334,"103":0.0568,"104":0.20046,"105":1.38317},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00334,"14":0.00334,"15":0.00334,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00668,"10.1":0,"11.1":0,"12.1":0.00334,"13.1":0.00334,"14.1":0.01002,"15.1":0.00668,"15.2-15.3":0,"15.4":0.00334,"15.5":0.00668,"15.6":0.01671,"16.0":0.00334,"16.1":0},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.00863,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04012,"10.0-10.2":0,"10.3":0.06342,"11.0-11.2":0.01467,"11.3-11.4":0.01035,"12.0-12.1":0.01898,"12.2-12.5":0.26618,"13.0-13.1":0.00647,"13.2":0,"13.3":0.04012,"13.4-13.7":0.04444,"14.0-14.4":0.74936,"14.5-14.8":0.59966,"15.0-15.1":0.04185,"15.2-15.3":0.07377,"15.4":0.21527,"15.5":0.20708,"15.6":1.69155,"16.0":0.21527,"16.1":0.00216},P:{"4":0.38921,"5.0-5.4":0.01024,"6.2-6.4":0.03073,"7.2-7.4":0.2663,"8.2":0,"9.2":0.04097,"10.1":0,"11.1-11.2":0.13315,"12.0":0.11267,"13.0":0.20485,"14.0":0.11267,"15.0":0.06145,"16.0":0.13315,"17.0":0.12291,"18.0":0.66575},I:{"0":0,"3":0,"4":0.00809,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00809,"4.4":0,"4.4.3-4.4.4":0.30726},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.14366,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":6.00642},H:{"0":2.0489},L:{"0":72.58574},S:{"2.5":0},R:{_:"0"},M:{"0":0.22641},Q:{"13.1":0.00666}}; 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 3c05edc4b6f5eb..a8a2755fac1309 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.2166,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.01057,"52":0,"53":0,"54":0,"55":0.00528,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0634,"69":0.02642,"70":0.03698,"71":0.12151,"72":0.04226,"73":0.05811,"74":0.04755,"75":0.04755,"76":0.10038,"77":0.03698,"78":0.04226,"79":0.03698,"80":0.03698,"81":0.62339,"82":0.04755,"83":0.04226,"84":0.07925,"85":0,"86":0.00528,"87":0,"88":0.00528,"89":0,"90":0,"91":0.07925,"92":0,"93":0,"94":0,"95":0.00528,"96":0,"97":0.00528,"98":0.00528,"99":0,"100":0.03698,"101":0.00528,"102":0.10566,"103":1.12,"104":0.13208,"105":0.00528,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.01585,"46":0.00528,"47":0,"48":0.00528,"49":0,"50":0,"51":0,"52":0,"53":0.00528,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.12679,"60":0,"61":0,"62":0.00528,"63":0.00528,"64":0,"65":0,"66":0,"67":0,"68":0.08453,"69":0.06868,"70":0.12151,"71":0.07396,"72":1.59547,"73":0.03698,"74":0.11094,"75":0.0634,"76":0.2166,"77":0.23774,"78":0.10566,"79":0.18491,"80":0.23774,"81":0.13208,"83":0.20604,"84":0.0634,"85":0.29585,"86":0.32755,"87":0.54943,"88":0.13208,"89":0.36981,"90":0.30641,"91":0.19547,"92":0.34868,"93":0.15849,"94":0.14264,"95":0.04755,"96":0.0317,"97":0.03698,"98":0.3434,"99":0.14264,"100":0.22189,"101":0.07925,"102":0.43321,"103":1.97584,"104":4.06263,"105":0.02642,"106":0.00528,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00528,"46":0.01057,"47":0.01057,"48":0.00528,"49":0.00528,"50":0,"51":0.00528,"52":0.00528,"53":0.04226,"54":0.04755,"55":0.04226,"56":0.01057,"57":0.00528,"58":0,"60":0.00528,"62":0.00528,"63":0.03698,"64":0.01057,"65":0.00528,"66":0.00528,"67":0.00528,"68":0.01057,"69":0.00528,"70":0.00528,"71":0.35396,"72":0.00528,"73":0.00528,"74":0.01057,"75":0.01057,"76":0.00528,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00528,"87":0,"88":0,"89":0.2483,"90":0.06868,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.01057,"13":0,"14":0,"15":0.01057,"16":0.02642,"17":0.03698,"18":0.09509,"79":0.02113,"80":0.04755,"81":0.05811,"83":0.05283,"84":0.06868,"85":0.23774,"86":0.05283,"87":0.02642,"88":0.02642,"89":0.03698,"90":0.04755,"91":0.00528,"92":0.00528,"93":0,"94":0,"95":0,"96":0.01585,"97":0.00528,"98":0,"99":0,"100":0.00528,"101":0.01585,"102":0.01057,"103":0.29585,"104":0.94566,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00528,"10":0,"11":0,"12":0,"13":0.10038,"14":0.02113,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.53887,"10.1":0,"11.1":0.0317,"12.1":0.5283,"13.1":0.0317,"14.1":0.17962,"15.1":0.07396,"15.2-15.3":0.07396,"15.4":0.07396,"15.5":0.08981,"15.6":0.22189,"16.0":0.00528},G:{"8":0.01293,"3.2":0.00323,"4.0-4.1":0.00647,"4.2-4.3":0.0388,"5.0-5.1":0.02102,"6.0-6.1":0.04203,"7.0-7.1":0.0582,"8.1-8.4":0.12609,"9.0-9.2":0.2344,"9.3":0.32169,"10.0-10.2":0.29906,"10.3":0.26511,"11.0-11.2":0.66925,"11.3-11.4":0.28451,"12.0-12.1":0.55932,"12.2-12.5":1.36275,"13.0-13.1":0.65793,"13.2":0.25056,"13.3":0.26835,"13.4-13.7":0.79857,"14.0-14.4":1.76365,"14.5-14.8":0.65793,"15.0-15.1":0.78564,"15.2-15.3":1.02004,"15.4":0.6547,"15.5":1.71354,"15.6":3.25087,"16.0":0.04526},P:{"4":0.05229,"5.0-5.4":0,"6.2-6.4":0.04183,"7.2-7.4":0.13595,"8.2":0,"9.2":0.05229,"10.1":0.13595,"11.1-11.2":0.13595,"12.0":0.05229,"13.0":0.08366,"14.0":0.06275,"15.0":0.03137,"16.0":0.11504,"17.0":1.03533,"18.0":0.75296},I:{"0":0,"3":0,"4":0.01248,"2.1":0,"2.2":0.01872,"2.3":0,"4.1":0.0156,"4.2-4.3":0.04993,"4.4":0,"4.4.3-4.4.4":0.41817},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00574,"7":0.00574,"8":0.54536,"9":0.47647,"10":0.29277,"11":0.85535,"5.5":0},J:{"7":0,"10":0.00472},N:{"10":0.11321,"11":0.0283},L:{"0":49.17931},S:{"2.5":0},R:{_:"0"},M:{"0":1.65567},Q:{"10.4":0.06132},O:{"0":0.95283},H:{"0":0.52249}}; +module.exports={C:{"2":0.00581,"3":0.00581,"4":0,"5":0.02322,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00581,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.22643,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01742,"39":0.00581,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00581,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01161,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01742,"61":0,"62":0,"63":0,"64":0,"65":0.00581,"66":0,"67":0,"68":0.05225,"69":0.02322,"70":0.01742,"71":0.01742,"72":0.01161,"73":0.01161,"74":0.01161,"75":0.01742,"76":0.02322,"77":0.02322,"78":0.05225,"79":0.02322,"80":0.02322,"81":0.65608,"82":0.12773,"83":0.01742,"84":0,"85":0,"86":0.01742,"87":0.00581,"88":0.01161,"89":0,"90":0,"91":1.30054,"92":0,"93":0.00581,"94":0.01161,"95":0.00581,"96":0,"97":0.00581,"98":0,"99":0,"100":0.01161,"101":0.00581,"102":0.12193,"103":0.08128,"104":0.79542,"105":0.16257,"106":0.00581,"107":0,"3.5":0,"3.6":0.00581},D:{"4":0.00581,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.01161,"25":0,"26":0,"27":0.00581,"28":0.00581,"29":0.00581,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00581,"36":0.00581,"37":0,"38":0.00581,"39":0,"40":0,"41":0.00581,"42":0,"43":0,"44":0,"45":0.06387,"46":0.00581,"47":0,"48":0.02903,"49":0.00581,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00581,"58":0.00581,"59":0.08128,"60":0,"61":0,"62":0.00581,"63":0.01161,"64":0.00581,"65":0,"66":0,"67":0,"68":0.07548,"69":0.05806,"70":0.05225,"71":0.05806,"72":1.41666,"73":0.03484,"74":0.08709,"75":0.04645,"76":0.05806,"77":0.04645,"78":0.18579,"79":0.08709,"80":0.12193,"81":0.0987,"83":0.41223,"84":0.64447,"85":0.35417,"86":0.42964,"87":0.84768,"88":0.12193,"89":0.3832,"90":0.28449,"91":0.26708,"92":0.36578,"93":0.20902,"94":0.1916,"95":0.89993,"96":0.04064,"97":0.08128,"98":0.40642,"99":0.0929,"100":0.16837,"101":0.05806,"102":0.16837,"103":0.39481,"104":1.8347,"105":7.29234,"106":0.15096,"107":0.01742,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00581,"46":0.01161,"47":0,"48":0.00581,"49":0.00581,"50":0,"51":0.00581,"52":0,"53":0.03484,"54":0.03484,"55":0.02903,"56":0.01161,"57":0,"58":0,"60":0.00581,"62":0,"63":0.01161,"64":0.08128,"65":0.01742,"66":0.00581,"67":0.01161,"68":0.00581,"69":0,"70":0,"71":0.53415,"72":0.01161,"73":0.00581,"74":0.00581,"75":0.00581,"76":0.01161,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.06387,"90":0.17418,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0.00581,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.01161,"13":0.01161,"14":0,"15":0.00581,"16":0.02322,"17":0.01742,"18":0.29611,"79":0.01161,"80":0.02903,"81":0.02903,"83":0.03484,"84":0.03484,"85":0.24385,"86":0.03484,"87":0.02322,"88":0.02903,"89":0.02322,"90":0.02322,"91":0.00581,"92":0.01742,"93":0,"94":0,"95":0,"96":0.04064,"97":0,"98":0,"99":0.00581,"100":0,"101":0.00581,"102":0.00581,"103":0.02322,"104":0.22063,"105":1.39925},E:{"4":0.00581,"5":0,"6":0,"7":0,"8":0,"9":0.01742,"10":0,"11":0,"12":0,"13":0.00581,"14":0.04064,"15":0.01161,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.45867,"10.1":0,"11.1":0.08128,"12.1":0.31352,"13.1":0.04064,"14.1":0.27869,"15.1":0.23224,"15.2-15.3":0.14515,"15.4":0.04645,"15.5":0.05806,"15.6":0.32514,"16.0":0.05806,"16.1":0.02322},G:{"8":0.01151,"3.2":0,"4.0-4.1":0.00719,"4.2-4.3":0.01726,"5.0-5.1":0.01439,"6.0-6.1":0.0259,"7.0-7.1":0.04892,"8.1-8.4":0.0446,"9.0-9.2":0.10359,"9.3":0.14387,"10.0-10.2":0.13668,"10.3":0.15826,"11.0-11.2":0.26473,"11.3-11.4":0.13668,"12.0-12.1":0.2302,"12.2-12.5":0.87331,"13.0-13.1":0.17696,"13.2":0.12229,"13.3":0.13524,"13.4-13.7":0.48197,"14.0-14.4":1.57828,"14.5-14.8":0.53233,"15.0-15.1":0.70498,"15.2-15.3":1.34809,"15.4":0.48917,"15.5":0.61002,"15.6":4.28452,"16.0":1.44016,"16.1":0.02734},P:{"4":0.05126,"5.0-5.4":0,"6.2-6.4":0.01025,"7.2-7.4":0.06151,"8.2":0,"9.2":0.0205,"10.1":0.07176,"11.1-11.2":0.06151,"12.0":0.01025,"13.0":0.22554,"14.0":0.0205,"15.0":0.07176,"16.0":0.03076,"17.0":0.15378,"18.0":1.41478},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0.00424,"2.3":0,"4.1":0.02122,"4.2-4.3":0.08912,"4.4":0,"4.4.3-4.4.4":0.13155},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00676,"7":0,"8":0.60872,"9":0.49374,"10":0.37199,"11":1.10246,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.01258},O:{"0":0.91429},H:{"0":0.38118},L:{"0":45.77945},S:{"2.5":0},R:{_:"0"},M:{"0":1.57275},Q:{"13.1":0.09227}}; 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 8611663c0c1f57..2e80cdaca0311a 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00139,"39":0,"40":0,"41":0,"42":0,"43":0.00139,"44":0.00139,"45":0,"46":0,"47":0.00278,"48":0.00139,"49":0.00139,"50":0,"51":0,"52":0.00417,"53":0,"54":0,"55":0,"56":0.00139,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00278,"69":0,"70":0,"71":0,"72":0.00278,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00139,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00139,"85":0,"86":0,"87":0,"88":0.00139,"89":0.00139,"90":0,"91":0.00417,"92":0.00417,"93":0.00139,"94":0.00139,"95":0.00417,"96":0.00139,"97":0.00139,"98":0.00278,"99":0.00556,"100":0.00417,"101":0.00417,"102":0.01112,"103":0.19182,"104":0.03753,"105":0.00139,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00139,"34":0,"35":0.00139,"36":0,"37":0,"38":0,"39":0,"40":0.00417,"41":0,"42":0,"43":0.00695,"44":0,"45":0,"46":0,"47":0.00139,"48":0,"49":0.00139,"50":0.00139,"51":0,"52":0,"53":0,"54":0,"55":0.00139,"56":0.00139,"57":0.00139,"58":0.00139,"59":0,"60":0,"61":0,"62":0.00139,"63":0.00278,"64":0.00139,"65":0.00278,"66":0,"67":0,"68":0.00139,"69":0.00139,"70":0.00417,"71":0.00139,"72":0.00139,"73":0,"74":0.00139,"75":0,"76":0.00278,"77":0.00139,"78":0.00417,"79":0.00417,"80":0.00556,"81":0.00556,"83":0.00139,"84":0.00139,"85":0.00139,"86":0.00278,"87":0.00695,"88":0.00556,"89":0.00139,"90":0.00278,"91":0.00278,"92":0.00695,"93":0.00695,"94":0.01112,"95":0.00278,"96":0.00973,"97":0.00834,"98":0.00556,"99":0.00417,"100":0.00834,"101":0.01251,"102":0.0278,"103":0.22379,"104":0.46426,"105":0.00278,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00278,"25":0,"26":0.00417,"27":0,"28":0.00695,"29":0.00139,"30":0.00139,"31":0,"32":0.00139,"33":0.00139,"34":0,"35":0,"36":0.00139,"37":0,"38":0.00139,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00139,"47":0.00139,"48":0,"49":0,"50":0,"51":0.00139,"52":0,"53":0,"54":0.00139,"55":0.00139,"56":0.00139,"57":0.00139,"58":0.00834,"60":0.0139,"62":0,"63":0.08896,"64":0.04587,"65":0.00139,"66":0,"67":0.00278,"68":0.00139,"69":0.00278,"70":0.00139,"71":0.00139,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00417,"80":0,"81":0,"82":0.00139,"83":0,"84":0.00139,"85":0.00278,"86":0.00139,"87":0,"88":0.00139,"89":0.06394,"90":0.00834,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00417,"10.6":0.00139,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00417},B:{"12":0.00278,"13":0.00139,"14":0.00278,"15":0,"16":0.00139,"17":0.00139,"18":0.00695,"79":0,"80":0,"81":0,"83":0,"84":0.00278,"85":0.00139,"86":0,"87":0,"88":0,"89":0.00139,"90":0.00139,"91":0.00139,"92":0.00417,"93":0,"94":0.00139,"95":0.00139,"96":0,"97":0.00139,"98":0.00139,"99":0.00139,"100":0.00139,"101":0.00417,"102":0.00278,"103":0.06255,"104":0.11676,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00278,"14":0.00695,"15":0.00278,_:"0","3.1":0,"3.2":0,"5.1":0.01112,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00139,"13.1":0.00139,"14.1":0.00556,"15.1":0.00139,"15.2-15.3":0,"15.4":0.00139,"15.5":0.01668,"15.6":0.01251,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00196,"5.0-5.1":0.00261,"6.0-6.1":0.00261,"7.0-7.1":0.00652,"8.1-8.4":0,"9.0-9.2":0.00391,"9.3":0.02806,"10.0-10.2":0.00196,"10.3":0.01827,"11.0-11.2":0.0124,"11.3-11.4":0.03262,"12.0-12.1":0.02414,"12.2-12.5":0.54415,"13.0-13.1":0.03915,"13.2":0.01631,"13.3":0.04306,"13.4-13.7":0.12266,"14.0-14.4":0.69486,"14.5-14.8":0.58264,"15.0-15.1":0.31709,"15.2-15.3":0.50304,"15.4":0.51674,"15.5":1.42626,"15.6":1.53066,"16.0":0.05024},P:{"4":0.82047,"5.0-5.4":0.04002,"6.2-6.4":0.06003,"7.2-7.4":0.41023,"8.2":0.02001,"9.2":0.08005,"10.1":0.02001,"11.1-11.2":0.1701,"12.0":0.05003,"13.0":0.14008,"14.0":0.49028,"15.0":0.14008,"16.0":0.61035,"17.0":0.96055,"18.0":0.37021},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00276,"4.2-4.3":0.01792,"4.4":0,"4.4.3-4.4.4":0.09601},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01668,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":69.02213},S:{"2.5":0.01722},R:{_:"0"},M:{"0":0.20664},Q:{"10.4":0.00861},O:{"0":1.51536},H:{"0":13.00147}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00285,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00143,"36":0,"37":0.00285,"38":0.00143,"39":0,"40":0,"41":0.00143,"42":0,"43":0.00143,"44":0,"45":0,"46":0,"47":0.00143,"48":0.00143,"49":0,"50":0,"51":0,"52":0.0057,"53":0,"54":0,"55":0,"56":0.00143,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00143,"66":0,"67":0,"68":0.00143,"69":0,"70":0,"71":0,"72":0.00428,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00143,"79":0,"80":0,"81":0,"82":0.0057,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00143,"89":0.00143,"90":0.00143,"91":0.00285,"92":0.0057,"93":0.00143,"94":0.00143,"95":0.00143,"96":0.00143,"97":0.00143,"98":0.00143,"99":0.00428,"100":0.00285,"101":0.00285,"102":0.00428,"103":0.01426,"104":0.18538,"105":0.04563,"106":0.00285,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00143,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00143,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00285,"41":0,"42":0.00143,"43":0.00428,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00143,"51":0.00143,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00143,"58":0.00143,"59":0,"60":0,"61":0,"62":0,"63":0.00285,"64":0.00143,"65":0.00998,"66":0,"67":0,"68":0.00143,"69":0.00143,"70":0.00285,"71":0.00285,"72":0.00143,"73":0,"74":0.00143,"75":0,"76":0.00143,"77":0.00143,"78":0.00428,"79":0.00713,"80":0.00143,"81":0.00713,"83":0.00428,"84":0.00285,"85":0.00143,"86":0.00285,"87":0.00856,"88":0.00713,"89":0.00143,"90":0.00285,"91":0.00428,"92":0.0057,"93":0.00713,"94":0.01141,"95":0.00143,"96":0.00998,"97":0.00428,"98":0.00428,"99":0.00285,"100":0.00428,"101":0.00713,"102":0.01569,"103":0.06417,"104":0.18538,"105":0.5647,"106":0.00713,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00285,"25":0,"26":0.00428,"27":0,"28":0.00713,"29":0.00713,"30":0.00428,"31":0,"32":0.00285,"33":0.00143,"34":0,"35":0,"36":0.00143,"37":0,"38":0.00143,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00143,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00143,"54":0.00143,"55":0.00143,"56":0,"57":0,"58":0.0057,"60":0.01711,"62":0,"63":0.04421,"64":0.12121,"65":0.00428,"66":0,"67":0.00143,"68":0,"69":0,"70":0.00285,"71":0.00285,"72":0.00143,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00428,"80":0,"81":0,"82":0,"83":0,"84":0.00143,"85":0.00143,"86":0.00143,"87":0,"88":0.00143,"89":0.00285,"90":0.06132,"91":0.00285,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00143,"10.6":0.00143,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00428},B:{"12":0.00285,"13":0.00143,"14":0.00143,"15":0.00143,"16":0.00143,"17":0.00143,"18":0.00856,"79":0,"80":0,"81":0,"83":0,"84":0.00285,"85":0,"86":0,"87":0,"88":0,"89":0.00143,"90":0.00428,"91":0,"92":0.00428,"93":0,"94":0.00143,"95":0,"96":0.00143,"97":0,"98":0.00143,"99":0,"100":0.00143,"101":0.00143,"102":0.00428,"103":0.01426,"104":0.0385,"105":0.15686},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00143,"14":0.00428,"15":0.00143,_:"0","3.1":0,"3.2":0,"5.1":0.04278,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00143,"13.1":0.00285,"14.1":0.00428,"15.1":0.00143,"15.2-15.3":0,"15.4":0.00143,"15.5":0.00856,"15.6":0.01711,"16.0":0.00143,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0025,"5.0-5.1":0.00313,"6.0-6.1":0.00501,"7.0-7.1":0.01064,"8.1-8.4":0.00125,"9.0-9.2":0.00438,"9.3":0.01691,"10.0-10.2":0.00188,"10.3":0.02066,"11.0-11.2":0.01002,"11.3-11.4":0.01565,"12.0-12.1":0.02317,"12.2-12.5":0.40887,"13.0-13.1":0.0432,"13.2":0.00877,"13.3":0.04696,"13.4-13.7":0.08954,"14.0-14.4":0.60798,"14.5-14.8":0.49089,"15.0-15.1":0.26486,"15.2-15.3":0.49089,"15.4":0.3976,"15.5":0.77203,"15.6":1.70811,"16.0":0.71442,"16.1":0.00501},P:{"4":0.81776,"5.0-5.4":0.05048,"6.2-6.4":0.06057,"7.2-7.4":0.38364,"8.2":0.0101,"9.2":0.07067,"10.1":0.05048,"11.1-11.2":0.12115,"12.0":0.05048,"13.0":0.12115,"14.0":0.43412,"15.0":0.11105,"16.0":0.68651,"17.0":0.61584,"18.0":1.08025},I:{"0":0,"3":0,"4":0.00109,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00218,"4.2-4.3":0.02508,"4.4":0,"4.4.3-4.4.4":0.09161},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03708,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":1.5176},H:{"0":10.98272},L:{"0":71.16528},S:{"2.5":0.01715},R:{_:"0"},M:{"0":0.20578},Q:{"13.1":0.00857}}; 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 f5b62eef848a31..016e3cbf55c733 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00861,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.0043,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0043,"69":0.0043,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03013,"79":0.00861,"80":0.01291,"81":0.01291,"82":0.0043,"83":0.0043,"84":0,"85":0,"86":0,"87":0,"88":0.0043,"89":0,"90":0,"91":0.02582,"92":0,"93":0,"94":0,"95":0,"96":0.0043,"97":0.0043,"98":0,"99":0.0043,"100":0.0043,"101":0.02152,"102":0.05165,"103":0.92966,"104":0.16355,"105":0.0043,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0043,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.0043,"49":0.01291,"50":0,"51":0,"52":0.0043,"53":0.0043,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.0043,"64":0.0043,"65":0.0043,"66":0.02582,"67":0.0043,"68":0.0043,"69":0.06456,"70":0,"71":0,"72":0,"73":0,"74":0.0043,"75":0.00861,"76":0.00861,"77":0.0043,"78":0.00861,"79":0.04734,"80":0.01291,"81":0.01291,"83":0.03013,"84":0.07747,"85":0.06886,"86":0.08608,"87":0.07747,"88":0.00861,"89":0.03013,"90":0.00861,"91":0.01291,"92":0.01291,"93":0.03013,"94":0.03443,"95":0.00861,"96":0.02582,"97":0.01722,"98":0.03443,"99":0.02582,"100":0.06026,"101":0.11621,"102":0.2152,"103":2.77608,"104":6.51195,"105":0.02152,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0043,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0043,"64":0,"65":0,"66":0,"67":0,"68":0.00861,"69":0.0043,"70":0.0043,"71":0.00861,"72":0.0043,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0043,"86":0.0043,"87":0,"88":0.00861,"89":0.4261,"90":0.02582,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.0043,"16":0,"17":0.0043,"18":0.01291,"79":0,"80":0.0043,"81":0,"83":0,"84":0.0043,"85":0.0043,"86":0.0043,"87":0,"88":0.0043,"89":0.0043,"90":0,"91":0,"92":0.0043,"93":0,"94":0,"95":0.0043,"96":0,"97":0,"98":0.0043,"99":0.0043,"100":0.01722,"101":0.03443,"102":0.04304,"103":0.69294,"104":2.01858,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02152,"14":0.09038,"15":0.02152,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.0043,"10.1":0.0043,"11.1":0.01291,"12.1":0.02582,"13.1":0.12482,"14.1":0.30128,"15.1":0.03874,"15.2-15.3":0.04304,"15.4":0.16355,"15.5":0.55522,"15.6":1.00283,"16.0":0.0043},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.0085,"9.0-9.2":0.0085,"9.3":0.10205,"10.0-10.2":0.00425,"10.3":0.16584,"11.0-11.2":0.04252,"11.3-11.4":0.07654,"12.0-12.1":0.04677,"12.2-12.5":0.97802,"13.0-13.1":0.02977,"13.2":0.02126,"13.3":0.08079,"13.4-13.7":0.29766,"14.0-14.4":0.8462,"14.5-14.8":2.87027,"15.0-15.1":0.472,"15.2-15.3":0.96526,"15.4":1.47128,"15.5":9.74192,"15.6":24.12731,"16.0":0.14883},P:{"4":0.14456,"5.0-5.4":0.01033,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01033,"12.0":0.02065,"13.0":0.0413,"14.0":0.05163,"15.0":0.03098,"16.0":0.12391,"17.0":1.64177,"18.0":2.61237},I:{"0":0,"3":0,"4":0.00816,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01905,"4.2-4.3":0.01633,"4.4":0,"4.4.3-4.4.4":0.07076},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0043,"9":0.0043,"10":0.0043,"11":0.07317,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":31.09445},S:{"2.5":0},R:{_:"0"},M:{"0":0.4329},Q:{"10.4":0.01709},O:{"0":0.01709},H:{"0":0.17796}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00519,"48":0,"49":0,"50":0,"51":0,"52":0.01039,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00519,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00519,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02078,"79":0.00519,"80":0.00519,"81":0.00519,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00519,"89":0,"90":0,"91":0.02597,"92":0,"93":0,"94":0,"95":0,"96":0.00519,"97":0,"98":0,"99":0.00519,"100":0.00519,"101":0.00519,"102":0.02078,"103":0.07272,"104":0.81546,"105":0.30645,"106":0.00519,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00519,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00519,"46":0,"47":0,"48":0,"49":0.01039,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00519,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00519,"66":0.02597,"67":0.00519,"68":0.00519,"69":0.04155,"70":0.00519,"71":0,"72":0,"73":0.00519,"74":0.00519,"75":0.01039,"76":0.01039,"77":0.00519,"78":0.00519,"79":0.03636,"80":0.02078,"81":0.01039,"83":0.03116,"84":0.02078,"85":0.02078,"86":0.05194,"87":0.04675,"88":0.01039,"89":0.03116,"90":0.01039,"91":0.01558,"92":0.01558,"93":0.05713,"94":0.06752,"95":0.00519,"96":0.04155,"97":0.02597,"98":0.04675,"99":0.03116,"100":0.05713,"101":0.09869,"102":0.11946,"103":0.4363,"104":3.30858,"105":12.14357,"106":0.20776,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00519,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00519,"65":0,"66":0,"67":0,"68":0.00519,"69":0.00519,"70":0,"71":0.00519,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00519,"86":0,"87":0,"88":0,"89":0.05194,"90":0.4363,"91":0.01558,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00519,"16":0,"17":0.00519,"18":0.00519,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00519,"86":0.00519,"87":0,"88":0,"89":0.00519,"90":0,"91":0,"92":0.00519,"93":0,"94":0,"95":0,"96":0.00519,"97":0,"98":0,"99":0.00519,"100":0.00519,"101":0.01558,"102":0.01558,"103":0.03116,"104":0.59212,"105":3.22028},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02078,"14":0.11427,"15":0.03116,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00519,"10.1":0,"11.1":0.01558,"12.1":0.03116,"13.1":0.14543,"14.1":0.37397,"15.1":0.05194,"15.2-15.3":0.05194,"15.4":0.19218,"15.5":0.32203,"15.6":1.63611,"16.0":0.16101,"16.1":0.00519},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.01216,"9.0-9.2":0.01216,"9.3":0.09324,"10.0-10.2":0,"10.3":0.13783,"11.0-11.2":0.02027,"11.3-11.4":0.07702,"12.0-12.1":0.03648,"12.2-12.5":0.81077,"13.0-13.1":0.02432,"13.2":0.01622,"13.3":0.06081,"13.4-13.7":0.20675,"14.0-14.4":0.63645,"14.5-14.8":2.45663,"15.0-15.1":0.35674,"15.2-15.3":0.61618,"15.4":0.85131,"15.5":2.46473,"15.6":26.10266,"16.0":4.83623,"16.1":0.02838},P:{"4":0.10346,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01035,"12.0":0.01035,"13.0":0.02069,"14.0":0.03104,"15.0":0.02069,"16.0":0.07242,"17.0":0.17589,"18.0":3.27976},I:{"0":0,"3":0,"4":0.01176,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00588,"4.2-4.3":0.01176,"4.4":0,"4.4.3-4.4.4":0.07059},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00519,"9":0.00519,"10":0,"11":0.05713,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.01442},H:{"0":0.14105},L:{"0":26.36851},S:{"2.5":0},R:{_:"0"},M:{"0":0.322},Q:{"13.1":0.00481}}; 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 8fff929694a5cc..8cb8ba2cdec899 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00256,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00256,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00767,"79":0.00256,"80":0.00256,"81":0.00256,"82":0.00256,"83":0.00256,"84":0,"85":0,"86":0,"87":0.00511,"88":0.00256,"89":0,"90":0,"91":0.00511,"92":0,"93":0,"94":0,"95":0,"96":0.00256,"97":0,"98":0,"99":0.00256,"100":0.00256,"101":0.00511,"102":0.01534,"103":0.30161,"104":0.05623,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00767,"35":0,"36":0,"37":0,"38":0.01789,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00511,"48":0,"49":0.00511,"50":0,"51":0,"52":0,"53":0.00511,"54":0,"55":0,"56":0.00256,"57":0,"58":0,"59":0,"60":0.00511,"61":0,"62":0,"63":0,"64":0,"65":0.00256,"66":0.00256,"67":0.00256,"68":0,"69":0,"70":0,"71":0,"72":0.00256,"73":0.00256,"74":0.00256,"75":0,"76":0,"77":0.00256,"78":0.00256,"79":0.05623,"80":0.00511,"81":0.00767,"83":0.01534,"84":0.023,"85":0.01534,"86":0.023,"87":0.023,"88":0.00511,"89":0.00511,"90":0.00256,"91":0.00256,"92":0.01022,"93":0.00256,"94":0.00511,"95":0.00511,"96":0.01278,"97":0.01022,"98":0.01278,"99":0.01022,"100":0.02556,"101":0.023,"102":0.04345,"103":1.09908,"104":2.80649,"105":0.00767,"106":0.00256,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00256,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00256,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00767,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.02045,"64":0.02045,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00256,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00256,"89":0.06901,"90":0.00767,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00511,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00256,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00256,"102":0.00256,"103":0.15336,"104":0.41407,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00256,"9":0,"10":0,"11":0,"12":0,"13":0.00767,"14":0.02812,"15":0.00767,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00256,"12.1":0.00511,"13.1":0.03067,"14.1":0.07157,"15.1":0.01022,"15.2-15.3":0.01278,"15.4":0.04601,"15.5":0.18148,"15.6":0.3604,"16.0":0.00256},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.00773,"7.0-7.1":0.01547,"8.1-8.4":0.0116,"9.0-9.2":0.0058,"9.3":0.12179,"10.0-10.2":0.0058,"10.3":0.0638,"11.0-11.2":0.02127,"11.3-11.4":0.02127,"12.0-12.1":0.01547,"12.2-12.5":0.36345,"13.0-13.1":0.0174,"13.2":0.00773,"13.3":0.0406,"13.4-13.7":0.15273,"14.0-14.4":0.37505,"14.5-14.8":0.89702,"15.0-15.1":0.28419,"15.2-15.3":0.39825,"15.4":0.80036,"15.5":3.67121,"15.6":11.93191,"16.0":0.09086},P:{"4":0.39008,"5.0-5.4":0.02053,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0.02053,"13.0":0.0308,"14.0":0.01027,"15.0":0.01027,"16.0":0.06159,"17.0":1.07786,"18.0":1.89909},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":10.46647,"4.4":0,"4.4.3-4.4.4":27.91059},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00409,"9":0.00818,"10":0,"11":0.02863,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":23.38973},S:{"2.5":0},R:{_:"0"},M:{"0":0.45408},Q:{"10.4":0.00744},O:{"0":0.40942},H:{"0":0.50037}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00265,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00265,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00265,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00531,"79":0,"80":0.00265,"81":0.00265,"82":0.00265,"83":0.00265,"84":0,"85":0,"86":0,"87":0.00531,"88":0.00265,"89":0,"90":0.00265,"91":0.00265,"92":0.00265,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00265,"101":0.00265,"102":0.00531,"103":0.01592,"104":0.28122,"105":0.0902,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00265,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00796,"35":0,"36":0,"37":0,"38":0.02653,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00531,"48":0,"49":0.00531,"50":0,"51":0,"52":0,"53":0.00531,"54":0,"55":0,"56":0.00265,"57":0,"58":0.00265,"59":0,"60":0.00531,"61":0,"62":0,"63":0,"64":0,"65":0.00265,"66":0.00265,"67":0.00531,"68":0,"69":0.00265,"70":0,"71":0,"72":0.00265,"73":0.00265,"74":0.00265,"75":0,"76":0,"77":0.00265,"78":0.00531,"79":0.05306,"80":0.00531,"81":0.00796,"83":0.01592,"84":0.02388,"85":0.01857,"86":0.02918,"87":0.02918,"88":0.00531,"89":0.00531,"90":0.00265,"91":0.00531,"92":0.01061,"93":0.00265,"94":0.00265,"95":0.00265,"96":0.01061,"97":0.00796,"98":0.01327,"99":0.00531,"100":0.02122,"101":0.01592,"102":0.02653,"103":0.0902,"104":0.91529,"105":3.22074,"106":0.0398,"107":0.00265,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00265,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00265,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00796,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00265,"64":0.03184,"65":0.00265,"66":0,"67":0,"68":0,"69":0,"70":0.00265,"71":0.00265,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00531,"90":0.07694,"91":0.00265,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00265,"79":0,"80":0,"81":0,"83":0,"84":0.00265,"85":0.00265,"86":0.00265,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00265,"103":0.00796,"104":0.09816,"105":0.50407},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00265,"9":0,"10":0,"11":0,"12":0,"13":0.00531,"14":0.02388,"15":0.00796,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00265,"12.1":0.00531,"13.1":0.02918,"14.1":0.06367,"15.1":0.01061,"15.2-15.3":0.00796,"15.4":0.03449,"15.5":0.07694,"15.6":0.48815,"16.0":0.04775,"16.1":0.00265},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00408,"6.0-6.1":0.00612,"7.0-7.1":0.01428,"8.1-8.4":0.01224,"9.0-9.2":0.00612,"9.3":0.11831,"10.0-10.2":0.00204,"10.3":0.06731,"11.0-11.2":0.02244,"11.3-11.4":0.01836,"12.0-12.1":0.01428,"12.2-12.5":0.38961,"13.0-13.1":0.0204,"13.2":0.0102,"13.3":0.04284,"13.4-13.7":0.16319,"14.0-14.4":0.34269,"14.5-14.8":0.76494,"15.0-15.1":0.23866,"15.2-15.3":0.29986,"15.4":0.51404,"15.5":1.09744,"15.6":12.09219,"16.0":3.35554,"16.1":0.02652},P:{"4":0.40098,"5.0-5.4":0.02056,"6.2-6.4":0,"7.2-7.4":0.01028,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0.02056,"13.0":0.03084,"14.0":0.01028,"15.0":0.01028,"16.0":0.04113,"17.0":0.12338,"18.0":2.79656},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":10.05709,"4.4":0,"4.4.3-4.4.4":26.8189},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00796,"9":0.00796,"10":0.00398,"11":0.04377,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.46286},H:{"0":0.47299},L:{"0":23.99005},S:{"2.5":0},R:{_:"0"},M:{"0":0.42613},Q:{"13.1":0.01469}}; 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 e6c6b48ca4df0f..763a48c8e08ee9 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":100,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0},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":0,"16.0":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":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 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":0},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":2.64741,"103":0,"104":0,"105":0,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":6.61548,"105":0,"106":0,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0},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":5.67183,"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":0,"16.0":0,"16.1":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":26.08875,"18.0":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 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":51.04038},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0}}; 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 b1502cec139f29..446cb3aa262481 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.07685,"53":0.00512,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.02049,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00512,"67":0,"68":0.01025,"69":0,"70":0,"71":0,"72":0.00512,"73":0,"74":0,"75":0,"76":0.00512,"77":0.00512,"78":0.02562,"79":0,"80":0,"81":0,"82":0,"83":0.00512,"84":0.00512,"85":0,"86":0.01025,"87":0,"88":0.01537,"89":0,"90":0,"91":0.05635,"92":0.00512,"93":0,"94":0.00512,"95":0.01025,"96":0.00512,"97":0.01025,"98":0.00512,"99":0.02562,"100":0.02049,"101":0.01537,"102":0.18443,"103":2.65371,"104":0.53792,"105":0.00512,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02562,"50":0,"51":0,"52":0,"53":0,"54":0.00512,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00512,"68":0,"69":0.00512,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.03586,"77":0.00512,"78":0.01025,"79":0.02049,"80":0.01025,"81":0.01537,"83":0.00512,"84":0.02562,"85":0.00512,"86":0.02049,"87":0.01537,"88":0.00512,"89":0.02049,"90":0.04098,"91":0.01537,"92":0.02049,"93":0.00512,"94":0.00512,"95":0.00512,"96":0.03586,"97":0.02049,"98":0.03074,"99":0.02562,"100":0.04611,"101":0.03074,"102":0.14344,"103":4.5441,"104":11.34745,"105":0.03074,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00512,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01025,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00512,"64":0.00512,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00512,"86":0,"87":0,"88":0.01025,"89":0.70697,"90":0.07172,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00512,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00512,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.02049,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00512,"99":0,"100":0.00512,"101":0.02049,"102":0.01537,"103":0.74796,"104":1.99797,"105":0.00512},E:{"4":0,"5":0.01025,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01025,"14":0.04098,"15":0.01537,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00512,"12.1":0.01537,"13.1":0.0666,"14.1":0.11271,"15.1":0.04098,"15.2-15.3":0.02562,"15.4":0.08709,"15.5":0.24078,"15.6":0.46107,"16.0":0.00512},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.00197,"8.1-8.4":0.00394,"9.0-9.2":0,"9.3":0.02953,"10.0-10.2":0,"10.3":0.08466,"11.0-11.2":0.00984,"11.3-11.4":0.01772,"12.0-12.1":0.01378,"12.2-12.5":0.24216,"13.0-13.1":0.00394,"13.2":0.00394,"13.3":0.02559,"13.4-13.7":0.09253,"14.0-14.4":0.26775,"14.5-14.8":1.23049,"15.0-15.1":0.30713,"15.2-15.3":0.61623,"15.4":1.13402,"15.5":5.30982,"15.6":9.94237,"16.0":0.3406},P:{"4":0.1136,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01033,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03098,"12.0":0.01033,"13.0":0.05163,"14.0":0.07229,"15.0":0.07229,"16.0":0.18588,"17.0":1.32185,"18.0":1.73493},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.10071,"4.2-4.3":0.03357,"4.4":0,"4.4.3-4.4.4":0.13428},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.08709,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":47.27517},S:{"2.5":0.00488},R:{_:"0"},M:{"0":0.41942},Q:{"10.4":0.00488},O:{"0":0.01463},H:{"0":0.22624}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0645,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01075,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01075,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00538,"77":0,"78":0.03225,"79":0,"80":0,"81":0,"82":0,"83":0.00538,"84":0.00538,"85":0,"86":0.00538,"87":0,"88":0.01613,"89":0,"90":0,"91":0.04838,"92":0.01613,"93":0,"94":0.00538,"95":0.01075,"96":0.00538,"97":0.01075,"98":0.01075,"99":0.01075,"100":0.01075,"101":0.01075,"102":0.03225,"103":0.15588,"104":2.54238,"105":0.86538,"106":0.00538,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02688,"50":0,"51":0.02688,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00538,"68":0,"69":0.00538,"70":0,"71":0,"72":0,"73":0.00538,"74":0.00538,"75":0,"76":0.01075,"77":0.00538,"78":0.01075,"79":0.0215,"80":0.01075,"81":0.01075,"83":0,"84":0.00538,"85":0.01613,"86":0.01613,"87":0.01075,"88":0.00538,"89":0.0215,"90":0.0215,"91":0.01613,"92":0.02688,"93":0.00538,"94":0.01075,"95":0.00538,"96":0.01613,"97":0.02688,"98":0.05375,"99":0.01613,"100":0.05375,"101":0.02688,"102":0.06988,"103":0.258,"104":3.526,"105":14.31363,"106":0.31713,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00538,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01075,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00538,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01075,"86":0,"87":0,"88":0,"89":0.05375,"90":0.76325,"91":0.01613,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00538,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00538,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00538,"99":0,"100":0.00538,"101":0.00538,"102":0.00538,"103":0.05375,"104":0.41925,"105":2.29513},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01075,"14":0.03763,"15":0.01613,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01613,"12.1":0.01075,"13.1":0.08063,"14.1":0.1075,"15.1":0.05375,"15.2-15.3":0.01613,"15.4":0.07525,"15.5":0.1075,"15.6":0.62888,"16.0":0.12363,"16.1":0.01075},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.00408,"8.1-8.4":0.00408,"9.0-9.2":0,"9.3":0.02857,"10.0-10.2":0,"10.3":0.0551,"11.0-11.2":0.02245,"11.3-11.4":0.0102,"12.0-12.1":0.0102,"12.2-12.5":0.19386,"13.0-13.1":0.00408,"13.2":0.00612,"13.3":0.02245,"13.4-13.7":0.0755,"14.0-14.4":0.32242,"14.5-14.8":1.01828,"15.0-15.1":0.22243,"15.2-15.3":0.55913,"15.4":0.60199,"15.5":1.71821,"15.6":11.28265,"16.0":3.74048,"16.1":0.06734},P:{"4":0.13341,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02053,"12.0":0.01026,"13.0":0.03079,"14.0":0.07184,"15.0":0.07184,"16.0":0.09236,"17.0":0.35919,"18.0":2.66827},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.05016,"4.2-4.3":0.02508,"4.4":0,"4.4.3-4.4.4":0.20064},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.09138,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.0185},H:{"0":0.2058},L:{"0":44.0055},S:{"2.5":0},R:{_:"0"},M:{"0":0.54113},Q:{"13.1":0}}; 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 bb1225fbf67f08..999420eaa471d3 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:{"14":0.02807,"33":0.00936,"46":0.00468,"47":0.00468,"52":0.10762,"56":0.00468,"58":0.00936,"66":0.00936,"68":0.01872,"72":0.00468,"78":0.02807,"84":0.00936,"88":0.01404,"91":0.09826,"92":0.00468,"93":0.00468,"94":0.00936,"95":0.00468,"96":0.01404,"97":0.00936,"98":0.02807,"99":0.04679,"100":0.0234,"101":0.03743,"102":0.21056,"103":4.35147,"104":0.81883,_:"2 3 4 5 6 7 8 9 10 11 12 13 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 48 49 50 51 53 54 55 57 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 105 106 3.5 3.6"},D:{"34":0.00468,"38":0.05147,"43":0.00468,"47":0.01404,"49":0.09358,"53":0.03275,"63":0.10294,"68":0.00468,"69":0.09826,"70":0.0234,"72":0.05147,"74":0.00468,"75":0.00468,"76":0.00468,"79":0.36028,"80":0.00936,"81":0.05147,"83":0.04211,"84":0.02807,"85":0.0234,"86":0.06083,"87":0.03743,"88":0.00936,"89":0.03743,"90":0.0234,"91":0.01404,"92":0.03275,"93":0.01872,"94":0.00936,"95":0.01404,"96":0.04679,"97":0.0234,"98":0.02807,"99":0.06083,"100":0.05147,"101":0.09826,"102":0.24331,"103":7.44429,"104":19.67987,"105":0.04211,_:"4 5 6 7 8 9 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 48 50 51 52 54 55 56 57 58 59 60 61 62 64 65 66 67 71 73 77 78 106 107 108"},F:{"28":0.01404,"36":0.00936,"46":0.01872,"58":0.00468,"68":0.01404,"72":0.0234,"79":0.00936,"82":0.00936,"84":0.01404,"85":0.06083,"86":0.00468,"87":0.00468,"88":0.05147,"89":2.74657,"90":0.32753,_:"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 60 62 63 64 65 66 67 69 70 71 73 74 75 76 77 78 80 81 83 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01872,"91":0.01404,"96":0.00936,"100":0.00468,"101":0.05615,"102":0.04679,"103":1.03406,"104":2.93841,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 92 93 94 95 97 98 99 105"},E:{"4":0,"13":0.01872,"14":0.10762,"15":0.02807,_:"0 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.00468,"12.1":0.03275,"13.1":0.10762,"14.1":0.23395,"15.1":0.06551,"15.2-15.3":0.06083,"15.4":0.14037,"15.5":0.55212,"15.6":0.87497,"16.0":0.01872},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01828,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02628,"10.0-10.2":0,"10.3":0.08799,"11.0-11.2":0.00229,"11.3-11.4":0.00457,"12.0-12.1":0.00571,"12.2-12.5":0.2274,"13.0-13.1":0.00343,"13.2":0.01143,"13.3":0.01028,"13.4-13.7":0.07085,"14.0-14.4":0.18283,"14.5-14.8":0.51422,"15.0-15.1":0.21026,"15.2-15.3":0.30167,"15.4":0.54164,"15.5":2.72763,"15.6":6.29399,"16.0":0.17598},P:{"4":0.38536,"5.0-5.4":0.02053,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02083,"12.0":0.02053,"13.0":0.03125,"14.0":0.05208,"15.0":0.02083,"16.0":0.08332,"17.0":0.9582,"18.0":1.40605},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01218,"4.2-4.3":0.01096,"4.4":0,"4.4.3-4.4.4":0.07794},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.19184,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":37.79058},S:{"2.5":0},R:{_:"0"},M:{"0":0.30324},Q:{"10.4":0},O:{"0":0.04788},H:{"0":0.62454}}; +module.exports={C:{"33":0.00481,"47":0.00481,"52":0.12509,"56":0.00962,"66":0.00962,"68":0.02887,"72":0.02406,"78":0.03368,"84":0.00962,"88":0.00962,"89":0.00481,"91":0.07698,"92":0.00481,"94":0.00962,"95":0.00481,"96":0.0433,"97":0.00962,"98":0.01443,"99":0.03849,"100":0.01443,"101":0.01924,"102":0.09622,"103":0.24536,"104":4.26255,"105":1.61169,"106":0.00962,_:"2 3 4 5 6 7 8 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 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 85 86 87 90 93 107 3.5 3.6"},D:{"34":0.00962,"38":0.06254,"39":0.00481,"47":0.00962,"49":0.0866,"53":0.02406,"63":0.09622,"68":0.00481,"69":0.05292,"70":0.00481,"71":0.01924,"72":0.03368,"73":0.01443,"74":0.00962,"75":0.00481,"76":0.01924,"79":0.38969,"80":0.00962,"81":0.03849,"83":0.03368,"84":0.06254,"85":0.10103,"86":0.03849,"87":0.05292,"88":0.01924,"89":0.03368,"90":0.01924,"91":0.00962,"92":0.02887,"93":0.01443,"94":0.00962,"95":0.00962,"96":0.02887,"97":0.02887,"98":0.03849,"99":0.03368,"100":0.0433,"101":0.05292,"102":0.10103,"103":0.47629,"104":5.75877,"105":21.67356,"106":0.44742,"107":0.00481,_:"4 5 6 7 8 9 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 54 55 56 57 58 59 60 61 62 64 65 66 67 77 78 108 109"},F:{"28":0.03849,"36":0.00962,"46":0.01924,"68":0.00962,"79":0.00962,"82":0.00481,"84":0.00481,"85":0.0433,"88":0.00962,"89":0.20206,"90":2.72303,"91":0.11065,_:"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 69 70 71 72 73 74 75 76 77 78 80 81 83 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01924,"83":0.03368,"86":0.01443,"91":0.00481,"92":0.00481,"96":0.00481,"97":0.00481,"99":0.00481,"100":0.00481,"101":0.01924,"102":0.02406,"103":0.03368,"104":0.59175,"105":3.44468,_:"12 13 14 15 16 17 79 80 81 84 85 87 88 89 90 93 94 95 98"},E:{"4":0,"12":0.00481,"13":0.01443,"14":0.07217,"15":0.02887,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00962,"11.1":0.00962,"12.1":0.02406,"13.1":0.09622,"14.1":0.20206,"15.1":0.0433,"15.2-15.3":0.05292,"15.4":0.11546,"15.5":0.26942,"15.6":0.96701,"16.0":0.24536,"16.1":0.02406},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0133,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02217,"10.0-10.2":0,"10.3":0.08648,"11.0-11.2":0.00665,"11.3-11.4":0.00776,"12.0-12.1":0.00222,"12.2-12.5":0.22728,"13.0-13.1":0.00333,"13.2":0.00776,"13.3":0.00998,"13.4-13.7":0.08093,"14.0-14.4":0.16076,"14.5-14.8":0.40023,"15.0-15.1":0.13969,"15.2-15.3":0.2051,"15.4":0.29823,"15.5":0.82706,"15.6":6.06551,"16.0":2.22953,"16.1":0.03548},P:{"4":0.42033,"5.0-5.4":0.02056,"6.2-6.4":0,"7.2-7.4":0.01028,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03152,"12.0":0.02056,"13.0":0.03152,"14.0":0.02102,"15.0":0.01028,"16.0":0.05254,"17.0":0.15762,"18.0":2.21723},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00682,"4.2-4.3":0.01363,"4.4":0,"4.4.3-4.4.4":0.09371},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.09622,_:"6 7 8 9 10 5.5"},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.04151},H:{"0":0.57478},L:{"0":36.76458},S:{"2.5":0},R:{_:"0"},M:{"0":0.29058},Q:{"13.1":0}}; 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 f857386966c700..5da432a95743a3 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00172,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00172,"89":0.00172,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00515,"96":0.00172,"97":0,"98":0,"99":0,"100":0.00172,"101":0.00172,"102":0.00515,"103":0.08418,"104":0.02405,"105":0.00344,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00172,"39":0,"40":0.00172,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00172,"59":0,"60":0.00172,"61":0,"62":0,"63":0.00172,"64":0.00172,"65":0.00172,"66":0,"67":0,"68":0,"69":0.00172,"70":0.00172,"71":0,"72":0.00172,"73":0,"74":0.00172,"75":0.00172,"76":0.00172,"77":0.00172,"78":0.00172,"79":0.00515,"80":0,"81":0.00344,"83":0,"84":0,"85":0.00172,"86":0.00344,"87":0.00172,"88":0,"89":0,"90":0,"91":0.00172,"92":0.00344,"93":0.01718,"94":0.00172,"95":0.01203,"96":0.00172,"97":0.00515,"98":0.00344,"99":0.00859,"100":0.00515,"101":0.00515,"102":0.0189,"103":0.28003,"104":0.57725,"105":0.00344,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.00687,"21":0,"22":0,"23":0,"24":0.00687,"25":0,"26":0.01203,"27":0.00687,"28":0.00515,"29":0,"30":0.00859,"31":0.00515,"32":0.00515,"33":0.00859,"34":0,"35":0,"36":0,"37":0,"38":0.00344,"39":0,"40":0,"41":0,"42":0.00344,"43":0,"44":0,"45":0,"46":0.00172,"47":0,"48":0,"49":0,"50":0.00859,"51":0.00172,"52":0,"53":0,"54":0.00515,"55":0.00344,"56":0.00172,"57":0.01031,"58":0.02062,"60":0.2955,"62":0.00344,"63":0.93116,"64":0.24911,"65":0.00859,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00172,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00344,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00172,"86":0.00172,"87":0.00172,"88":0.00172,"89":0.07044,"90":0.0189,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.07216},B:{"12":0.00859,"13":0.00687,"14":0.00344,"15":0.00687,"16":0.00515,"17":0,"18":0.01031,"79":0,"80":0,"81":0,"83":0,"84":0.00344,"85":0,"86":0,"87":0,"88":0,"89":0.00172,"90":0.00172,"91":0,"92":0.00515,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00172,"99":0.00172,"100":0.00172,"101":0.00515,"102":0.00344,"103":0.07903,"104":0.17352,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00344,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00172,"12.1":0.00172,"13.1":0.00172,"14.1":0.00172,"15.1":0.00172,"15.2-15.3":0,"15.4":0.00172,"15.5":0.02921,"15.6":0.00687,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0.00207,"4.2-4.3":0,"5.0-5.1":0.00345,"6.0-6.1":0.00069,"7.0-7.1":0.01864,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07665,"10.0-10.2":0.00552,"10.3":0.09529,"11.0-11.2":0.00691,"11.3-11.4":0.01657,"12.0-12.1":0.0435,"12.2-12.5":0.72228,"13.0-13.1":0.06629,"13.2":0.00829,"13.3":0.08217,"13.4-13.7":0.15606,"14.0-14.4":1.00125,"14.5-14.8":0.76579,"15.0-15.1":0.56623,"15.2-15.3":0.36529,"15.4":0.50684,"15.5":1.02611,"15.6":1.28437,"16.0":0.08286},P:{"4":0.12438,"5.0-5.4":0.02073,"6.2-6.4":0,"7.2-7.4":0.09328,"8.2":0,"9.2":0.04146,"10.1":0,"11.1-11.2":0.22803,"12.0":0,"13.0":0.01036,"14.0":0.03109,"15.0":0.04146,"16.0":0.50788,"17.0":0.36277,"18.0":0.26949},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00317,"4.2-4.3":0.00529,"4.4":0,"4.4.3-4.4.4":0.15229},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01203,"5.5":0},J:{"7":0,"10":0.02485},N:{"10":0,"11":0},L:{"0":68.1081},S:{"2.5":0.00828},R:{_:"0"},M:{"0":0.0911},Q:{"10.4":0},O:{"0":1.02697},H:{"0":15.90911}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00365,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00183,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00183,"92":0,"93":0,"94":0,"95":0.00365,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00183,"103":0.0073,"104":0.07665,"105":0.03285,"106":0.00548,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00183,"29":0,"30":0.00183,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00183,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.01278,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00365,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00365,"71":0,"72":0.00183,"73":0,"74":0.04198,"75":0.00365,"76":0.00183,"77":0.00183,"78":0,"79":0.00365,"80":0.00183,"81":0.00365,"83":0.00183,"84":0,"85":0,"86":0.00365,"87":0.00548,"88":0.00183,"89":0,"90":0.00183,"91":0.00365,"92":0.00183,"93":0.00365,"94":0,"95":0.00365,"96":0.00365,"97":0.00548,"98":0.00183,"99":0.00365,"100":0.0073,"101":0.00365,"102":0.0073,"103":0.03285,"104":0.25733,"105":0.65883,"106":0.01095,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.0073,"21":0,"22":0,"23":0,"24":0.00365,"25":0,"26":0.01278,"27":0.01095,"28":0.00913,"29":0,"30":0.01095,"31":0.00183,"32":0.01643,"33":0.00913,"34":0,"35":0,"36":0,"37":0.00183,"38":0.00183,"39":0,"40":0,"41":0,"42":0.00548,"43":0,"44":0,"45":0,"46":0.00183,"47":0,"48":0,"49":0,"50":0.00183,"51":0.00183,"52":0,"53":0,"54":0.00548,"55":0.00183,"56":0.00183,"57":0.01095,"58":0.03285,"60":0.31208,"62":0.00183,"63":0.81578,"64":0.43253,"65":0.02008,"66":0,"67":0.00913,"68":0,"69":0,"70":0,"71":0.00365,"72":0.00183,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00183,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00183,"88":0,"89":0.00183,"90":0.09673,"91":0.0073,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.09125},B:{"12":0.00548,"13":0.00365,"14":0.00365,"15":0.0073,"16":0.00365,"17":0,"18":0.01278,"79":0,"80":0,"81":0,"83":0,"84":0.00183,"85":0.00183,"86":0,"87":0,"88":0,"89":0.00183,"90":0.00183,"91":0,"92":0.0073,"93":0,"94":0,"95":0,"96":0,"97":0.00183,"98":0,"99":0.00183,"100":0.00183,"101":0.00183,"102":0.00183,"103":0.00913,"104":0.08213,"105":0.33033},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00365,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00183,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00183,"13.1":0.00365,"14.1":0.00183,"15.1":0.00183,"15.2-15.3":0,"15.4":0,"15.5":0.0365,"15.6":0.00913,"16.0":0.00183,"16.1":0},G:{"8":0.00152,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00076,"7.0-7.1":0.11479,"8.1-8.4":0.00456,"9.0-9.2":0.00304,"9.3":0.10567,"10.0-10.2":0,"10.3":0.17941,"11.0-11.2":0.00836,"11.3-11.4":0.02129,"12.0-12.1":0.05778,"12.2-12.5":0.67051,"13.0-13.1":0.11555,"13.2":0.01977,"13.3":0.06462,"13.4-13.7":0.08742,"14.0-14.4":0.77769,"14.5-14.8":0.84839,"15.0-15.1":0.80734,"15.2-15.3":0.37934,"15.4":0.39759,"15.5":0.64086,"15.6":1.6793,"16.0":0.51086,"16.1":0.00532},P:{"4":0.1112,"5.0-5.4":0.02022,"6.2-6.4":0.01011,"7.2-7.4":0.08088,"8.2":0.03033,"9.2":0.03033,"10.1":0,"11.1-11.2":0.1112,"12.0":0.01011,"13.0":0.02022,"14.0":0.06066,"15.0":0.13142,"16.0":0.2123,"17.0":0.14153,"18.0":0.35383},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01772,"4.2-4.3":0.00417,"4.4":0,"4.4.3-4.4.4":0.12928},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00183,"11":0.00913,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00818},O:{"0":1.07093},H:{"0":16.87998},L:{"0":66.2674},S:{"2.5":0.00818},R:{_:"0"},M:{"0":0.04088},Q:{"13.1":0}}; 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 0f22174520fbb8..cd941f4cf3fa10 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.02272,"48":0,"49":0.00568,"50":0,"51":0,"52":0.0284,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01704,"79":0,"80":0,"81":0,"82":0.00568,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.05111,"92":0,"93":0,"94":0,"95":0.01136,"96":0,"97":0.00568,"98":0,"99":0,"100":0.00568,"101":0.01136,"102":0.11358,"103":1.84,"104":0.31802,"105":0.00568,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00568,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01136,"50":0,"51":0,"52":0,"53":0.01136,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00568,"77":0.00568,"78":0.00568,"79":0.06247,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.01136,"88":0.01136,"89":0.00568,"90":0,"91":0,"92":0.0284,"93":0,"94":0,"95":0.00568,"96":0,"97":0.00568,"98":0.01136,"99":0.00568,"100":0.03975,"101":0.27827,"102":0.06247,"103":6.18443,"104":15.03799,"105":0.01136,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00568,"88":0.00568,"89":0.31235,"90":0.01704,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00568,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.0284,"102":0.00568,"103":1.61852,"104":1.72642,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01704,"14":0.15333,"15":0.15901,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.14198,"12.1":0.05111,"13.1":0.11358,"14.1":0.1363,"15.1":0.95975,"15.2-15.3":0.02272,"15.4":0.20444,"15.5":0.31235,"15.6":0.74963,"16.0":0},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.0088,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0088,"10.0-10.2":0,"10.3":0.13204,"11.0-11.2":0.01467,"11.3-11.4":0.0088,"12.0-12.1":0.0088,"12.2-12.5":0.804,"13.0-13.1":0.00587,"13.2":0.01467,"13.3":0.02347,"13.4-13.7":0.05575,"14.0-14.4":0.43134,"14.5-14.8":4.96779,"15.0-15.1":0.0939,"15.2-15.3":0.29637,"15.4":9.06409,"15.5":3.16319,"15.6":10.15859,"16.0":0.08216},P:{"4":0.01027,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.02053,"14.0":0.01027,"15.0":0,"16.0":0.01027,"17.0":0.80073,"18.0":2.3714},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.08272},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":33.68485},S:{"2.5":0},R:{_:"0"},M:{"0":0.15556},Q:{"10.4":0},O:{"0":0},H:{"0":0.00818}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.03651,"52":0.01826,"53":0,"54":0,"55":0,"56":0.00609,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.06085,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00609,"89":0,"90":0,"91":0.1643,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00609,"100":0,"101":0,"102":0.04868,"103":0.21298,"104":1.84984,"105":0.6085,"106":0.00609,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00609,"50":0,"51":0,"52":0,"53":0.00609,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.01826,"77":0,"78":0,"79":0.02434,"80":0.00609,"81":0,"83":0,"84":0,"85":0,"86":0.01826,"87":0.01217,"88":0,"89":0,"90":0,"91":0.06085,"92":0.00609,"93":0,"94":0,"95":0.00609,"96":0.00609,"97":0,"98":0.00609,"99":0,"100":0.06694,"101":0.02434,"102":0.10345,"103":0.92492,"104":3.48062,"105":23.10475,"106":0.17038,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00609,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.05477,"90":0.42595,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00609,"100":0,"101":0.00609,"102":0.00609,"103":0.09736,"104":0.58416,"105":1.89244},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00609,"14":0.07302,"15":0.18864,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00609,"11.1":0.00609,"12.1":0.03043,"13.1":0.30425,"14.1":0.26166,"15.1":0.01217,"15.2-15.3":0.00609,"15.4":0.0426,"15.5":0.1217,"15.6":0.90667,"16.0":0.17038,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00496,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03471,"10.0-10.2":0,"10.3":0.04214,"11.0-11.2":0.00744,"11.3-11.4":0,"12.0-12.1":0.00496,"12.2-12.5":0.56523,"13.0-13.1":0.00744,"13.2":0,"13.3":0.0124,"13.4-13.7":0.08181,"14.0-14.4":0.62224,"14.5-14.8":2.74432,"15.0-15.1":0.08181,"15.2-15.3":0.17601,"15.4":0.4611,"15.5":0.56027,"15.6":16.71629,"16.0":2.51624,"16.1":0.00496},P:{"4":0.0203,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01015,"12.0":0,"13.0":0.03045,"14.0":0.01015,"15.0":0,"16.0":0.0609,"17.0":0.0203,"18.0":3.13635},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.1626},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00609,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.03706},L:{"0":33.0763},S:{"2.5":0},R:{_:"0"},M:{"0":0.08613},Q:{"13.1":0}}; 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 1013bea11ea8c0..dda74245b398d9 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00772,"53":0,"54":0,"55":0,"56":0,"57":0.00514,"58":0.00257,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00257,"69":0,"70":0.00772,"71":0,"72":0.00257,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01543,"79":0,"80":0.00257,"81":0.00257,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00257,"90":0,"91":0.01286,"92":0,"93":0,"94":0.00514,"95":0.00514,"96":0.00257,"97":0.00257,"98":0,"99":0.00257,"100":0.00257,"101":0.00772,"102":0.02058,"103":0.42695,"104":0.07716,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00772,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00257,"39":0,"40":0.00257,"41":0,"42":0,"43":0.00257,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01029,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00772,"61":0,"62":0,"63":0.00257,"64":0,"65":0.00514,"66":0.05658,"67":0,"68":0,"69":0.00772,"70":0.00257,"71":0.00257,"72":0,"73":0.00257,"74":0.00257,"75":0.00257,"76":0.00257,"77":0.00257,"78":0,"79":0.01029,"80":0.00257,"81":0.02572,"83":0.00257,"84":0.00257,"85":0.00257,"86":0.01286,"87":0.00514,"88":0.00257,"89":0.00257,"90":0.00257,"91":0.00257,"92":0.00772,"93":0.00514,"94":0.00257,"95":0.00514,"96":0.00772,"97":0.00772,"98":0.00514,"99":0.00514,"100":0.01029,"101":0.01029,"102":0.02572,"103":0.93106,"104":2.26079,"105":0.01029,"106":0.00257,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00257,"47":0,"48":0,"49":0,"50":0.00514,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00257,"62":0,"63":0.01543,"64":0.00514,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00257,"80":0,"81":0,"82":0,"83":0,"84":0.00257,"85":0.00257,"86":0.00257,"87":0.00257,"88":0.00257,"89":0.1286,"90":0.01543,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00257,"10.6":0.00257,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00514,"13":0.00257,"14":0.00257,"15":0.01029,"16":0,"17":0.00257,"18":0.01029,"79":0,"80":0,"81":0,"83":0,"84":0.00257,"85":0.00257,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00772,"93":0.00257,"94":0,"95":0,"96":0.00257,"97":0,"98":0.00257,"99":0.00257,"100":0.00514,"101":0.00514,"102":0.00772,"103":0.20833,"104":0.43981,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00257,"9":0,"10":0,"11":0.00257,"12":0,"13":0.00257,"14":0.01029,"15":0.00257,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00514,"12.1":0.00772,"13.1":0.01543,"14.1":0.02058,"15.1":0.00257,"15.2-15.3":0.00514,"15.4":0.00772,"15.5":0.03601,"15.6":0.05144,"16.0":0.00257},G:{"8":0.00219,"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.01969,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.10284,"10.0-10.2":0.14223,"10.3":0.2954,"11.0-11.2":0.0372,"11.3-11.4":0.03282,"12.0-12.1":0.08096,"12.2-12.5":1.60391,"13.0-13.1":0.04376,"13.2":0.05908,"13.3":0.22975,"13.4-13.7":0.40481,"14.0-14.4":1.4945,"14.5-14.8":2.29755,"15.0-15.1":0.80961,"15.2-15.3":1.04593,"15.4":1.07656,"15.5":4.73732,"15.6":7.05894,"16.0":0.30415},P:{"4":0.31154,"5.0-5.4":0.01005,"6.2-6.4":0.0201,"7.2-7.4":0.37184,"8.2":0.01005,"9.2":0.0402,"10.1":0.01005,"11.1-11.2":0.13065,"12.0":0.0804,"13.0":0.1005,"14.0":0.13065,"15.0":0.09045,"16.0":0.24119,"17.0":1.09541,"18.0":0.77382},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00214,"4.2-4.3":0.00888,"4.4":0,"4.4.3-4.4.4":0.08756},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04115,"5.5":0},J:{"7":0,"10":0.01486},N:{"10":0,"11":0},L:{"0":67.49914},S:{"2.5":0.03714},R:{_:"0"},M:{"0":0.17084},Q:{"10.4":0},O:{"0":0.08914},H:{"0":0.33052}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00495,"53":0,"54":0,"55":0,"56":0,"57":0.00495,"58":0.00248,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00248,"65":0,"66":0,"67":0,"68":0.00248,"69":0,"70":0.00743,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01486,"79":0,"80":0.00248,"81":0.00248,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00743,"92":0,"93":0,"94":0.00743,"95":0.00743,"96":0,"97":0,"98":0,"99":0.00495,"100":0.00248,"101":0.00743,"102":0.01238,"103":0.02476,"104":0.35902,"105":0.12875,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00248,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00495,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00248,"39":0,"40":0.00248,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00743,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00248,"66":0.01486,"67":0,"68":0,"69":0.00495,"70":0.00248,"71":0.00248,"72":0,"73":0.00248,"74":0.00248,"75":0.00248,"76":0.00248,"77":0.00248,"78":0,"79":0.01981,"80":0.00248,"81":0.03466,"83":0.00495,"84":0.00248,"85":0.00248,"86":0.00743,"87":0.00743,"88":0.00248,"89":0.00248,"90":0.00248,"91":0.00248,"92":0.00495,"93":0.00248,"94":0.00248,"95":0.00495,"96":0.00495,"97":0.00743,"98":0.00248,"99":0.0099,"100":0.00743,"101":0.00495,"102":0.01238,"103":0.07923,"104":0.66852,"105":2.18383,"106":0.03714,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00495,"47":0,"48":0,"49":0,"50":0.00495,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00248,"62":0,"63":0.00743,"64":0.01486,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00248,"83":0,"84":0,"85":0.00495,"86":0,"87":0,"88":0,"89":0.00495,"90":0.10647,"91":0.00495,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00248,"10.6":0.00248,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00248,"13":0.00248,"14":0,"15":0.01238,"16":0.00248,"17":0.00248,"18":0.0099,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00248,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01733,"93":0.00248,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00495,"101":0.00495,"102":0.00495,"103":0.01486,"104":0.10647,"105":0.48777},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00248,"14":0.0099,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00248,"11.1":0.00248,"12.1":0.00495,"13.1":0.01486,"14.1":0.01981,"15.1":0.00248,"15.2-15.3":0.00495,"15.4":0.00495,"15.5":0.01733,"15.6":0.06438,"16.0":0.01733,"16.1":0},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.02527,"8.1-8.4":0.00459,"9.0-9.2":0,"9.3":0.06892,"10.0-10.2":0.12636,"10.3":0.33312,"11.0-11.2":0.04365,"11.3-11.4":0.04365,"12.0-12.1":0.11717,"12.2-12.5":1.98263,"13.0-13.1":0.06662,"13.2":0.06203,"13.3":0.2619,"13.4-13.7":0.43191,"14.0-14.4":1.56681,"14.5-14.8":2.37318,"15.0-15.1":0.92584,"15.2-15.3":0.94652,"15.4":0.74435,"15.5":2.13426,"15.6":8.34175,"16.0":1.98033,"16.1":0.05284},P:{"4":0.37171,"5.0-5.4":0.02009,"6.2-6.4":0.02009,"7.2-7.4":0.46212,"8.2":0,"9.2":0.05023,"10.1":0.03014,"11.1-11.2":0.14065,"12.0":0.08037,"13.0":0.09042,"14.0":0.10046,"15.0":0.10046,"16.0":0.20092,"17.0":0.42194,"18.0":1.47678},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00161,"4.2-4.3":0.00806,"4.4":0,"4.4.3-4.4.4":0.0949},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02971,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.04514},O:{"0":0.09029},H:{"0":0.34904},L:{"0":66.9898},S:{"2.5":0.04514},R:{_:"0"},M:{"0":0.15048},Q:{"13.1":0}}; 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 26bacec8e67626..7406da0cdacf87 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.0017,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.0017,"88":0,"89":0,"90":0,"91":0.0017,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.0017,"102":0.0034,"103":0.0578,"104":0.0204,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0017,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0017,"39":0,"40":0.0017,"41":0,"42":0,"43":0.0017,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.0017,"64":0.0017,"65":0,"66":0,"67":0,"68":0.0119,"69":0.0017,"70":0.0068,"71":0,"72":0,"73":0.0017,"74":0.0051,"75":0,"76":0,"77":0,"78":0,"79":0.0085,"80":0.0017,"81":0.0102,"83":0.0017,"84":0,"85":0,"86":0.0051,"87":0.051,"88":0.0051,"89":0.0017,"90":0.0017,"91":0.0051,"92":0.0051,"93":0.0238,"94":0.0051,"95":0.0034,"96":0.0119,"97":0.0068,"98":0.0102,"99":0.0153,"100":0.0051,"101":0.0136,"102":0.0255,"103":0.5253,"104":1.4535,"105":0.0051,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.0034,"62":0,"63":0.0833,"64":0.1207,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.0034,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.0017,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0153,"86":0,"87":0,"88":0.0068,"89":0.0374,"90":0.0051,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0017},B:{"12":0.0017,"13":0,"14":0,"15":0,"16":0,"17":0.0017,"18":0.0068,"79":0,"80":0,"81":0,"83":0,"84":0.0017,"85":0.0017,"86":0,"87":0,"88":0,"89":0.0017,"90":0.0017,"91":0.0017,"92":0.0068,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.0017,"100":0.0017,"101":0.0017,"102":0.0034,"103":0.0748,"104":0.1904,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0051,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.0017,"14.1":0.0136,"15.1":0.0034,"15.2-15.3":0.0051,"15.4":0.0034,"15.5":0.0221,"15.6":0.0221,"16.0":0},G:{"8":0.0011,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00329,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00548,"8.1-8.4":0.00219,"9.0-9.2":0,"9.3":0.00767,"10.0-10.2":0,"10.3":0.03286,"11.0-11.2":0.00657,"11.3-11.4":0.01753,"12.0-12.1":0.02738,"12.2-12.5":0.73609,"13.0-13.1":0.05915,"13.2":0.02081,"13.3":0.07339,"13.4-13.7":0.19169,"14.0-14.4":0.71747,"14.5-14.8":1.01102,"15.0-15.1":0.50387,"15.2-15.3":0.64298,"15.4":0.72513,"15.5":3.15904,"15.6":2.72418,"16.0":0.28041},P:{"4":0.24347,"5.0-5.4":0.04058,"6.2-6.4":0.06087,"7.2-7.4":0.86228,"8.2":0,"9.2":0.02029,"10.1":0.01014,"11.1-11.2":0.16231,"12.0":0.04058,"13.0":0.11159,"14.0":0.30433,"15.0":0.13188,"16.0":0.34491,"17.0":0.98401,"18.0":0.79127},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.09939,"4.2-4.3":0.11181,"4.4":0,"4.4.3-4.4.4":0.64601},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0034,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":75.7328},S:{"2.5":0},R:{_:"0"},M:{"0":0.0332},Q:{"10.4":0},O:{"0":1.4193},H:{"0":2.10592}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00183,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00183,"102":0,"103":0.00365,"104":0.06935,"105":0.01643,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00183,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00183,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00183,"64":0.00183,"65":0,"66":0.00183,"67":0,"68":0.01095,"69":0.00183,"70":0.03833,"71":0,"72":0,"73":0,"74":0.0073,"75":0,"76":0,"77":0.00183,"78":0,"79":0.01095,"80":0.00365,"81":0.0146,"83":0.00183,"84":0.00183,"85":0,"86":0.00183,"87":0.09855,"88":0.00548,"89":0.00183,"90":0.00183,"91":0.00913,"92":0.00365,"93":0.0365,"94":0.00913,"95":0.00548,"96":0.01825,"97":0.01278,"98":0.0146,"99":0.01278,"100":0.0073,"101":0.02555,"102":0.0219,"103":0.0803,"104":0.61685,"105":1.72463,"106":0.0146,"107":0.00183,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00183,"60":0.0073,"62":0,"63":0.03103,"64":0.29383,"65":0.05658,"66":0,"67":0,"68":0,"69":0,"70":0.00183,"71":0.00183,"72":0.00183,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00183,"85":0,"86":0,"87":0,"88":0.00183,"89":0.03103,"90":0.03285,"91":0.00548,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00365,"13":0,"14":0,"15":0,"16":0.00183,"17":0,"18":0.0073,"79":0,"80":0,"81":0,"83":0,"84":0.00183,"85":0.00183,"86":0,"87":0,"88":0,"89":0.00183,"90":0,"91":0,"92":0.00548,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00183,"102":0.00183,"103":0.00548,"104":0.04745,"105":0.21535},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00365,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00183,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00365,"14.1":0.01278,"15.1":0.00365,"15.2-15.3":0.00365,"15.4":0.0073,"15.5":0.0146,"15.6":0.02738,"16.0":0.00365,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00106,"5.0-5.1":0.00106,"6.0-6.1":0,"7.0-7.1":0.01597,"8.1-8.4":0,"9.0-9.2":0.00426,"9.3":0.0181,"10.0-10.2":0.00106,"10.3":0.02556,"11.0-11.2":0.00532,"11.3-11.4":0.02875,"12.0-12.1":0.02875,"12.2-12.5":0.89342,"13.0-13.1":0.02662,"13.2":0.02769,"13.3":0.06496,"13.4-13.7":0.19168,"14.0-14.4":0.74221,"14.5-14.8":0.92537,"15.0-15.1":0.34289,"15.2-15.3":0.50049,"15.4":0.5729,"15.5":1.3396,"15.6":3.32024,"16.0":1.38752,"16.1":0.02023},P:{"4":0.26262,"5.0-5.4":0.0404,"6.2-6.4":0.0505,"7.2-7.4":0.71716,"8.2":0.0101,"9.2":0.0303,"10.1":0.0101,"11.1-11.2":0.14141,"12.0":0.0303,"13.0":0.13131,"14.0":0.23232,"15.0":0.09091,"16.0":0.29292,"17.0":0.51514,"18.0":1.64644},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03671,"4.2-4.3":0.04405,"4.4":0,"4.4.3-4.4.4":0.60932},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00365,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":1.5042},H:{"0":3.30479},L:{"0":73.75123},S:{"2.5":0},R:{_:"0"},M:{"0":0.0327},Q:{"13.1":0}}; 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 a77e7e80f08caf..a824a64abb70ed 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00628,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00314,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00314,"100":0,"101":0,"102":0.00942,"103":0.42704,"104":0.1099,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00314,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00942,"50":0,"51":0,"52":0,"53":0.00314,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00314,"62":0,"63":0,"64":0,"65":0.00314,"66":0,"67":0,"68":0,"69":0.03454,"70":0,"71":0,"72":0,"73":0.00628,"74":0,"75":0,"76":0,"77":0.00314,"78":0,"79":0.00942,"80":0,"81":0.01884,"83":0.00314,"84":0,"85":0,"86":0.00314,"87":0.00628,"88":0.00314,"89":0.00628,"90":0,"91":0.02512,"92":0,"93":0.00628,"94":0.00314,"95":0.00314,"96":0.02512,"97":0.02826,"98":0.00314,"99":0.00942,"100":0.0157,"101":0.0157,"102":0.07536,"103":1.70188,"104":4.27354,"105":0.0157,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00314,"64":0.0157,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00314,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00628,"85":0,"86":0,"87":0,"88":0.00314,"89":0.28888,"90":0.01884,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00314,"13":0,"14":0.00314,"15":0.00314,"16":0,"17":0,"18":0.00314,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00314,"90":0,"91":0,"92":0.00314,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.0157,"102":0.00942,"103":0.30458,"104":0.83524,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00628,"14":0.02512,"15":0.00628,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00314,"12.1":0.00314,"13.1":0.05652,"14.1":0.04396,"15.1":0.00628,"15.2-15.3":0.00628,"15.4":0.05966,"15.5":0.0942,"15.6":0.17898,"16.0":0.00314},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03275,"6.0-6.1":0,"7.0-7.1":0.01403,"8.1-8.4":0.0078,"9.0-9.2":0.00468,"9.3":0.04678,"10.0-10.2":0,"10.3":0.14346,"11.0-11.2":0.00156,"11.3-11.4":0.01248,"12.0-12.1":0.01559,"12.2-12.5":1.07285,"13.0-13.1":0.02339,"13.2":0.00312,"13.3":0.12943,"13.4-13.7":0.06238,"14.0-14.4":0.29784,"14.5-14.8":1.33015,"15.0-15.1":0.26977,"15.2-15.3":0.39764,"15.4":0.66741,"15.5":3.42439,"15.6":7.54583,"16.0":0.08733},P:{"4":0.73033,"5.0-5.4":0.01029,"6.2-6.4":0,"7.2-7.4":0.80234,"8.2":0,"9.2":0.04115,"10.1":0.02057,"11.1-11.2":0.13372,"12.0":0.14401,"13.0":0.34974,"14.0":0.21601,"15.0":0.16458,"16.0":0.2983,"17.0":3.35335,"18.0":3.41507},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01186,"4.2-4.3":0.01582,"4.4":0,"4.4.3-4.4.4":0.41516},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01256,"5.5":0},J:{"7":0,"10":0.01372},N:{"10":0,"11":0},L:{"0":61.35774},S:{"2.5":0},R:{_:"0"},M:{"0":0.16464},Q:{"10.4":0},O:{"0":0.32242},H:{"0":0.19484}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00615,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00615,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00307,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00307,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00922,"100":0,"101":0,"102":0.00307,"103":0.01537,"104":0.36888,"105":0.09837,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00307,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00615,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00307,"66":0,"67":0,"68":0,"69":0.05226,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00922,"80":0,"81":0.0123,"83":0.00307,"84":0,"85":0,"86":0.00307,"87":0.00922,"88":0.00307,"89":0.00615,"90":0.00307,"91":0.01844,"92":0.00307,"93":0.00307,"94":0,"95":0.00307,"96":0.01844,"97":0.00922,"98":0.01537,"99":0.00307,"100":0.00922,"101":0.01844,"102":0.03996,"103":0.166,"104":1.4663,"105":4.40504,"106":0.0707,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00307,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00307,"64":0.00307,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00307,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01537,"90":0.20596,"91":0.00307,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00307,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00922,"79":0,"80":0,"81":0,"83":0,"84":0.00307,"85":0,"86":0,"87":0,"88":0,"89":0.00307,"90":0.00307,"91":0,"92":0.00307,"93":0,"94":0,"95":0,"96":0.00307,"97":0,"98":0,"99":0,"100":0,"101":0.00307,"102":0.00307,"103":0.00615,"104":0.14755,"105":0.7808},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00922,"15":0.00615,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0.00307,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00307,"13.1":0.03996,"14.1":0.04304,"15.1":0.00307,"15.2-15.3":0.00307,"15.4":0.04304,"15.5":0.03996,"15.6":0.24899,"16.0":0.00922,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.04119,"6.0-6.1":0,"7.0-7.1":0.08554,"8.1-8.4":0,"9.0-9.2":0.00317,"9.3":0.07287,"10.0-10.2":0.00317,"10.3":0.26929,"11.0-11.2":0,"11.3-11.4":0.00475,"12.0-12.1":0.00634,"12.2-12.5":1.00747,"13.0-13.1":0.01584,"13.2":0.00317,"13.3":0.30731,"13.4-13.7":0.17425,"14.0-14.4":0.25504,"14.5-14.8":1.63635,"15.0-15.1":0.15841,"15.2-15.3":0.22335,"15.4":0.32632,"15.5":1.22132,"15.6":7.96156,"16.0":1.76624,"16.1":0.01109},P:{"4":0.68135,"5.0-5.4":0,"6.2-6.4":0.01032,"7.2-7.4":1.26979,"8.2":0,"9.2":0.04129,"10.1":0.01032,"11.1-11.2":0.14453,"12.0":0.10324,"13.0":0.1755,"14.0":0.21679,"15.0":0.13421,"16.0":0.27873,"17.0":0.73297,"18.0":5.48179},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00926,"4.2-4.3":0.01389,"4.4":0,"4.4.3-4.4.4":0.38881},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00615,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00693},O:{"0":0.32552},H:{"0":0.15081},L:{"0":62.38227},S:{"2.5":0},R:{_:"0"},M:{"0":0.24241},Q:{"13.1":0}}; 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 89979b3f08ccb6..3abebafb4b4262 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00509,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00509,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.01019,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03056,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00509,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.02547,"103":0.65713,"104":0.02038,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.06113,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01019,"39":0,"40":0,"41":0,"42":0,"43":0.49412,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.01019,"56":0.00509,"57":0,"58":0.00509,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.02547,"65":0,"66":0,"67":0.00509,"68":0.05094,"69":0.04585,"70":0.00509,"71":0.01019,"72":0.00509,"73":0,"74":0.01528,"75":0.01019,"76":0,"77":0,"78":0.00509,"79":0.05094,"80":0.04075,"81":0.01019,"83":0.00509,"84":0,"85":0,"86":0.00509,"87":0.02038,"88":0.04075,"89":3.78994,"90":0,"91":0.00509,"92":0.02547,"93":0.00509,"94":0.02038,"95":0,"96":0.04585,"97":0.01528,"98":0,"99":0.03566,"100":0.10697,"101":0.03566,"102":0.1681,"103":4.30952,"104":8.37454,"105":0.01019,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00509,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.04075,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00509,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.22414,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.05094,"86":0,"87":0.02547,"88":0.01019,"89":0.31583,"90":0.00509,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01528,"79":0,"80":0.05603,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00509,"91":0,"92":0.01019,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01019,"100":0,"101":0.01019,"102":0,"103":1.01371,"104":1.15634,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01019,"14.1":0.02547,"15.1":0.00509,"15.2-15.3":0.00509,"15.4":0.01019,"15.5":0.0815,"15.6":0.10188,"16.0":0.00509},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.051,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02591,"10.0-10.2":0,"10.3":0.11577,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.04534,"12.2-12.5":0.52704,"13.0-13.1":0,"13.2":0,"13.3":0.07691,"13.4-13.7":0.03886,"14.0-14.4":0.14735,"14.5-14.8":0.14168,"15.0-15.1":0.10201,"15.2-15.3":0.8614,"15.4":3.14849,"15.5":0.86707,"15.6":1.42649,"16.0":0.52057},P:{"4":0.32538,"5.0-5.4":0.01017,"6.2-6.4":0,"7.2-7.4":0.02034,"8.2":0.0305,"9.2":0,"10.1":0,"11.1-11.2":0.04067,"12.0":0.01017,"13.0":0.02034,"14.0":0.01017,"15.0":0.01017,"16.0":0.09151,"17.0":0.2542,"18.0":0.43723},I:{"0":0,"3":0,"4":0.00335,"2.1":0,"2.2":0,"2.3":0,"4.1":0.029,"4.2-4.3":0.04518,"4.4":0,"4.4.3-4.4.4":0.34189},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.25979,"5.5":0},J:{"7":0,"10":0.01962},N:{"10":0,"11":0},L:{"0":62.13261},S:{"2.5":0},R:{_:"0"},M:{"0":0.04906},Q:{"10.4":0},O:{"0":3.06625},H:{"0":0.18579}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.02471,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00494,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02471,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00494,"78":0.0593,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00988,"89":0,"90":0,"91":0.03459,"92":0,"93":0,"94":0,"95":0.00494,"96":0,"97":0,"98":0,"99":0.01483,"100":0,"101":0,"102":0.00988,"103":0.00494,"104":0.16309,"105":0.03954,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00988,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00494,"43":0.80555,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01977,"50":0,"51":0,"52":0,"53":0.00494,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.04448,"60":0,"61":0,"62":0,"63":0.01483,"64":0.00988,"65":0.00494,"66":0,"67":0,"68":0.00988,"69":0.02471,"70":0.01977,"71":0,"72":0,"73":0.0593,"74":0,"75":0,"76":0,"77":0,"78":0.10378,"79":0.00988,"80":0,"81":0.06919,"83":0,"84":0,"85":0,"86":0.02471,"87":0,"88":0.00494,"89":2.71316,"90":0.00494,"91":0.00494,"92":0.00494,"93":0,"94":0,"95":0.01977,"96":0.02471,"97":0,"98":0,"99":0.12355,"100":0,"101":0.01483,"102":0.24216,"103":0.19274,"104":2.64397,"105":8.4607,"106":0.34594,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00494,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00494,"62":0,"63":0.01977,"64":0.01977,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00494,"83":0,"84":0,"85":0,"86":0,"87":0.00494,"88":0,"89":0.00988,"90":0.0593,"91":0.01483,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.05436,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0.00494,"81":0,"83":0.00988,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00988,"90":0,"91":0,"92":0.00988,"93":0,"94":0,"95":0,"96":0,"97":0.00494,"98":0.00494,"99":0,"100":0.08896,"101":0.00988,"102":0.00494,"103":0.00988,"104":1.12678,"105":1.94221},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00494,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.0939,"14.1":0.01977,"15.1":0.00494,"15.2-15.3":0,"15.4":0.00988,"15.5":0.03954,"15.6":0.17297,"16.0":0.00494,"16.1":0},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.06585,"8.1-8.4":0,"9.0-9.2":0.0178,"9.3":0.11925,"10.0-10.2":0,"10.3":0.08365,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.17887,"13.0-13.1":0,"13.2":0,"13.3":0.07119,"13.4-13.7":0,"14.0-14.4":0.05962,"14.5-14.8":0.37377,"15.0-15.1":0.09522,"15.2-15.3":0.01157,"15.4":3.84535,"15.5":0.14862,"15.6":3.03552,"16.0":0.77957,"16.1":0},P:{"4":0.29467,"5.0-5.4":0.01016,"6.2-6.4":0.08129,"7.2-7.4":0.11177,"8.2":0,"9.2":0.04064,"10.1":0,"11.1-11.2":0.01016,"12.0":0,"13.0":0.06097,"14.0":0.04064,"15.0":0.01016,"16.0":0.09145,"17.0":0.01016,"18.0":0.37596},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.15118,"4.2-4.3":0.16444,"4.4":0,"4.4.3-4.4.4":0.46415},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04448,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":2.87294},H:{"0":0.23943},L:{"0":63.04815},S:{"2.5":0},R:{_:"0"},M:{"0":0.01012},Q:{"13.1":0.00506}}; 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 0afccddabf994d..b8a8513b2f146d 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.01277,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00851,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00426,"69":0,"70":0,"71":0,"72":0,"73":0.02128,"74":0,"75":0,"76":0,"77":0,"78":0.00851,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00426,"89":0,"90":0.2128,"91":0.01702,"92":0,"93":0,"94":0,"95":0.00426,"96":0,"97":0,"98":0.00426,"99":0.00426,"100":0.00426,"101":0.00426,"102":0.02979,"103":0.57882,"104":0.11917,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00426,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02128,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00426,"66":0,"67":0.00851,"68":0.00426,"69":0,"70":0.00426,"71":0.00426,"72":0.00426,"73":0.00426,"74":0,"75":0.00426,"76":0.00851,"77":0.00426,"78":0.00426,"79":0.04256,"80":0.01277,"81":0.00851,"83":0.00426,"84":0.00851,"85":0.00426,"86":0.00426,"87":0.01277,"88":0.00851,"89":0.02128,"90":0.00426,"91":0.09789,"92":0.02128,"93":0.00851,"94":0.00851,"95":0.00851,"96":0.01702,"97":0.01277,"98":0.01702,"99":0.0383,"100":0.0383,"101":0.05533,"102":0.07661,"103":2.65574,"104":9.21424,"105":0.03405,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00426,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00426,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01277,"64":0.00851,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00426,"86":0,"87":0,"88":0.00851,"89":0.82141,"90":0.04682,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00851,"16":0.00426,"17":0,"18":0.00851,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00426,"93":0.00851,"94":0,"95":0,"96":0.00426,"97":0.00426,"98":0.00426,"99":0.00426,"100":0.00426,"101":0.02128,"102":0.01277,"103":0.39155,"104":1.30659,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00426,"14":0.01702,"15":0.01277,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.02128,"14.1":0.05958,"15.1":0.00851,"15.2-15.3":0.01277,"15.4":0.02979,"15.5":0.13194,"15.6":0.17024,"16.0":0.00426},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0021,"6.0-6.1":0.02313,"7.0-7.1":0.02103,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02944,"10.0-10.2":0,"10.3":0.02419,"11.0-11.2":0.00421,"11.3-11.4":0.00736,"12.0-12.1":0.00631,"12.2-12.5":0.26919,"13.0-13.1":0.00421,"13.2":0.00526,"13.3":0.02419,"13.4-13.7":0.07466,"14.0-14.4":0.21136,"14.5-14.8":0.45636,"15.0-15.1":0.16614,"15.2-15.3":0.15352,"15.4":0.42902,"15.5":2.42481,"15.6":6.06097,"16.0":0.11462},P:{"4":0.11231,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.42881,"8.2":0,"9.2":0.02042,"10.1":0,"11.1-11.2":0.09189,"12.0":0.01021,"13.0":0.14294,"14.0":0.13273,"15.0":0.05105,"16.0":0.16336,"17.0":1.42936,"18.0":0.9495},I:{"0":0,"3":0,"4":0.01405,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00703,"4.2-4.3":0.02108,"4.4":0,"4.4.3-4.4.4":0.25296},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00426,"10":0,"11":0.01702,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":65.77678},S:{"2.5":0},R:{_:"0"},M:{"0":0.46526},Q:{"10.4":0},O:{"0":0.0919},H:{"0":0.18489}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00467,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00934,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00467,"69":0,"70":0,"71":0,"72":0,"73":0.02801,"74":0,"75":0,"76":0,"77":0,"78":0.00467,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00467,"89":0,"90":0.03735,"91":0.01401,"92":0,"93":0,"94":0,"95":0.00467,"96":0,"97":0,"98":0.00467,"99":0.01401,"100":0.00467,"101":0.00467,"102":0.00467,"103":0.03735,"104":0.83108,"105":0.22878,"106":0.00467,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00467,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02335,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00467,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00467,"64":0,"65":0.00467,"66":0,"67":0.00934,"68":0.00467,"69":0.00467,"70":0.00467,"71":0.00467,"72":0.00467,"73":0.00467,"74":0.00467,"75":0.00467,"76":0.01401,"77":0,"78":0.00467,"79":0.05136,"80":0.01401,"81":0.00934,"83":0.00467,"84":0.01401,"85":0.00934,"86":0.01401,"87":0.01868,"88":0.00934,"89":0.01868,"90":0.01401,"91":0.08871,"92":0.02801,"93":0.00934,"94":0.01401,"95":0.01868,"96":0.01401,"97":0.01868,"98":0.01401,"99":0.03268,"100":0.05136,"101":0.06537,"102":0.04202,"103":0.26146,"104":2.98816,"105":11.35968,"106":0.21944,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00467,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00934,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00934,"64":0.01401,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00467,"86":0,"87":0,"88":0.00467,"89":0.10739,"90":0.91046,"91":0.03268,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00934,"16":0,"17":0,"18":0.01401,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00467,"90":0,"91":0,"92":0.00467,"93":0,"94":0,"95":0,"96":0.00467,"97":0.00467,"98":0.00467,"99":0.00467,"100":0.00467,"101":0.00934,"102":0.00467,"103":0.03268,"104":0.32216,"105":1.70885},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00467,"14":0.00934,"15":0.01868,_:"0","3.1":0,"3.2":0,"5.1":0.00467,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00467,"13.1":0.01868,"14.1":0.03735,"15.1":0.01401,"15.2-15.3":0.01401,"15.4":0.02335,"15.5":0.06537,"15.6":0.23345,"16.0":0.05136,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00431,"6.0-6.1":0.02415,"7.0-7.1":0.03795,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03536,"10.0-10.2":0.00086,"10.3":0.03019,"11.0-11.2":0.00086,"11.3-11.4":0.02588,"12.0-12.1":0.00863,"12.2-12.5":0.28291,"13.0-13.1":0.0069,"13.2":0.00345,"13.3":0.01984,"13.4-13.7":0.07073,"14.0-14.4":0.18631,"14.5-14.8":0.40625,"15.0-15.1":0.07935,"15.2-15.3":0.10782,"15.4":0.18458,"15.5":0.47698,"15.6":4.70593,"16.0":1.69486,"16.1":0.02243},P:{"4":0.15128,"5.0-5.4":0,"6.2-6.4":0.01009,"7.2-7.4":0.18153,"8.2":0,"9.2":0.02017,"10.1":0,"11.1-11.2":0.09077,"12.0":0.01009,"13.0":0.14119,"14.0":0.06051,"15.0":0.05043,"16.0":0.14119,"17.0":0.2723,"18.0":1.5632},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.05263,"4.2-4.3":0.04511,"4.4":0,"4.4.3-4.4.4":0.28568},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01868,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.11195},H:{"0":0.20693},L:{"0":65.42069},S:{"2.5":0},R:{_:"0"},M:{"0":0.52244},Q:{"13.1":0}}; 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 bdf07af7960add..52f0f1e4514d4d 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00156,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00624,"53":0,"54":0,"55":0,"56":0.00156,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00156,"66":0,"67":0,"68":0.02027,"69":0,"70":0,"71":0,"72":0.00156,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00156,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00468,"85":0,"86":0,"87":0,"88":0.00156,"89":0.00156,"90":0,"91":0.00156,"92":0.00156,"93":0,"94":0.00624,"95":0.00156,"96":0.00156,"97":0.00156,"98":0.00156,"99":0.00468,"100":0.00468,"101":0.00624,"102":0.01247,"103":0.1824,"104":0.0265,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00156,"36":0.00156,"37":0,"38":0.00156,"39":0,"40":0.00468,"41":0,"42":0,"43":0.00156,"44":0,"45":0,"46":0.00156,"47":0,"48":0,"49":0.00312,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00156,"57":0,"58":0.00156,"59":0,"60":0,"61":0,"62":0,"63":0.00156,"64":0,"65":0,"66":0.00156,"67":0,"68":0.00156,"69":0.00312,"70":0.10913,"71":0.00156,"72":0.00468,"73":0.00156,"74":0.00156,"75":0.00156,"76":0,"77":0,"78":0.00156,"79":0.00468,"80":0.00312,"81":0.02494,"83":0.00468,"84":0.00156,"85":0.00156,"86":0.00468,"87":0.01247,"88":0.00312,"89":0.00624,"90":0.00312,"91":0.00312,"92":0.00624,"93":0.00156,"94":0.00312,"95":0.0078,"96":0.00935,"97":0.00312,"98":0.00468,"99":0.00624,"100":0.01247,"101":0.01091,"102":0.01871,"103":0.3726,"104":0.85745,"105":0.00312,"106":0.00156,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00156,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00312,"47":0,"48":0,"49":0,"50":0.00312,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00156,"60":0.00312,"62":0,"63":0.01403,"64":0.01091,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00156,"80":0,"81":0,"82":0.00156,"83":0.00156,"84":0.00156,"85":0.0078,"86":0.00156,"87":0,"88":0.00156,"89":0.04053,"90":0.00624,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00156},B:{"12":0,"13":0,"14":0,"15":0.00156,"16":0,"17":0,"18":0.00624,"79":0,"80":0,"81":0,"83":0,"84":0.00156,"85":0,"86":0,"87":0,"88":0,"89":0.00156,"90":0.00156,"91":0,"92":0.00312,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00312,"102":0.00156,"103":0.0343,"104":0.09042,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00156,"14":0.00156,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.04365,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00156,"14.1":0.01247,"15.1":0.00312,"15.2-15.3":0.00156,"15.4":0.00156,"15.5":0.00468,"15.6":0.00312,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0009,"5.0-5.1":0.00419,"6.0-6.1":0.0009,"7.0-7.1":0.02183,"8.1-8.4":0.00449,"9.0-9.2":0,"9.3":0.07446,"10.0-10.2":0.00239,"10.3":0.04815,"11.0-11.2":0.00688,"11.3-11.4":0.01824,"12.0-12.1":0.03678,"12.2-12.5":0.36664,"13.0-13.1":0.01166,"13.2":0.00987,"13.3":0.03768,"13.4-13.7":0.07596,"14.0-14.4":0.2527,"14.5-14.8":0.3152,"15.0-15.1":0.1893,"15.2-15.3":0.17883,"15.4":0.23834,"15.5":0.68512,"15.6":0.39026,"16.0":0.01794},P:{"4":2.13916,"5.0-5.4":0.07097,"6.2-6.4":0.22304,"7.2-7.4":0.39539,"8.2":0.04055,"9.2":0.2129,"10.1":0.17235,"11.1-11.2":0.27373,"12.0":0.11152,"13.0":0.37511,"14.0":0.54746,"15.0":0.17235,"16.0":0.65898,"17.0":1.72349,"18.0":0.49677},I:{"0":0,"3":0,"4":0.00214,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02742,"4.2-4.3":0.0407,"4.4":0,"4.4.3-4.4.4":0.24248},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0078,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":81.76882},S:{"2.5":0},R:{_:"0"},M:{"0":0.26167},Q:{"10.4":0},O:{"0":0.96227},H:{"0":1.82204}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00675,"53":0,"54":0,"55":0,"56":0.00169,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00169,"65":0,"66":0,"67":0,"68":0.02531,"69":0,"70":0,"71":0,"72":0.00169,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00169,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00337,"85":0,"86":0,"87":0,"88":0.00169,"89":0,"90":0,"91":0.00169,"92":0,"93":0,"94":0.00169,"95":0.00675,"96":0.00169,"97":0.00169,"98":0.00169,"99":0.00337,"100":0.00337,"101":0.00337,"102":0.00337,"103":0.02699,"104":0.18388,"105":0.05398,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00169,"37":0,"38":0.00169,"39":0,"40":0.00675,"41":0,"42":0,"43":0.00169,"44":0,"45":0,"46":0.00169,"47":0,"48":0,"49":0.00337,"50":0,"51":0,"52":0,"53":0,"54":0.00169,"55":0.00169,"56":0.00169,"57":0,"58":0.00169,"59":0,"60":0.00169,"61":0,"62":0.00169,"63":0.00169,"64":0.00169,"65":0,"66":0.00337,"67":0.00169,"68":0.00169,"69":0.00169,"70":0.03374,"71":0.00337,"72":0.00337,"73":0.00169,"74":0.00169,"75":0.00169,"76":0.00169,"77":0,"78":0.00169,"79":0.00337,"80":0.00337,"81":0.02868,"83":0.00337,"84":0.00169,"85":0.00337,"86":0.01181,"87":0.00506,"88":0.00506,"89":0.00675,"90":0.00337,"91":0.00337,"92":0.00506,"93":0.00337,"94":0.00337,"95":0.00844,"96":0.00675,"97":0.00337,"98":0.00337,"99":0.00675,"100":0.00675,"101":0.01687,"102":0.01518,"103":0.05736,"104":0.33065,"105":1.13873,"106":0.0135,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00169,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00337,"47":0,"48":0,"49":0,"50":0.00169,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00337,"60":0.00337,"62":0,"63":0.01012,"64":0.02193,"65":0.00169,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00337,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00169,"80":0,"81":0,"82":0,"83":0,"84":0.00169,"85":0.00169,"86":0,"87":0,"88":0,"89":0.00506,"90":0.05736,"91":0.00337,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00169},B:{"12":0,"13":0,"14":0,"15":0.00169,"16":0,"17":0,"18":0.00506,"79":0,"80":0,"81":0,"83":0,"84":0.00169,"85":0,"86":0,"87":0,"88":0,"89":0.00169,"90":0.00169,"91":0,"92":0.00506,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00169,"102":0.00169,"103":0.00337,"104":0.02531,"105":0.13327},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00337,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.1687,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00169,"14.1":0.00506,"15.1":0.00169,"15.2-15.3":0,"15.4":0.00169,"15.5":0.00506,"15.6":0.00506,"16.0":0,"16.1":0},G:{"8":0.00055,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00137,"5.0-5.1":0.00247,"6.0-6.1":0.00356,"7.0-7.1":0.03342,"8.1-8.4":0.00137,"9.0-9.2":0.00055,"9.3":0.07944,"10.0-10.2":0.00137,"10.3":0.03643,"11.0-11.2":0.00466,"11.3-11.4":0.01397,"12.0-12.1":0.02602,"12.2-12.5":0.30515,"13.0-13.1":0.01233,"13.2":0.0052,"13.3":0.02904,"13.4-13.7":0.05752,"14.0-14.4":0.25858,"14.5-14.8":0.22297,"15.0-15.1":0.1523,"15.2-15.3":0.15038,"15.4":0.15285,"15.5":0.44458,"15.6":0.49662,"16.0":0.20489,"16.1":0.0011},P:{"4":2.14383,"5.0-5.4":0.08128,"6.2-6.4":0.23369,"7.2-7.4":0.37593,"8.2":0.04064,"9.2":0.20321,"10.1":0.12192,"11.1-11.2":0.25401,"12.0":0.1016,"13.0":0.39625,"14.0":0.49786,"15.0":0.18289,"16.0":0.6909,"17.0":1.14812,"18.0":1.20908},I:{"0":0,"3":0,"4":0.00201,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02412,"4.2-4.3":0.04743,"4.4":0,"4.4.3-4.4.4":0.22511},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01012,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":1.18876},H:{"0":1.64487},L:{"0":81.49966},S:{"2.5":0},R:{_:"0"},M:{"0":0.27433},Q:{"13.1":0}}; 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 8349a56c559709..c6d532b01779c4 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00237,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00474,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00237,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.01185,"72":0.00237,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00237,"89":0,"90":0,"91":0.00237,"92":0,"93":0.00237,"94":0,"95":0.00237,"96":0,"97":0,"98":0.01659,"99":0.00237,"100":0.00237,"101":0.00474,"102":0.0711,"103":0.15879,"104":0.05214,"105":0.00948,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00237,"36":0,"37":0,"38":0,"39":0,"40":0.00237,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00237,"50":0,"51":0,"52":0,"53":0.00237,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00237,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00237,"68":0,"69":0.00237,"70":0.01422,"71":0,"72":0.00237,"73":0,"74":0.01185,"75":0,"76":0,"77":0.00237,"78":0,"79":0.00711,"80":0,"81":0.02607,"83":0,"84":0.00711,"85":0.00237,"86":0.00237,"87":0.00474,"88":0.00237,"89":0.10428,"90":0.00474,"91":0,"92":0.00237,"93":0.00474,"94":0.04503,"95":0.01185,"96":0.03792,"97":0.00711,"98":0,"99":0.01659,"100":0.00474,"101":0.00474,"102":0.02844,"103":0.60909,"104":1.54761,"105":0.01185,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00237,"25":0.01422,"26":0.03081,"27":0,"28":0.02133,"29":0.00237,"30":0.00237,"31":0.00474,"32":0.02607,"33":0,"34":0,"35":0.64938,"36":0.00474,"37":0,"38":0.00474,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.02133,"45":0.00948,"46":0.00711,"47":0.01896,"48":0,"49":0,"50":0.01185,"51":0.04029,"52":0,"53":0,"54":0.00711,"55":0.00711,"56":0.01185,"57":0.00474,"58":0.13272,"60":0.05214,"62":0,"63":0.80817,"64":0.28203,"65":0,"66":0,"67":0.00237,"68":0,"69":0,"70":0.00237,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00474,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00237,"86":0.00237,"87":0,"88":0.00237,"89":0.17538,"90":0.01659,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.03555},B:{"12":0.00948,"13":0.00237,"14":0,"15":0.00474,"16":0.00237,"17":0.00474,"18":0.00711,"79":0,"80":0,"81":0,"83":0,"84":0.00474,"85":0,"86":0,"87":0,"88":0,"89":0.00711,"90":0.00237,"91":0,"92":0.00474,"93":0,"94":0,"95":0.00237,"96":0,"97":0,"98":0.00237,"99":0,"100":0,"101":0.00474,"102":0.00237,"103":0.13509,"104":0.38394,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00237,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00237,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00237,"14.1":0.02844,"15.1":0.01185,"15.2-15.3":0.00237,"15.4":0,"15.5":0.0237,"15.6":0.01896,"16.0":0},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.00482,"7.0-7.1":0,"8.1-8.4":0.00201,"9.0-9.2":0.00161,"9.3":0.00763,"10.0-10.2":0,"10.3":0.01567,"11.0-11.2":0,"11.3-11.4":0.00241,"12.0-12.1":0.00844,"12.2-12.5":0.798,"13.0-13.1":0.00121,"13.2":0.00241,"13.3":0.01447,"13.4-13.7":0.02331,"14.0-14.4":0.06791,"14.5-14.8":0.18845,"15.0-15.1":0.0659,"15.2-15.3":0.21698,"15.4":0.14505,"15.5":1.10177,"15.6":1.32357,"16.0":0.02491},P:{"4":0.38799,"5.0-5.4":0.07147,"6.2-6.4":0,"7.2-7.4":1.95015,"8.2":0,"9.2":0.01021,"10.1":0.01021,"11.1-11.2":0.05105,"12.0":0,"13.0":0.17357,"14.0":0.12252,"15.0":0.06126,"16.0":0.19399,"17.0":0.55135,"18.0":0.64324},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00682,"4.2-4.3":0.00303,"4.4":0,"4.4.3-4.4.4":0.36777},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02133,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":66.61521},S:{"2.5":0.06104},R:{_:"0"},M:{"0":0.763},Q:{"10.4":0},O:{"0":1.02242},H:{"0":13.61647}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00238,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00476,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00476,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00238,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00238,"90":0,"91":0.00715,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.01667,"99":0,"100":0,"101":0.00238,"102":0.00238,"103":0.00953,"104":0.14054,"105":0.06431,"106":0.00715,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00238,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00238,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00238,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00715,"71":0,"72":0.00238,"73":0,"74":0.00715,"75":0,"76":0.00238,"77":0,"78":0.00476,"79":0.00476,"80":0.00476,"81":0.01906,"83":0.00238,"84":0.00476,"85":0.00238,"86":0.00238,"87":0.01667,"88":0,"89":0.08813,"90":0.00238,"91":0.00238,"92":0.00238,"93":0,"94":0.03573,"95":0.00953,"96":0.00715,"97":0.00715,"98":0.00238,"99":0.00476,"100":0.00476,"101":0.00476,"102":0.00715,"103":0.06431,"104":0.38827,"105":1.87702,"106":0.0262,"107":0.00238,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0.00238,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00238,"25":0.00715,"26":0.05955,"27":0.00238,"28":0.0262,"29":0,"30":0.00715,"31":0.00476,"32":0.02144,"33":0.00238,"34":0,"35":0.46687,"36":0.00238,"37":0,"38":0.01191,"39":0,"40":0,"41":0,"42":0.00238,"43":0,"44":0.07861,"45":0.00238,"46":0.01191,"47":0.0262,"48":0,"49":0,"50":0.01429,"51":0.05955,"52":0,"53":0,"54":0.00953,"55":0.00953,"56":0.01667,"57":0.06431,"58":0.08575,"60":0.07146,"62":0.00238,"63":0.5026,"64":0.70269,"65":0.03097,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00238,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00238,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00238,"90":0.18341,"91":0.00715,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.03573},B:{"12":0.01191,"13":0.00476,"14":0.00238,"15":0.00476,"16":0.00238,"17":0.00238,"18":0.00953,"79":0,"80":0,"81":0,"83":0,"84":0.00238,"85":0,"86":0.00238,"87":0,"88":0,"89":0,"90":0.00476,"91":0,"92":0.00476,"93":0,"94":0.00238,"95":0,"96":0,"97":0,"98":0.00476,"99":0.00238,"100":0,"101":0.00715,"102":0.00238,"103":0.01429,"104":0.07861,"105":0.36206},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00238,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00715,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00476,"13.1":0.00715,"14.1":0.01667,"15.1":0.00476,"15.2-15.3":0,"15.4":0,"15.5":0.02382,"15.6":0.02144,"16.0":0.00238,"16.1":0.00238},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00031,"6.0-6.1":0.00775,"7.0-7.1":0.0031,"8.1-8.4":0.00031,"9.0-9.2":0,"9.3":0.01766,"10.0-10.2":0.00248,"10.3":0.02169,"11.0-11.2":0.00248,"11.3-11.4":0.00031,"12.0-12.1":0.022,"12.2-12.5":0.20206,"13.0-13.1":0.00093,"13.2":0.00186,"13.3":0.00651,"13.4-13.7":0.03006,"14.0-14.4":0.16704,"14.5-14.8":0.19803,"15.0-15.1":0.07996,"15.2-15.3":0.15371,"15.4":0.06725,"15.5":0.34741,"15.6":1.41411,"16.0":0.23212,"16.1":0.00372},P:{"4":0.37801,"5.0-5.4":0.03065,"6.2-6.4":0.02043,"7.2-7.4":1.69592,"8.2":0,"9.2":0.02043,"10.1":0,"11.1-11.2":0.04087,"12.0":0.02043,"13.0":0.14303,"14.0":0.1226,"15.0":0.05108,"16.0":0.17368,"17.0":0.31671,"18.0":0.93991},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00425,"4.2-4.3":0.00255,"4.4":0,"4.4.3-4.4.4":0.29605},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00238,"10":0,"11":0.02144,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00762},O:{"0":0.86083},H:{"0":15.16732},L:{"0":66.68335},S:{"2.5":0.0838},R:{_:"0"},M:{"0":0.27425},Q:{"13.1":0}}; 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 c73847cc553efa..eeb89e0ef80142 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00467,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00467,"103":0.76555,"104":0.07936,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00934,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00934,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00467,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00467,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":1.61046,"76":0.00934,"77":0,"78":0.00934,"79":0,"80":0,"81":0,"83":0.02334,"84":0,"85":0,"86":0,"87":0.03734,"88":0.00467,"89":0,"90":0,"91":0.00467,"92":0.00934,"93":0.07469,"94":0,"95":0.00467,"96":0,"97":0.03268,"98":0.12604,"99":0.00934,"100":0.02334,"101":0.06068,"102":0.16338,"103":3.53368,"104":6.56788,"105":0.07469,"106":0.01867,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00467,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.14471,"90":0.01867,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00467,"15":0,"16":0.00467,"17":0,"18":0.04668,"79":0,"80":0,"81":0,"83":0.00467,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00934,"102":0.00467,"103":0.79356,"104":2.17529,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.1167,"14":0.02801,"15":0.04201,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00467,"11.1":0.014,"12.1":0.00467,"13.1":0.1167,"14.1":0.55549,"15.1":0.07002,"15.2-15.3":0.04201,"15.4":0.09336,"15.5":1.01762,"15.6":1.12032,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0042,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.56313,"10.0-10.2":0,"10.3":0.06304,"11.0-11.2":0,"11.3-11.4":0.02101,"12.0-12.1":0,"12.2-12.5":1.94154,"13.0-13.1":0.03782,"13.2":0.0042,"13.3":0.19752,"13.4-13.7":0.07564,"14.0-14.4":0.48749,"14.5-14.8":2.83667,"15.0-15.1":0.10506,"15.2-15.3":0.98758,"15.4":0.87832,"15.5":10.16157,"15.6":23.53802,"16.0":0.13868},P:{"4":0.17004,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05314,"8.2":0,"9.2":0.02125,"10.1":0,"11.1-11.2":0.1169,"12.0":0,"13.0":0.03188,"14.0":0.07439,"15.0":0.02125,"16.0":0.04251,"17.0":1.26464,"18.0":1.28589},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":1.0736},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01867,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":32.08499},S:{"2.5":0},R:{_:"0"},M:{"0":0.12264},Q:{"10.4":0},O:{"0":0.05332},H:{"0":0.02524}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.01093,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00546,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00546,"98":0,"99":0.01093,"100":0,"101":0,"102":0,"103":0.13111,"104":0.55723,"105":0.15296,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.02185,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00546,"71":0,"72":0,"73":0,"74":0,"75":3.04835,"76":0.02732,"77":0,"78":0,"79":0,"80":0.02185,"81":0,"83":0.03278,"84":0.00546,"85":0,"86":0,"87":0.01639,"88":0,"89":0,"90":0,"91":0.01093,"92":0.01093,"93":0.12565,"94":0,"95":0,"96":0.00546,"97":0,"98":0,"99":0,"100":0.01093,"101":0.00546,"102":0.08195,"103":0.67195,"104":3.72577,"105":9.73507,"106":0.18574,"107":0.09287,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01639,"90":0.21852,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00546,"14":0,"15":0,"16":0.00546,"17":0.00546,"18":0.06009,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00546,"102":0.00546,"103":0.02732,"104":0.62278,"105":2.93909},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02732,"14":0.02185,"15":0.15296,_:"0","3.1":0,"3.2":0,"5.1":0.00546,"6.1":0,"7.1":0,"9.1":0,"10.1":0.03278,"11.1":0.05463,"12.1":0.00546,"13.1":0.19667,"14.1":0.57908,"15.1":0.0437,"15.2-15.3":0.0437,"15.4":0.11472,"15.5":0.33324,"15.6":1.93937,"16.0":0.95603,"16.1":0.03278},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.04296,"10.0-10.2":0,"10.3":0.06278,"11.0-11.2":0.00661,"11.3-11.4":0.00661,"12.0-12.1":0,"12.2-12.5":1.85046,"13.0-13.1":0.00991,"13.2":0,"13.3":0.02644,"13.4-13.7":0.07931,"14.0-14.4":0.73688,"14.5-14.8":2.00576,"15.0-15.1":0.05948,"15.2-15.3":0.41966,"15.4":0.39653,"15.5":2.39898,"15.6":20.69206,"16.0":3.80996,"16.1":0.00991},P:{"4":0.05233,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0314,"8.2":0,"9.2":0.04187,"10.1":0,"11.1-11.2":0.0628,"12.0":0,"13.0":0.04187,"14.0":0.02093,"15.0":0.0314,"16.0":0.0314,"17.0":0.17793,"18.0":1.48622},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.26585,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":1.48833},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01639,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.0363},H:{"0":0.02148},L:{"0":34.79878},S:{"2.5":0},R:{_:"0"},M:{"0":0.07713},Q:{"13.1":0}}; 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 b33048e2c6c66a..fae1debc2e4813 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00344,"37":0,"38":0.00172,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00172,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00172,"62":0,"63":0,"64":0,"65":0,"66":0.00172,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00172,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00172,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00172,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00172,"99":0,"100":0.00344,"101":0,"102":0.01894,"103":0.3444,"104":0.02066,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00344,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00344,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00172,"38":0,"39":0,"40":0.00172,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00172,"81":0.00172,"83":0,"84":0.00172,"85":0,"86":0.00172,"87":0.00689,"88":0,"89":0.00344,"90":0.00172,"91":0.00172,"92":0.00344,"93":0,"94":0.02239,"95":0,"96":0.00172,"97":0.00517,"98":0.00689,"99":0.00172,"100":0.00344,"101":0.00172,"102":0.01722,"103":0.19975,"104":0.47699,"105":0.00344,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00172,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00172,"37":0,"38":0.00172,"39":0,"40":0,"41":0,"42":0.00172,"43":0,"44":0,"45":0.00172,"46":0.00172,"47":0.00172,"48":0,"49":0,"50":0.00172,"51":0.00172,"52":0,"53":0.00172,"54":0,"55":0.04822,"56":0.00172,"57":0.00172,"58":0.00172,"60":0.03788,"62":0.00172,"63":0.10676,"64":0.01894,"65":0.00172,"66":0,"67":0,"68":0,"69":0,"70":0.00172,"71":0,"72":0,"73":0.0155,"74":0,"75":0,"76":0,"77":0.00172,"78":0,"79":0.01205,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00172,"86":0,"87":0,"88":0,"89":0.00517,"90":0.00517,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00172,"13":0.00172,"14":0.00172,"15":0,"16":0,"17":0,"18":0.00517,"79":0,"80":0,"81":0,"83":0,"84":0.00172,"85":0.00172,"86":0,"87":0,"88":0,"89":0,"90":0.00172,"91":0,"92":0.00172,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00172,"101":0.00172,"102":0.00172,"103":0.03444,"104":0.09127,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00172,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00172,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00517,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00861,"15.6":0.031,"16.0":0},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.00237,"7.0-7.1":0.00316,"8.1-8.4":0.00395,"9.0-9.2":0,"9.3":0.03398,"10.0-10.2":0,"10.3":0.00237,"11.0-11.2":0.03872,"11.3-11.4":0.0245,"12.0-12.1":0.05848,"12.2-12.5":2.14242,"13.0-13.1":0.00869,"13.2":0.00711,"13.3":0.01818,"13.4-13.7":0.0648,"14.0-14.4":0.58006,"14.5-14.8":0.64881,"15.0-15.1":0.30188,"15.2-15.3":0.59191,"15.4":0.70334,"15.5":1.20832,"15.6":1.31817,"16.0":0.1383},P:{"4":0.3223,"5.0-5.4":0.02014,"6.2-6.4":0.05036,"7.2-7.4":0.27194,"8.2":0,"9.2":0.10072,"10.1":0,"11.1-11.2":0.18129,"12.0":0.02014,"13.0":0.06043,"14.0":0.5036,"15.0":0.08058,"16.0":0.66475,"17.0":0.8964,"18.0":0.68489},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01062,"4.2-4.3":0.01793,"4.4":0,"4.4.3-4.4.4":0.07834},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01378,"5.5":0},J:{"7":0,"10":0.32284},N:{"10":0,"11":0},L:{"0":81.09547},S:{"2.5":0.06622},R:{_:"0"},M:{"0":0.04967},Q:{"10.4":0.03311},O:{"0":1.08442},H:{"0":2.3668}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00157,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00157,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00157,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00157,"102":0.00157,"103":0.0094,"104":0.15817,"105":0.08613,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.0094,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00157,"47":0,"48":0,"49":0.00157,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00157,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00157,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00157,"81":0,"83":0.0047,"84":0,"85":0,"86":0.00157,"87":0.00157,"88":0,"89":0,"90":0.00157,"91":0,"92":0.00313,"93":0.00157,"94":0.02192,"95":0,"96":0,"97":0.00157,"98":0,"99":0,"100":0.0047,"101":0.00157,"102":0.00157,"103":0.01096,"104":0.08926,"105":0.41029,"106":0.0047,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00157,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00157,"39":0,"40":0,"41":0,"42":0.00626,"43":0.00157,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00157,"51":0,"52":0,"53":0,"54":0,"55":0.0047,"56":0,"57":0,"58":0.00157,"60":0.01723,"62":0,"63":0.02819,"64":0.03289,"65":0.00626,"66":0,"67":0,"68":0,"69":0,"70":0.00313,"71":0,"72":0,"73":0.01879,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.0094,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.01879,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.03602,"13":0.0047,"14":0.00313,"15":0,"16":0.00157,"17":0,"18":0.00626,"79":0,"80":0,"81":0,"83":0,"84":0.00157,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00157,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.04698,"102":0.00626,"103":0.00157,"104":0.01879,"105":0.11119},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00157,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00157,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00157,"12.1":0.00157,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0.00157,"15.5":0.00313,"15.6":0.03445,"16.0":0.00157,"16.1":0},G:{"8":0.00274,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00183,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01827,"10.0-10.2":0,"10.3":0.02009,"11.0-11.2":0.00639,"11.3-11.4":0,"12.0-12.1":0.11143,"12.2-12.5":1.4112,"13.0-13.1":0.00548,"13.2":0.00457,"13.3":0.00822,"13.4-13.7":0.28955,"14.0-14.4":0.61746,"14.5-14.8":1.05589,"15.0-15.1":1.86333,"15.2-15.3":0.36262,"15.4":0.68779,"15.5":0.82023,"15.6":1.23309,"16.0":0.56539,"16.1":0.01096},P:{"4":0.58297,"5.0-5.4":0.0201,"6.2-6.4":0.0201,"7.2-7.4":0.22113,"8.2":0.01005,"9.2":0.15077,"10.1":0,"11.1-11.2":0.10051,"12.0":0.01005,"13.0":0.06031,"14.0":0.30153,"15.0":0.07036,"16.0":0.56286,"17.0":0.53271,"18.0":0.76389},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00166,"4.2-4.3":0.00608,"4.4":0,"4.4.3-4.4.4":0.04419},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00626,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.0506},O:{"0":0.58195},H:{"0":1.50114},L:{"0":82.88004},S:{"2.5":0.06747},R:{_:"0"},M:{"0":0.03374},Q:{"13.1":0.00843}}; 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 16cc0d332a45ba..8ce0c8ae617bfc 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00451,"22":0,"23":0.00451,"24":0,"25":0,"26":0,"27":0.00451,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00451,"34":0,"35":0,"36":0,"37":0.00451,"38":0,"39":0.00451,"40":0.00901,"41":0,"42":0,"43":0.00451,"44":0,"45":0,"46":0,"47":0.00451,"48":0,"49":0,"50":0,"51":0,"52":0.03606,"53":0,"54":0,"55":0,"56":0.00451,"57":0,"58":0,"59":0,"60":0.00451,"61":0,"62":0,"63":0,"64":0,"65":0.00451,"66":0.00451,"67":0,"68":0.00451,"69":0,"70":0.00451,"71":0,"72":0.01352,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00451,"80":0.00451,"81":0.00451,"82":0,"83":0,"84":0.00901,"85":0,"86":0,"87":0,"88":0.01803,"89":0.00451,"90":0.00451,"91":0.05859,"92":0.00451,"93":0,"94":0.01352,"95":0.00451,"96":0.00451,"97":0.00451,"98":0.01352,"99":0.01352,"100":0.01352,"101":0.03606,"102":0.17577,"103":2.86645,"104":0.28845,"105":0.00451,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00451,"22":0,"23":0,"24":0,"25":0,"26":0.00451,"27":0.00451,"28":0,"29":0.00901,"30":0,"31":0,"32":0,"33":0.01352,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00451,"41":0,"42":0.00451,"43":0.01352,"44":0,"45":0,"46":0.00901,"47":0,"48":0.00451,"49":0.01352,"50":0,"51":0,"52":0.00451,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00451,"59":0,"60":0.00901,"61":0.00451,"62":0,"63":0.01352,"64":0.02704,"65":0.00901,"66":0,"67":0,"68":0,"69":0.00451,"70":0.00901,"71":0,"72":0.01803,"73":0.00901,"74":0.02254,"75":0.00451,"76":0.00451,"77":0.00901,"78":0,"79":0.04958,"80":0.01352,"81":0.01803,"83":0.01352,"84":0.01352,"85":0.01352,"86":0.04056,"87":0.04507,"88":0.01352,"89":0.01803,"90":0.00901,"91":0.01352,"92":0.01803,"93":0.01803,"94":0.00901,"95":0.01803,"96":0.04958,"97":0.02254,"98":0.02254,"99":0.04958,"100":0.08113,"101":0.08113,"102":0.20282,"103":2.88448,"104":6.04839,"105":0.01803,"106":0.00901,"107":0,_:"108"},F:{"9":0,"11":0,"12":0.00451,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00451,"29":0.00451,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00451,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00451,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00451,"58":0.00451,"60":0.0631,"62":0,"63":0.30648,"64":0.15324,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00451,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00901,"79":0.03155,"80":0.00451,"81":0.00901,"82":0.02254,"83":0.00451,"84":0.01352,"85":0.04056,"86":0.01352,"87":0.00901,"88":0.01803,"89":1.27097,"90":0.04958,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00901,"13":0,"14":0.04507,"15":0.02254,"16":0.00901,"17":0.00451,"18":0.01352,"79":0,"80":0,"81":0,"83":0,"84":0.00901,"85":0,"86":0,"87":0,"88":0,"89":0.00451,"90":0,"91":0,"92":0.04056,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00451,"100":0.00451,"101":0.00901,"102":0.01352,"103":0.5138,"104":1.04112,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00451,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00451,"13.1":0.00451,"14.1":0.00901,"15.1":0,"15.2-15.3":0.00451,"15.4":0.00451,"15.5":0.01352,"15.6":0.04958,"16.0":0},G:{"8":0.00373,"3.2":0.0014,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00979,"6.0-6.1":0.00047,"7.0-7.1":0.0513,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.12592,"10.0-10.2":0,"10.3":0.10027,"11.0-11.2":0.01213,"11.3-11.4":0.00513,"12.0-12.1":0.07042,"12.2-12.5":1.00126,"13.0-13.1":0.00233,"13.2":0.01213,"13.3":0.01213,"13.4-13.7":0.09327,"14.0-14.4":0.17721,"14.5-14.8":0.18374,"15.0-15.1":0.1054,"15.2-15.3":0.16369,"15.4":0.12778,"15.5":0.87814,"15.6":1.40792,"16.0":0.11659},P:{"4":0.29735,"5.0-5.4":0.01025,"6.2-6.4":0,"7.2-7.4":0.02051,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03076,"12.0":0.01025,"13.0":0.01025,"14.0":0,"15.0":0,"16.0":0.02051,"17.0":0.21533,"18.0":0.1538},I:{"0":0,"3":0,"4":0.00264,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01409,"4.2-4.3":0.04402,"4.4":0,"4.4.3-4.4.4":0.25798},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.07211,"5.5":0},J:{"7":0,"10":0.02197},N:{"10":0,"11":0},L:{"0":71.21239},S:{"2.5":0.00549},R:{_:"0"},M:{"0":0.29662},Q:{"10.4":0.02197},O:{"0":0.74705},H:{"0":2.09577}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00402,"44":0,"45":0.00402,"46":0,"47":0.00402,"48":0.00402,"49":0,"50":0,"51":0,"52":0.01606,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00402,"66":0,"67":0,"68":0,"69":0.00402,"70":0.00402,"71":0,"72":0.00803,"73":0,"74":0,"75":0,"76":0.00803,"77":0,"78":0,"79":0.00803,"80":0.00803,"81":0.00402,"82":0,"83":0,"84":0.02811,"85":0,"86":0,"87":0,"88":0,"89":0.00402,"90":0,"91":0.02008,"92":0.02409,"93":0.00402,"94":0.00402,"95":0.00402,"96":0.00803,"97":0.00803,"98":0.00402,"99":0.00803,"100":0.02811,"101":0.01205,"102":0.03212,"103":0.06826,"104":1.85895,"105":0.55809,"106":0.00402,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00402,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.01205,"26":0.00402,"27":0,"28":0.00402,"29":0,"30":0,"31":0,"32":0,"33":0.00803,"34":0.00402,"35":0.00402,"36":0,"37":0,"38":0,"39":0,"40":0.00402,"41":0,"42":0,"43":0.00402,"44":0,"45":0,"46":0,"47":0.00402,"48":0,"49":0.10038,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.02008,"64":0,"65":0.00402,"66":0,"67":0,"68":0.01606,"69":0,"70":0.00803,"71":0,"72":0.01606,"73":0.00402,"74":0.00803,"75":0.0522,"76":0.00803,"77":0.00402,"78":0.00402,"79":0.04015,"80":0.00402,"81":0.02811,"83":0.00402,"84":0.00803,"85":0.02409,"86":0.01205,"87":0.03212,"88":0.00803,"89":0.00402,"90":0.00803,"91":0.01205,"92":0.01606,"93":0.00803,"94":0.00402,"95":0.02409,"96":0.04417,"97":0.01606,"98":0.01205,"99":0.01205,"100":0.02008,"101":0.08833,"102":0.03614,"103":0.18469,"104":1.38919,"105":5.17132,"106":0.09235,"107":0.00402,"108":0.00402,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00402,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00402,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00402,"58":0,"60":0.03614,"62":0,"63":0.04417,"64":0.26098,"65":0.03212,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00402,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00402,"80":0,"81":0,"82":0.00402,"83":0,"84":0,"85":0.00402,"86":0,"87":0,"88":0,"89":0.01205,"90":0.44968,"91":0.02008,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00803,"13":0.00402,"14":0.06826,"15":0.00402,"16":0,"17":0.01205,"18":0.01205,"79":0,"80":0,"81":0,"83":0,"84":0.00402,"85":0.00402,"86":0,"87":0,"88":0,"89":0.00402,"90":0,"91":0,"92":0.02811,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00803,"102":0.00402,"103":0.02008,"104":0.28908,"105":1.24867},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00402,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00402,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00402,"12.1":0,"13.1":0.00402,"14.1":0.01205,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00402,"15.6":0.03614,"16.0":0.01606,"16.1":0},G:{"8":0.02223,"3.2":0.00371,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00519,"6.0-6.1":0.00815,"7.0-7.1":0.10968,"8.1-8.4":0.00148,"9.0-9.2":0,"9.3":0.34313,"10.0-10.2":0,"10.3":0.2957,"11.0-11.2":0.02816,"11.3-11.4":0.00593,"12.0-12.1":0.01853,"12.2-12.5":1.78976,"13.0-13.1":0.00371,"13.2":0.02149,"13.3":0.03187,"13.4-13.7":0.11561,"14.0-14.4":0.31867,"14.5-14.8":0.38389,"15.0-15.1":0.13488,"15.2-15.3":0.21195,"15.4":0.09486,"15.5":0.79668,"15.6":1.83422,"16.0":0.71516,"16.1":0.02372},P:{"4":0.6865,"5.0-5.4":0.01025,"6.2-6.4":0,"7.2-7.4":0.03074,"8.2":0.01025,"9.2":0.01025,"10.1":0,"11.1-11.2":0.01025,"12.0":0,"13.0":0.02049,"14.0":0,"15.0":0,"16.0":0.02049,"17.0":0.05123,"18.0":0.43035},I:{"0":0,"3":0,"4":0.00332,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02992,"4.2-4.3":0.04765,"4.4":0,"4.4.3-4.4.4":0.47205},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.15659,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.03591},O:{"0":0.86184},H:{"0":2.30048},L:{"0":71.74237},S:{"2.5":0.01197},R:{_:"0"},M:{"0":0.09576},Q:{"13.1":0.01796}}; 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 13bec1b079f820..999344dfff112e 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01157,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00386,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.01542,"68":0.00771,"69":0.00771,"70":0.00771,"71":0.00771,"72":0.00771,"73":0.00771,"74":0.00771,"75":0.00771,"76":0.00771,"77":0.00771,"78":0.01157,"79":0.00771,"80":0.00771,"81":0.00771,"82":0.00771,"83":0.00771,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00386,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00386,"98":0.00386,"99":0.00386,"100":0.00386,"101":0.00771,"102":0.01928,"103":0.37018,"104":0.07712,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00386,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00386,"39":0,"40":0,"41":0.00386,"42":0,"43":0.00386,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01928,"50":0,"51":0,"52":0,"53":0.00386,"54":0,"55":0,"56":0.00771,"57":0,"58":0.00386,"59":0,"60":0,"61":0,"62":0,"63":0.00386,"64":0,"65":0.00386,"66":0,"67":0,"68":0.02314,"69":0.01542,"70":0.01542,"71":0.01542,"72":0.05784,"73":0.00771,"74":0.02699,"75":0.01542,"76":0.01542,"77":0.01542,"78":0.02314,"79":0.05398,"80":0.04242,"81":0.02699,"83":0.03085,"84":0.03085,"85":0.0347,"86":0.04627,"87":0.03856,"88":0.0347,"89":0.02699,"90":0.03085,"91":0.03085,"92":0.03085,"93":0.00771,"94":0.01542,"95":0.01157,"96":0.01928,"97":0.02314,"98":0.01157,"99":0.01542,"100":0.02699,"101":0.0347,"102":0.05398,"103":2.28275,"104":6.69402,"105":0.02314,"106":0.00386,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00386,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00386,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00386,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00386,"54":0.00386,"55":0.00386,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00386,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00386,"72":0,"73":0.00386,"74":0.00386,"75":0.00386,"76":0.01157,"77":0.01157,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.11568,"90":0.01542,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00386,"17":0.00386,"18":0.00771,"79":0,"80":0.00386,"81":0.00386,"83":0.00386,"84":0.00386,"85":0.00386,"86":0.00386,"87":0.00386,"88":0.00386,"89":0.01542,"90":0.02314,"91":0.01157,"92":0.00386,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00386,"101":0.00386,"102":0.00386,"103":0.30077,"104":0.81747,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00771,"14":0.03085,"15":0.01542,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.10026,"10.1":0,"11.1":0.00386,"12.1":0.00386,"13.1":0.02699,"14.1":0.08869,"15.1":0.01928,"15.2-15.3":0.01542,"15.4":0.06941,"15.5":0.33162,"15.6":0.57454,"16.0":0.00771},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00218,"6.0-6.1":0.00436,"7.0-7.1":0.01091,"8.1-8.4":0,"9.0-9.2":0.03272,"9.3":0.08507,"10.0-10.2":0.03926,"10.3":0.0807,"11.0-11.2":0.07198,"11.3-11.4":0.0349,"12.0-12.1":0.10251,"12.2-12.5":0.90518,"13.0-13.1":0.08507,"13.2":0.05889,"13.3":0.0807,"13.4-13.7":0.21375,"14.0-14.4":0.63908,"14.5-14.8":1.3785,"15.0-15.1":0.47331,"15.2-15.3":0.56492,"15.4":1.08622,"15.5":4.83564,"15.6":10.91455,"16.0":0.10251},P:{"4":0.13512,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09355,"8.2":0,"9.2":0.02079,"10.1":0,"11.1-11.2":0.09355,"12.0":0.01039,"13.0":0.06236,"14.0":0.09355,"15.0":0.05197,"16.0":0.1663,"17.0":0.92506,"18.0":1.11216},I:{"0":0,"3":0,"4":0.0082,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00492,"4.2-4.3":0.00984,"4.4":0,"4.4.3-4.4.4":0.05247},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00397,"9":0.00397,"10":0,"11":0.13088,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":59.72795},S:{"2.5":0},R:{_:"0"},M:{"0":0.22733},Q:{"10.4":0},O:{"0":0.2089},H:{"0":0.22104}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01094,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.01094,"68":0.0073,"69":0.00365,"70":0.00365,"71":0.00365,"72":0.00365,"73":0.00365,"74":0.00365,"75":0.00365,"76":0.00365,"77":0.00365,"78":0.0073,"79":0.00365,"80":0.00365,"81":0.00365,"82":0.00365,"83":0.00365,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00365,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00365,"100":0,"101":0,"102":0.00365,"103":0.01459,"104":0.29184,"105":0.10579,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00365,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00365,"39":0,"40":0,"41":0,"42":0,"43":0.00365,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01824,"50":0,"51":0,"52":0.00365,"53":0.00365,"54":0,"55":0,"56":0.0073,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00365,"64":0,"65":0.00365,"66":0,"67":0,"68":0.01094,"69":0.0073,"70":0.0073,"71":0.0073,"72":0.0839,"73":0.00365,"74":0.01459,"75":0.0073,"76":0.01094,"77":0.0073,"78":0.01459,"79":0.04378,"80":0.01824,"81":0.01459,"83":0.02189,"84":0.01824,"85":0.02189,"86":0.02554,"87":0.02554,"88":0.02189,"89":0.01824,"90":0.01824,"91":0.02554,"92":0.02918,"93":0.00365,"94":0.01094,"95":0.01094,"96":0.01459,"97":0.01824,"98":0.01094,"99":0.01459,"100":0.02189,"101":0.02189,"102":0.02554,"103":0.09485,"104":1.58688,"105":6.51533,"106":0.10214,"107":0.00365,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00365,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00365,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00365,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00365,"54":0.00365,"55":0.00365,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00365,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00365,"76":0.0073,"77":0.0073,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.0073,"90":0.10944,"91":0.00365,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.0073,"79":0,"80":0,"81":0,"83":0,"84":0.00365,"85":0,"86":0.00365,"87":0,"88":0,"89":0.0073,"90":0.01459,"91":0.0073,"92":0.00365,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00365,"101":0.00365,"102":0.00365,"103":0.01094,"104":0.15322,"105":0.9193},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00365,"14":0.02554,"15":0.01094,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.04742,"10.1":0,"11.1":0.00365,"12.1":0.00365,"13.1":0.02554,"14.1":0.07661,"15.1":0.01459,"15.2-15.3":0.01094,"15.4":0.05107,"15.5":0.13133,"15.6":0.75878,"16.0":0.04013,"16.1":0.0073},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0023,"6.0-6.1":0.0023,"7.0-7.1":0.01151,"8.1-8.4":0,"9.0-9.2":0.02071,"9.3":0.06905,"10.0-10.2":0.02532,"10.3":0.08056,"11.0-11.2":0.04603,"11.3-11.4":0.02532,"12.0-12.1":0.07135,"12.2-12.5":0.82857,"13.0-13.1":0.05524,"13.2":0.03913,"13.3":0.06444,"13.4-13.7":0.17492,"14.0-14.4":0.60992,"14.5-14.8":1.28888,"15.0-15.1":0.39127,"15.2-15.3":0.45341,"15.4":0.79174,"15.5":1.82515,"15.6":11.50095,"16.0":3.97021,"16.1":0.03452},P:{"4":0.13554,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.10426,"8.2":0,"9.2":0.02085,"10.1":0,"11.1-11.2":0.09383,"12.0":0.01043,"13.0":0.05213,"14.0":0.09383,"15.0":0.05213,"16.0":0.15639,"17.0":0.2815,"18.0":2.01223},I:{"0":0,"3":0,"4":0.00568,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00284,"4.2-4.3":0.00426,"4.4":0,"4.4.3-4.4.4":0.04546},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00375,"9":0.00375,"10":0,"11":0.13113,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.22232},H:{"0":0.21048},L:{"0":60.23262},S:{"2.5":0},R:{_:"0"},M:{"0":0.17786},Q:{"13.1":0}}; 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 dfade00d5005ea..db49824e54028a 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00569,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00285,"68":0.00285,"69":0,"70":0,"71":0,"72":0.00285,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.04555,"79":0,"80":0,"81":0.00285,"82":0.00285,"83":0.00285,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01708,"92":0.00285,"93":0.00285,"94":0.00285,"95":0.01424,"96":0.00285,"97":0.00285,"98":0,"99":0.00569,"100":0.00569,"101":0.01424,"102":0.01708,"103":0.17936,"104":0.02847,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00285,"38":0,"39":0,"40":0.00285,"41":0,"42":0,"43":0,"44":0.00854,"45":0,"46":0,"47":0.01708,"48":0,"49":0.00285,"50":0.00285,"51":0,"52":0.00285,"53":0,"54":0,"55":0,"56":0,"57":0.00285,"58":0.00285,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00285,"66":0,"67":0.00285,"68":0.00285,"69":0,"70":0,"71":0.00285,"72":0,"73":0.00285,"74":0.00285,"75":0.00285,"76":0,"77":0.00285,"78":0.00569,"79":0.07118,"80":0.08541,"81":0.02278,"83":0.13381,"84":0.07402,"85":0.29039,"86":0.05979,"87":0.07402,"88":0.00854,"89":0.01708,"90":0.02562,"91":0.01424,"92":0.03132,"93":0.01424,"94":0.01708,"95":0.00854,"96":0.02278,"97":0.01708,"98":0.02562,"99":0.01993,"100":0.03701,"101":0.03416,"102":0.07687,"103":1.11033,"104":2.62778,"105":0.00285,"106":0.01424,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00285,"29":0.00285,"30":0,"31":0,"32":0.00285,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00285,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00285,"60":0.01424,"62":0,"63":0.07118,"64":0.02847,"65":0,"66":0,"67":0,"68":0.00285,"69":0,"70":0.00285,"71":0.00285,"72":0.04271,"73":0,"74":0,"75":0,"76":0.00285,"77":0,"78":0.00569,"79":0.00569,"80":0.00569,"81":0,"82":0,"83":0,"84":0,"85":0.00569,"86":0.00569,"87":0,"88":0.00569,"89":0.28755,"90":0.02847,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00285,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00285,"13":0.00285,"14":0.00285,"15":0,"16":0.00285,"17":0,"18":0.00854,"79":0,"80":0,"81":0,"83":0,"84":0.00285,"85":0,"86":0.00285,"87":0.00285,"88":0,"89":0.00569,"90":0.00569,"91":0.00285,"92":0.00569,"93":0.00285,"94":0.00285,"95":0,"96":0.00285,"97":0.00285,"98":0.00285,"99":0.00285,"100":0.00285,"101":0.01424,"102":0.01424,"103":0.10534,"104":0.29894,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01424,"14":0.01139,"15":0.00285,_:"0","3.1":0,"3.2":0,"5.1":0.31886,"6.1":0,"7.1":0,"9.1":0.00285,"10.1":0,"11.1":0,"12.1":0.00854,"13.1":0.01708,"14.1":0.01993,"15.1":0.01139,"15.2-15.3":0.02562,"15.4":0.02847,"15.5":0.05125,"15.6":0.09965,"16.0":0.00569},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01394,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02091,"8.1-8.4":0,"9.0-9.2":0.01254,"9.3":0.10592,"10.0-10.2":0.01394,"10.3":0.03902,"11.0-11.2":0.06132,"11.3-11.4":0.0669,"12.0-12.1":0.08084,"12.2-12.5":1.46618,"13.0-13.1":0.09198,"13.2":0.03763,"13.3":0.17282,"13.4-13.7":0.46689,"14.0-14.4":1.64876,"14.5-14.8":1.77977,"15.0-15.1":0.72612,"15.2-15.3":1.12194,"15.4":0.69407,"15.5":2.44178,"15.6":2.70659,"16.0":0.14076},P:{"4":1.14564,"5.0-5.4":0.19094,"6.2-6.4":0.11054,"7.2-7.4":0.60297,"8.2":0.01005,"9.2":0.15074,"10.1":0.07035,"11.1-11.2":0.30148,"12.0":0.0804,"13.0":0.17084,"14.0":0.79391,"15.0":0.10049,"16.0":0.41203,"17.0":0.96475,"18.0":0.60297},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02048,"4.2-4.3":0.01967,"4.4":0,"4.4.3-4.4.4":0.15978},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00316,"10":0,"11":0.02531,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":65.59945},S:{"2.5":0},R:{_:"0"},M:{"0":0.13591},Q:{"10.4":0},O:{"0":1.26608},H:{"0":1.76072}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00403,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00201,"68":0,"69":0,"70":0,"71":0,"72":0.00201,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00805,"79":0,"80":0.02214,"81":0,"82":0,"83":0.00201,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00403,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00201,"101":0.00604,"102":0.00403,"103":0.00604,"104":0.10266,"105":0.02818,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00403,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00201,"36":0,"37":0,"38":0.00201,"39":0,"40":0.00201,"41":0,"42":0,"43":0,"44":0.00403,"45":0,"46":0.00201,"47":0,"48":0,"49":0.00201,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00201,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00403,"64":0.00201,"65":0,"66":0,"67":0,"68":0,"69":0.00201,"70":0.00403,"71":0.00201,"72":0.00201,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00201,"79":0.02416,"80":0.00201,"81":0.01812,"83":0.01208,"84":0.03422,"85":0.02416,"86":0.01208,"87":0.00201,"88":0.00604,"89":0.00604,"90":0.00201,"91":0.00201,"92":0.00201,"93":0.00201,"94":0.00201,"95":0.00201,"96":0.01007,"97":0.00403,"98":0.01007,"99":0.00604,"100":0.00604,"101":0.00604,"102":0.02617,"103":0.03825,"104":0.47104,"105":1.61443,"106":0.03623,"107":0.00201,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00201,"29":0.00201,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00201,"37":0,"38":0.00201,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00201,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00201,"52":0,"53":0,"54":0.00201,"55":0,"56":0,"57":0,"58":0.00201,"60":0.01007,"62":0,"63":0.03422,"64":0.0624,"65":0.00403,"66":0,"67":0,"68":0.00201,"69":0,"70":0,"71":0.00201,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01007,"80":0.00403,"81":0,"82":0,"83":0,"84":0,"85":0.00805,"86":0.00403,"87":0,"88":0.00403,"89":0.00805,"90":0.17111,"91":0.00604,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00201,"14":0,"15":0,"16":0.00201,"17":0,"18":0.00403,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00403,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00805,"104":0.04227,"105":0.12682},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00403,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.15098,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00201,"13.1":0.00805,"14.1":0.00201,"15.1":0.00403,"15.2-15.3":0.00403,"15.4":0.00403,"15.5":0.00805,"15.6":0.03422,"16.0":0.01007,"16.1":0},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.00719,"8.1-8.4":0,"9.0-9.2":0.0012,"9.3":0.08993,"10.0-10.2":0.006,"10.3":0.05396,"11.0-11.2":0.05636,"11.3-11.4":0.04317,"12.0-12.1":0.05995,"12.2-12.5":1.35253,"13.0-13.1":0.06595,"13.2":0.02998,"13.3":0.13309,"13.4-13.7":0.29257,"14.0-14.4":1.36332,"14.5-14.8":1.73263,"15.0-15.1":0.40648,"15.2-15.3":0.79137,"15.4":0.57914,"15.5":1.42087,"15.6":2.21704,"16.0":1.11871,"16.1":0.03837},P:{"4":1.01636,"5.0-5.4":0.21132,"6.2-6.4":0.1912,"7.2-7.4":0.57359,"8.2":0.04025,"9.2":0.14088,"10.1":0.04025,"11.1-11.2":0.20126,"12.0":0.03019,"13.0":0.14088,"14.0":0.24151,"15.0":0.12076,"16.0":0.48302,"17.0":0.38239,"18.0":1.25787},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.07331,"4.2-4.3":0.06632,"4.4":0,"4.4.3-4.4.4":0.43634},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04429,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":1.07825},H:{"0":1.64086},L:{"0":73.36771},S:{"2.5":0.00799},R:{_:"0"},M:{"0":0.08786},Q:{"13.1":0.00799}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TK.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TK.js index b2da6f6d110c69..d4c6def77296e8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TK.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TK.js @@ -1 +1 @@ -module.exports={C:{"102":0.04198,"103":0.04198,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 104 105 106 3.5 3.6"},D:{"103":0.08395,"104":0.41975,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 105 106 107 108"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"100":0.04198,"103":0.20988,_:"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 104 105"},E:{"4":0,"10":0.04198,_:"0 5 6 7 8 9 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.1":24.06847,"15.2-15.3":43.07475,"15.4":0.08395,"15.6":0.04198,"16.0":0.20988},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.04189,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":1.18278,"15.2-15.3":7.60266,"15.4":0,"15.5":0.04189,"15.6":0.3803,"16.0":1.77362},P:{"4":0.29735,"5.0-5.4":0.01025,"6.2-6.4":0,"7.2-7.4":0.02051,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03076,"12.0":0.01025,"13.0":0.01025,"14.0":1.39291,"15.0":0,"16.0":0.13027,"17.0":0.21533,"18.0":0.04008},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 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":3.42186},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0.04173},H:{"0":0}}; +module.exports={C:{"104":0.60257,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 3.5 3.6"},D:{"87":0.13469,"103":0.60257,"104":0.33318,"105":2.01328,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 106 107 108 109"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"93":0.0638,"102":0.0638,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 94 95 96 97 98 99 100 101 103 104 105"},E:{"4":0,_:"0 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 16.1","15.1":26.08752,"15.2-15.3":25.35026,"15.4":0.26938,"15.6":0.13469,"16.0":0.0638},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.06679,"15.0-15.1":2.67605,"15.2-15.3":8.63218,"15.4":0,"15.5":0,"15.6":1.00334,"16.0":2.14171,"16.1":0},P:{"4":0.6865,"5.0-5.4":0.01025,"6.2-6.4":0,"7.2-7.4":0.03074,"8.2":0.01025,"9.2":0.01025,"10.1":0,"11.1-11.2":0.19838,"12.0":0,"13.0":0.02049,"14.0":0.06943,"15.0":0,"16.0":0.02049,"17.0":0.05123,"18.0":0.43035},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 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":14.31921},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0}}; 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 b37650a3045f05..a8096f739e9d26 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.00519,"20":0,"21":0.03632,"22":0,"23":0,"24":0.00519,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.01556,"31":0.06226,"32":0,"33":0,"34":0.00519,"35":0.01556,"36":0,"37":0.01556,"38":0,"39":0.01038,"40":0.00519,"41":0.15045,"42":0,"43":0.00519,"44":0.02075,"45":0,"46":0.00519,"47":0.02075,"48":0.02594,"49":0,"50":0,"51":0.00519,"52":0.05707,"53":0,"54":0,"55":0,"56":0.00519,"57":0.03113,"58":0,"59":0,"60":0.00519,"61":0.02075,"62":0.00519,"63":0,"64":0,"65":0.00519,"66":0.01038,"67":0.04669,"68":0,"69":0,"70":0,"71":0,"72":0.03113,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03113,"79":0.27496,"80":0,"81":0,"82":0,"83":0.00519,"84":0,"85":0.02594,"86":0.00519,"87":0,"88":0.21271,"89":0.01556,"90":0,"91":0.16602,"92":0.02075,"93":0.01038,"94":0,"95":0.02594,"96":0.00519,"97":0.01038,"98":0.02594,"99":0.25421,"100":0.06744,"101":0.05707,"102":0.18158,"103":3.81318,"104":0.63812,"105":0.03632,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00519,"32":0,"33":0,"34":0.00519,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00519,"41":0,"42":0.00519,"43":0.02075,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01556,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00519,"56":0.03113,"57":0,"58":0.06226,"59":0.00519,"60":0,"61":0.03113,"62":0.02075,"63":0.02075,"64":0.02075,"65":0.03113,"66":0.00519,"67":0.01038,"68":0.01038,"69":0,"70":0.01038,"71":0,"72":0,"73":0,"74":0.02594,"75":0,"76":0,"77":0.00519,"78":0.00519,"79":0.00519,"80":0.05707,"81":0.00519,"83":0.00519,"84":0.03632,"85":0.01038,"86":0.01556,"87":0.06744,"88":0.00519,"89":0.00519,"90":0.00519,"91":0.01556,"92":0.01556,"93":0.00519,"94":0.01038,"95":0.01038,"96":0.02594,"97":0.01556,"98":0.02594,"99":0.0415,"100":0.0415,"101":0.06226,"102":0.14008,"103":4.52394,"104":9.07381,"105":0.04669,"106":0.01038,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.02594,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00519,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.01038,"55":0.00519,"56":0.01038,"57":0,"58":0.00519,"60":0.00519,"62":0,"63":0.05707,"64":0.03113,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.01038,"78":0,"79":0.00519,"80":0,"81":0.01038,"82":0,"83":0,"84":0.00519,"85":0.00519,"86":0,"87":0.00519,"88":0.00519,"89":0.63294,"90":0.03113,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.0415,"13":0.01038,"14":0.01038,"15":0.02075,"16":0.01038,"17":0.01038,"18":0.06226,"79":0,"80":0,"81":0,"83":0,"84":0.01038,"85":0.00519,"86":0,"87":0,"88":0,"89":0.01556,"90":0.00519,"91":0,"92":0.01038,"93":0,"94":0,"95":0,"96":0.00519,"97":0,"98":0.00519,"99":0.01556,"100":0.03113,"101":0.03632,"102":0.0415,"103":1.01166,"104":2.00257,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00519,"12":0.00519,"13":0.00519,"14":0.04669,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00519,"10.1":0.10376,"11.1":0.00519,"12.1":0.01556,"13.1":0.1297,"14.1":0.10895,"15.1":0.09338,"15.2-15.3":0.03113,"15.4":0.05188,"15.5":0.06226,"15.6":0.01038,"16.0":0},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.01067,"10.0-10.2":0.01245,"10.3":0.04447,"11.0-11.2":0.00978,"11.3-11.4":0.02046,"12.0-12.1":0.05692,"12.2-12.5":1.17756,"13.0-13.1":0.07115,"13.2":0.02579,"13.3":0.2935,"13.4-13.7":0.27927,"14.0-14.4":1.3003,"14.5-14.8":1.54755,"15.0-15.1":0.51852,"15.2-15.3":0.41001,"15.4":0.43225,"15.5":1.55289,"15.6":1.05394,"16.0":0.07115},P:{"4":0.23222,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.14135,"8.2":0.0101,"9.2":0.03029,"10.1":0.0101,"11.1-11.2":0.23222,"12.0":0,"13.0":0.04039,"14.0":0.11106,"15.0":0.06058,"16.0":0.18173,"17.0":0.39376,"18.0":0.20193},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00215,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.13416},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06744,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":58.88138},S:{"2.5":0},R:{_:"0"},M:{"0":0.03368},Q:{"10.4":0},O:{"0":0.91909},H:{"0":1.23459}}; +module.exports={C:{"2":0,"3":0,"4":0.00512,"5":0,"6":0,"7":0.00512,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00512,"19":0,"20":0,"21":0.03069,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00512,"30":0.00512,"31":0.01023,"32":0.02558,"33":0,"34":0.01023,"35":0.00512,"36":0.00512,"37":0.00512,"38":0,"39":0.02046,"40":0.00512,"41":0.07673,"42":0,"43":0.00512,"44":0.01535,"45":0,"46":0,"47":0.01535,"48":0.01535,"49":0,"50":0,"51":0,"52":0.03581,"53":0,"54":0.00512,"55":0,"56":0.01023,"57":0.01535,"58":0,"59":0,"60":0.00512,"61":0.02558,"62":0.00512,"63":0,"64":0,"65":0,"66":0.04604,"67":0.03581,"68":0,"69":0,"70":0.00512,"71":0,"72":0.01535,"73":0.00512,"74":0,"75":0,"76":0,"77":0.00512,"78":0.13811,"79":0.22506,"80":0,"81":0,"82":0.00512,"83":0,"84":0,"85":0.03581,"86":0.00512,"87":0,"88":0.31713,"89":0.01023,"90":0,"91":0.05627,"92":0.02558,"93":0.01023,"94":0.00512,"95":0.04092,"96":0.00512,"97":0.00512,"98":0.06138,"99":0.12276,"100":0.02046,"101":0.05627,"102":0.07161,"103":0.29667,"104":3.01274,"105":1.31967,"106":0.13811,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.01535,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00512,"41":0,"42":0,"43":0.02046,"44":0.01535,"45":0,"46":0,"47":0,"48":0.01023,"49":0,"50":0,"51":0.00512,"52":0,"53":0,"54":0,"55":0,"56":0.02558,"57":0,"58":0.0665,"59":0,"60":0,"61":0.02558,"62":0.03069,"63":0.03581,"64":0.01535,"65":0.01023,"66":0,"67":0.00512,"68":0.01535,"69":0,"70":0.00512,"71":0.00512,"72":0.03069,"73":0,"74":0.03069,"75":0.02558,"76":0.00512,"77":0.00512,"78":0,"79":0.01023,"80":0.19437,"81":0.00512,"83":0.01535,"84":0.02046,"85":0.00512,"86":0.00512,"87":0.03581,"88":0.00512,"89":0.01535,"90":0.00512,"91":0.02046,"92":0.01023,"93":0.00512,"94":0.00512,"95":0.02558,"96":0.05627,"97":0.03069,"98":0.04604,"99":0.01535,"100":0.03069,"101":0.03581,"102":0.08184,"103":0.46035,"104":3.20711,"105":10.0919,"106":0.17391,"107":0.00512,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.05627,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.01535,"51":0,"52":0,"53":0,"54":0.00512,"55":0.01023,"56":0.01023,"57":0,"58":0.00512,"60":0.01535,"62":0,"63":0.03581,"64":0.08696,"65":0.01535,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00512,"78":0,"79":0,"80":0.00512,"81":0,"82":0,"83":0,"84":0.00512,"85":0,"86":0,"87":0,"88":0,"89":0.01535,"90":0.36317,"91":0.01023,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00512},B:{"12":0.03581,"13":0.01535,"14":0,"15":0.02558,"16":0.00512,"17":0.06138,"18":0.07161,"79":0,"80":0,"81":0,"83":0,"84":0.02046,"85":0,"86":0,"87":0,"88":0,"89":0.01023,"90":0.01023,"91":0,"92":0.00512,"93":0,"94":0,"95":0,"96":0.02046,"97":0,"98":0.00512,"99":0.00512,"100":0.00512,"101":0.00512,"102":0.01023,"103":0.0665,"104":0.38363,"105":1.77491},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00512,"12":0.00512,"13":0.00512,"14":0.02046,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01023,"10.1":0.02558,"11.1":0.00512,"12.1":0.01535,"13.1":0.08696,"14.1":0.09207,"15.1":0.0665,"15.2-15.3":0.03069,"15.4":0.03581,"15.5":0.07161,"15.6":0.1023,"16.0":0.1688,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0008,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00321,"10.0-10.2":0.00402,"10.3":0.03215,"11.0-11.2":0.00723,"11.3-11.4":0.00884,"12.0-12.1":0.05545,"12.2-12.5":0.9443,"13.0-13.1":0.08438,"13.2":0.04259,"13.3":0.12537,"13.4-13.7":0.19931,"14.0-14.4":1.04637,"14.5-14.8":1.23764,"15.0-15.1":0.35843,"15.2-15.3":0.43478,"15.4":0.44041,"15.5":0.88162,"15.6":1.52133,"16.0":0.49425,"16.1":0.0008},P:{"4":0.23352,"5.0-5.4":0,"6.2-6.4":0.01015,"7.2-7.4":0.11168,"8.2":0,"9.2":0.02031,"10.1":0.1523,"11.1-11.2":0.08123,"12.0":0.02031,"13.0":0.05077,"14.0":0.09138,"15.0":0.02031,"16.0":0.12184,"17.0":0.27413,"18.0":0.36551},I:{"0":0,"3":0,"4":0.00084,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00056,"4.2-4.3":0.00028,"4.4":0,"4.4.3-4.4.4":0.04856},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06138,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.96723},H:{"0":1.48456},L:{"0":60.28293},S:{"2.5":0},R:{_:"0"},M:{"0":0.09282},Q:{"13.1":0}}; 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 37e574460882f7..9fb998b7437d75 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00298,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00298,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00298,"65":0,"66":0,"67":0,"68":0.05061,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00595,"79":0,"80":0,"81":0.1042,"82":0,"83":0,"84":0,"85":0,"86":0.00298,"87":0,"88":0,"89":0,"90":0,"91":0.02382,"92":0,"93":0,"94":0.00298,"95":0,"96":0,"97":0.00298,"98":0,"99":0.02382,"100":0.00298,"101":0.02084,"102":0.02679,"103":0.259,"104":0.02084,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00298,"44":0.00298,"45":0.00298,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00298,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00595,"71":0,"72":0.00595,"73":0.00298,"74":0.00893,"75":0,"76":0,"77":0,"78":0,"79":0.08633,"80":0.00298,"81":0.01786,"83":0,"84":0.00298,"85":0.00298,"86":0.01191,"87":0,"88":0.01191,"89":0.02084,"90":0.00298,"91":0.00298,"92":0,"93":0.00893,"94":0,"95":0.00298,"96":0.22923,"97":0.01786,"98":0.01489,"99":0.02977,"100":0.09526,"101":0.01786,"102":0.01786,"103":1.72071,"104":3.89689,"105":0.01786,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00595,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00298,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00298,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00298,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00298,"74":0,"75":0.00298,"76":0.00298,"77":0,"78":0,"79":0.00298,"80":0,"81":0,"82":0,"83":0.00298,"84":0,"85":0.00298,"86":0,"87":0,"88":0.01489,"89":0.02084,"90":0.00298,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00298,"91":0,"92":0.01786,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.02679,"100":0,"101":0,"102":0,"103":0.03572,"104":0.05954,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00298,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.09526,"13.1":0.0774,"14.1":0.19351,"15.1":0.00595,"15.2-15.3":0,"15.4":0.01489,"15.5":0.25305,"15.6":0.10122,"16.0":0},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.01464,"9.3":0.00627,"10.0-10.2":0,"10.3":0.02092,"11.0-11.2":0,"11.3-11.4":0.01464,"12.0-12.1":0.05647,"12.2-12.5":0.9977,"13.0-13.1":0.00627,"13.2":0.00627,"13.3":0.05647,"13.4-13.7":0.04392,"14.0-14.4":0.31583,"14.5-14.8":0.17988,"15.0-15.1":2.31752,"15.2-15.3":2.39491,"15.4":3.06213,"15.5":7.762,"15.6":3.42189,"16.0":0.23635},P:{"4":2.62443,"5.0-5.4":0.08014,"6.2-6.4":0.04007,"7.2-7.4":1.14193,"8.2":0.02003,"9.2":0.10017,"10.1":0.03005,"11.1-11.2":0.17029,"12.0":0.04007,"13.0":0.19032,"14.0":0.64108,"15.0":0.15025,"16.0":0.88149,"17.0":1.35228,"18.0":1.98335},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.00003,"4.1":0.00003,"4.2-4.3":0.00016,"4.4":0,"4.4.3-4.4.4":0.01573},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01489,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":55.45833},S:{"2.5":0},R:{_:"0"},M:{"0":0.18962},Q:{"10.4":0},O:{"0":0.64612},H:{"0":0.83776}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00303,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.03031,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00909,"69":0,"70":0.01819,"71":0.00303,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00303,"78":0.02122,"79":0.00606,"80":0,"81":0.09093,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00303,"90":0,"91":0.00303,"92":0,"93":0,"94":0,"95":0,"96":0.00303,"97":0,"98":0,"99":0,"100":0,"101":0.00303,"102":0.01212,"103":0.0394,"104":0.83049,"105":0.32129,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00303,"45":0,"46":0,"47":0,"48":0,"49":0.00606,"50":0,"51":0,"52":0.00303,"53":0,"54":0,"55":0,"56":0.00303,"57":0,"58":0,"59":0,"60":0,"61":0.00909,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.03031,"74":0.03031,"75":0.00303,"76":0,"77":0,"78":0.01212,"79":0.09699,"80":0.00606,"81":0.01516,"83":0.00606,"84":0.00303,"85":0.00303,"86":0.00606,"87":0.00606,"88":0.1364,"89":0.04547,"90":0.00303,"91":0.00909,"92":0.00303,"93":0.00303,"94":0.00303,"95":0.00606,"96":0,"97":0.01212,"98":0.02425,"99":0.00606,"100":0.08487,"101":0.11215,"102":0.02122,"103":0.13943,"104":1.13056,"105":3.92818,"106":0.11821,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0.00303,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00606,"38":0,"39":0,"40":0.00909,"41":0,"42":0.00909,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00303,"50":0,"51":0.00606,"52":0,"53":0.00303,"54":0,"55":0,"56":0,"57":0.00303,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0.00303,"67":0,"68":0,"69":0,"70":0.00303,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00303,"83":0,"84":0.00606,"85":0.01819,"86":0,"87":0,"88":0,"89":0.00303,"90":0.02728,"91":0.00909,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00303,"90":0.01516,"91":0,"92":0.01212,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00606,"99":0.01819,"100":0,"101":0,"102":0.00303,"103":0.02728,"104":0.00606,"105":0.33038},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00303,"15.1":0.00303,"15.2-15.3":0.00303,"15.4":0.01212,"15.5":0.08184,"15.6":0.02122,"16.0":0,"16.1":0},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.01681,"11.3-11.4":0.02354,"12.0-12.1":0.09583,"12.2-12.5":1.20882,"13.0-13.1":0,"13.2":0,"13.3":0.05548,"13.4-13.7":0.08911,"14.0-14.4":0.18998,"14.5-14.8":0.40855,"15.0-15.1":1.07264,"15.2-15.3":2.04105,"15.4":2.27979,"15.5":3.43313,"15.6":4.96139,"16.0":0.71958,"16.1":0},P:{"4":0.74143,"5.0-5.4":0.13025,"6.2-6.4":0.02004,"7.2-7.4":1.59307,"8.2":0.02004,"9.2":0.11021,"10.1":0.08015,"11.1-11.2":0.40077,"12.0":0.06012,"13.0":0.50096,"14.0":0.74143,"15.0":0.17033,"16.0":0.76147,"17.0":0.90174,"18.0":3.49673},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00159,"4.2-4.3":0.00127,"4.4":0,"4.4.3-4.4.4":0.03714},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01212,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.33451},H:{"0":0.27051},L:{"0":59.76812},S:{"2.5":0},R:{_:"0"},M:{"0":0.06969},Q:{"13.1":0}}; 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 43ef69f582e5c5..94a9da60491e6d 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00371,"48":0,"49":0,"50":0,"51":0,"52":0.01856,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00371,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01114,"79":0.00371,"80":0,"81":0,"82":0,"83":0.00371,"84":0.00742,"85":0,"86":0,"87":0.01114,"88":0.00371,"89":0,"90":0,"91":0.01114,"92":0,"93":0,"94":0.00371,"95":0,"96":0,"97":0.00371,"98":0.00371,"99":0.00742,"100":0.00742,"101":0.00371,"102":0.02598,"103":0.44915,"104":0.08166,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00371,"40":0.00371,"41":0,"42":0.00371,"43":0.00371,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.05568,"50":0.00371,"51":0,"52":0,"53":0.00371,"54":0,"55":0,"56":0.00371,"57":0,"58":0.00371,"59":0,"60":0,"61":0,"62":0,"63":0.00371,"64":0,"65":0.00742,"66":0,"67":0.00742,"68":0.00371,"69":0.00371,"70":0.00742,"71":0.00371,"72":0.00371,"73":0.00371,"74":0.01114,"75":0.00371,"76":0.00371,"77":0.00742,"78":0.01114,"79":0.01485,"80":0.00742,"81":0.03341,"83":0.01485,"84":0.01485,"85":0.01114,"86":0.02227,"87":0.04826,"88":0.01114,"89":0.03712,"90":0.01485,"91":0.01856,"92":0.02227,"93":0.00742,"94":0.00742,"95":0.01485,"96":0.04083,"97":0.02598,"98":0.0297,"99":0.02598,"100":0.03341,"101":0.05197,"102":0.13363,"103":2.38682,"104":6.69645,"105":0.02598,"106":0.00371,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00371,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01485,"64":0.01485,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00742,"80":0.01114,"81":0,"82":0,"83":0,"84":0.00371,"85":0.01485,"86":0.00371,"87":0.00371,"88":0.01114,"89":0.8983,"90":0.05568,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00371,"14":0,"15":0,"16":0,"17":0,"18":0.01114,"79":0,"80":0,"81":0,"83":0,"84":0.00371,"85":0,"86":0,"87":0,"88":0,"89":0.00742,"90":0,"91":0,"92":0.00742,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00371,"101":0.01114,"102":0.00371,"103":0.24499,"104":0.63475,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00742,"14":0.00742,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00371,"12.1":0,"13.1":0.00742,"14.1":0.03712,"15.1":0.00371,"15.2-15.3":0.00371,"15.4":0.01114,"15.5":0.04454,"15.6":0.05197,"16.0":0},G:{"8":0.0014,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0084,"6.0-6.1":0.0049,"7.0-7.1":0.03502,"8.1-8.4":0.0014,"9.0-9.2":0.0042,"9.3":0.08334,"10.0-10.2":0.0028,"10.3":0.08964,"11.0-11.2":0.03642,"11.3-11.4":0.0105,"12.0-12.1":0.01191,"12.2-12.5":0.46222,"13.0-13.1":0.0084,"13.2":0.0098,"13.3":0.05112,"13.4-13.7":0.12186,"14.0-14.4":0.25912,"14.5-14.8":0.56937,"15.0-15.1":0.17578,"15.2-15.3":0.27663,"15.4":0.32075,"15.5":1.91891,"15.6":2.46027,"16.0":0.07704},P:{"4":0.35437,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.14175,"8.2":0,"9.2":0.02025,"10.1":0.01012,"11.1-11.2":0.10125,"12.0":0.03037,"13.0":0.07087,"14.0":0.081,"15.0":0.05062,"16.0":0.11137,"17.0":0.71886,"18.0":0.69861},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01171,"4.2-4.3":0.02343,"4.4":0,"4.4.3-4.4.4":0.15425},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00371,"9":0.00371,"10":0,"11":0.02227,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":75.26197},S:{"2.5":0},R:{_:"0"},M:{"0":0.1069},Q:{"10.4":0},O:{"0":0.13834},H:{"0":0.54173}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.03221,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00403,"73":0,"74":0.00403,"75":0,"76":0,"77":0,"78":0.00805,"79":0.00403,"80":0.00403,"81":0.00805,"82":0.00805,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00403,"89":0,"90":0,"91":0.00805,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00403,"98":0,"99":0.00805,"100":0.00403,"101":0.00403,"102":0.00805,"103":0.03221,"104":0.47507,"105":0.14091,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00403,"40":0.00403,"41":0,"42":0,"43":0.00403,"44":0,"45":0,"46":0,"47":0.00403,"48":0.00403,"49":0.07649,"50":0.00403,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00805,"57":0,"58":0.00403,"59":0,"60":0,"61":0,"62":0,"63":0.00805,"64":0.00403,"65":0.00805,"66":0.00403,"67":0.00805,"68":0.00403,"69":0.00403,"70":0.00805,"71":0.00403,"72":0.00403,"73":0.00403,"74":0.00805,"75":0.00403,"76":0.00403,"77":0.01208,"78":0.00805,"79":0.0161,"80":0.00805,"81":0.03221,"83":0.04026,"84":0.05636,"85":0.03221,"86":0.04831,"87":0.06039,"88":0.01208,"89":0.02013,"90":0.0161,"91":0.0161,"92":0.02416,"93":0.00805,"94":0.01208,"95":0.0161,"96":0.03623,"97":0.02416,"98":0.03221,"99":0.02013,"100":0.03221,"101":0.04831,"102":0.09662,"103":0.22546,"104":2.35521,"105":8.30966,"106":0.13688,"107":0.00403,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00403,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00403,"64":0.02013,"65":0,"66":0,"67":0,"68":0.00403,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00805,"80":0.01208,"81":0,"82":0,"83":0.00403,"84":0.00403,"85":0.0161,"86":0,"87":0,"88":0,"89":0.08455,"90":0.87364,"91":0.03623,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00403,"16":0.00403,"17":0,"18":0.00805,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00805,"87":0.00403,"88":0,"89":0,"90":0,"91":0,"92":0.00805,"93":0,"94":0,"95":0,"96":0.00403,"97":0.00403,"98":0,"99":0,"100":0.00403,"101":0.00403,"102":0.00805,"103":0.02013,"104":0.15299,"105":0.86156},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00403,"14":0.02416,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00403,"13.1":0.00805,"14.1":0.02416,"15.1":0.00403,"15.2-15.3":0.00403,"15.4":0.01208,"15.5":0.03221,"15.6":0.06039,"16.0":0.00805,"16.1":0},G:{"8":0.00129,"3.2":0.00129,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01222,"6.0-6.1":0.00322,"7.0-7.1":0.04375,"8.1-8.4":0.00322,"9.0-9.2":0.00257,"9.3":0.08878,"10.0-10.2":0.0045,"10.3":0.08492,"11.0-11.2":0.00965,"11.3-11.4":0.01094,"12.0-12.1":0.01158,"12.2-12.5":0.47608,"13.0-13.1":0.00579,"13.2":0.00708,"13.3":0.02895,"13.4-13.7":0.07913,"14.0-14.4":0.24833,"14.5-14.8":0.48251,"15.0-15.1":0.14089,"15.2-15.3":0.20652,"15.4":0.23675,"15.5":0.63306,"15.6":2.72973,"16.0":0.75529,"16.1":0.01351},P:{"4":0.28523,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.34635,"8.2":0,"9.2":0.02037,"10.1":0.01019,"11.1-11.2":0.09168,"12.0":0.02037,"13.0":0.07131,"14.0":0.07131,"15.0":0.04075,"16.0":0.09168,"17.0":0.31579,"18.0":1.19185},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01671,"4.2-4.3":0.013,"4.4":0,"4.4.3-4.4.4":0.14666},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00476,"9":0,"10":0,"11":0.04758,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.10753},H:{"0":0.47509},L:{"0":73.48602},S:{"2.5":0},R:{_:"0"},M:{"0":0.10156},Q:{"13.1":0}}; 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 bf9e94f0ba70e2..6ecd3952a7da19 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.02097,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01048,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00524,"92":0,"93":0,"94":0.25162,"95":0,"96":0,"97":0,"98":0.00524,"99":0,"100":0,"101":0.01048,"102":0.08911,"103":0.93308,"104":0.03145,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00524,"41":0,"42":0,"43":0.00524,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00524,"50":0.01048,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00524,"70":0.01573,"71":0.00524,"72":0.00524,"73":0,"74":0.00524,"75":0.02621,"76":0.03145,"77":0.04194,"78":0,"79":0,"80":0,"81":0.00524,"83":0.00524,"84":0,"85":0,"86":0.01048,"87":0.02621,"88":0.01573,"89":0,"90":0.00524,"91":0.00524,"92":0.01573,"93":0.04194,"94":0.01048,"95":0,"96":0.01573,"97":0.00524,"98":0.01048,"99":0.04718,"100":0.59759,"101":0.36694,"102":0.70767,"103":5.18958,"104":9.68722,"105":0.02097,"106":0.00524,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00524,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.03669,"90":0.01048,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.02097,"13":0.02621,"14":0,"15":0,"16":0.00524,"17":0.02097,"18":0.02621,"79":0.00524,"80":0.00524,"81":0,"83":0,"84":0.00524,"85":0.01048,"86":0,"87":0,"88":0,"89":0,"90":0.04194,"91":0,"92":0.02097,"93":0,"94":0,"95":0,"96":0.00524,"97":0.00524,"98":0.00524,"99":0.03669,"100":0.03669,"101":0.02621,"102":0.03669,"103":0.77057,"104":3.18189,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01048,"14":0.05766,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00524,"10.1":0,"11.1":0,"12.1":0.00524,"13.1":0.01048,"14.1":0.03145,"15.1":0,"15.2-15.3":0,"15.4":0.01048,"15.5":0.12057,"15.6":0.12581,"16.0":0},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.0175,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.21253,"10.0-10.2":0.00375,"10.3":0.05001,"11.0-11.2":0.01125,"11.3-11.4":0.06876,"12.0-12.1":0.06126,"12.2-12.5":0.92511,"13.0-13.1":0.47131,"13.2":0.015,"13.3":0.14002,"13.4-13.7":0.11126,"14.0-14.4":0.83135,"14.5-14.8":1.75271,"15.0-15.1":0.78134,"15.2-15.3":0.66633,"15.4":1.51893,"15.5":2.74658,"15.6":2.09525,"16.0":0.02125},P:{"4":0.01012,"5.0-5.4":0.03036,"6.2-6.4":0,"7.2-7.4":0.75897,"8.2":0,"9.2":0,"10.1":0.02024,"11.1-11.2":0.02024,"12.0":0.01012,"13.0":0.06072,"14.0":0.09108,"15.0":0.17203,"16.0":0.11132,"17.0":1.04232,"18.0":0.38455},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00999,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.04195},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04718,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":58.74567},S:{"2.5":0},R:{_:"0"},M:{"0":0.09992},Q:{"10.4":0},O:{"0":0.8041},H:{"0":0.01802}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00564,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00564,"44":0,"45":0,"46":0,"47":0,"48":0.01127,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01691,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00564,"89":0,"90":0,"91":0.02255,"92":0.00564,"93":0,"94":0.00564,"95":0,"96":0.00564,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.01127,"104":1.03157,"105":0.1973,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.05637,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00564,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00564,"70":0.00564,"71":0,"72":0,"73":0,"74":0.02819,"75":0.14656,"76":0.01691,"77":0,"78":0.01127,"79":0.00564,"80":0.00564,"81":0.03382,"83":0,"84":0,"85":0.00564,"86":0.01127,"87":0.01691,"88":0.00564,"89":0.00564,"90":0,"91":0.00564,"92":0.00564,"93":0.1071,"94":0,"95":0,"96":0,"97":0.00564,"98":0.01691,"99":0.0451,"100":0.69335,"101":0.42841,"102":0.28185,"103":0.44532,"104":2.62684,"105":13.79374,"106":0.47915,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00564,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00564,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.03946,"89":0,"90":0.11838,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.01127,"13":0.01127,"14":0.00564,"15":0,"16":0.00564,"17":0.02255,"18":0.01127,"79":0,"80":0,"81":0,"83":0.00564,"84":0.02819,"85":0.00564,"86":0,"87":0.00564,"88":0,"89":0.01127,"90":0.05637,"91":0,"92":0.06764,"93":0,"94":0.00564,"95":0,"96":0,"97":0.01691,"98":0,"99":0.00564,"100":0,"101":0.02255,"102":0.02255,"103":0.1071,"104":0.83428,"105":4.57724},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00564,"12":0.00564,"13":0.00564,"14":0.08456,"15":0.00564,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00564,"10.1":0.00564,"11.1":0.00564,"12.1":0.01691,"13.1":0.01127,"14.1":0.05073,"15.1":0.01691,"15.2-15.3":0,"15.4":0.01691,"15.5":0.4115,"15.6":0.20857,"16.0":0,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02858,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.02382,"9.3":0.00357,"10.0-10.2":0,"10.3":0.12623,"11.0-11.2":0.00357,"11.3-11.4":0.00834,"12.0-12.1":0.03692,"12.2-12.5":0.95627,"13.0-13.1":0.34893,"13.2":0.01191,"13.3":0.05716,"13.4-13.7":0.32392,"14.0-14.4":0.80741,"14.5-14.8":1.28138,"15.0-15.1":0.36798,"15.2-15.3":0.36083,"15.4":0.94079,"15.5":1.71009,"15.6":3.64406,"16.0":0.52279,"16.1":0.01191},P:{"4":0.02021,"5.0-5.4":0.0101,"6.2-6.4":0,"7.2-7.4":0.34349,"8.2":0.0101,"9.2":0,"10.1":0.0101,"11.1-11.2":0.33339,"12.0":0.0101,"13.0":0.03031,"14.0":0.10103,"15.0":0.07072,"16.0":0.15154,"17.0":0.23236,"18.0":0.94966},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.05691},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06201,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":1.09948},H:{"0":0.07848},L:{"0":55.30017},S:{"2.5":0},R:{_:"0"},M:{"0":0.02182},Q:{"13.1":0.00436}}; 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 5c46041fcfc36a..c761b82d9e2035 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00135,"103":0.03385,"104":0.00812,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00135,"23":0,"24":0,"25":0,"26":0.00135,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00271,"35":0,"36":0,"37":0,"38":0.00271,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00406,"48":0,"49":0.00542,"50":0,"51":0,"52":0,"53":0.00135,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00135,"69":0,"70":0,"71":0.00271,"72":0,"73":0.00135,"74":0,"75":0,"76":0,"77":0,"78":0.00135,"79":0.00812,"80":0.00135,"81":0.00135,"83":0.00271,"84":0.00406,"85":0.00542,"86":0.00542,"87":0.00677,"88":0.00135,"89":0.00271,"90":0.00135,"91":0.00135,"92":0.00542,"93":0.00135,"94":0.00135,"95":0.00135,"96":0.00271,"97":0.00271,"98":0.00271,"99":0.00271,"100":0.00406,"101":0.00812,"102":0.00812,"103":0.25861,"104":0.77313,"105":0.00271,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00135,"29":0,"30":0,"31":0,"32":0.00135,"33":0,"34":0,"35":0,"36":0.00135,"37":0,"38":0,"39":0,"40":0.00406,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00406,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01896,"64":0.02573,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00135,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00135,"89":0.05822,"90":0.00677,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00135,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00135,"102":0,"103":0.0176,"104":0.05416,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00271,"15":0.00135,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00271,"14.1":0.00406,"15.1":0.00135,"15.2-15.3":0.00135,"15.4":0.00271,"15.5":0.00948,"15.6":0.01354,"16.0":0},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.01167,"8.1-8.4":0,"9.0-9.2":0.00212,"9.3":0.02228,"10.0-10.2":0.00424,"10.3":0.052,"11.0-11.2":0.01592,"11.3-11.4":0.01592,"12.0-12.1":0.01592,"12.2-12.5":0.84469,"13.0-13.1":0.00743,"13.2":0.00318,"13.3":0.03184,"13.4-13.7":0.10399,"14.0-14.4":0.21648,"14.5-14.8":0.54226,"15.0-15.1":0.17403,"15.2-15.3":0.30668,"15.4":0.42553,"15.5":2.39294,"15.6":5.28993,"16.0":0.1284},P:{"4":0.27301,"5.0-5.4":0.01011,"6.2-6.4":0,"7.2-7.4":0.20223,"8.2":0,"9.2":0.02022,"10.1":0.02022,"11.1-11.2":0.08089,"12.0":0.04045,"13.0":0.15167,"14.0":0.06067,"15.0":0.05056,"16.0":0.18201,"17.0":1.48638,"18.0":1.5976},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00091,"4.2-4.3":0.00236,"4.4":0,"4.4.3-4.4.4":0.01215},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0176,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":81.25916},S:{"2.5":0},R:{_:"0"},M:{"0":0.07781},Q:{"10.4":0},O:{"0":0.25073},H:{"0":0.9004}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00127,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00127,"79":0.00127,"80":0,"81":0.00127,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00127,"104":0.02663,"105":0.00888,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00127,"23":0,"24":0,"25":0,"26":0.00127,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00254,"35":0,"36":0,"37":0,"38":0.00254,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00254,"48":0,"49":0.00507,"50":0,"51":0,"52":0,"53":0.00127,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00254,"72":0,"73":0.00127,"74":0,"75":0,"76":0,"77":0,"78":0.00127,"79":0.00761,"80":0.00127,"81":0.00254,"83":0.00507,"84":0.00888,"85":0.01014,"86":0.01014,"87":0.00888,"88":0.00127,"89":0.00127,"90":0.00127,"91":0.00127,"92":0.0038,"93":0,"94":0.00127,"95":0.00127,"96":0.00254,"97":0.00254,"98":0.00127,"99":0.00254,"100":0.00254,"101":0.00254,"102":0.00507,"103":0.02029,"104":0.20415,"105":0.71769,"106":0.01141,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00127,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00127,"37":0,"38":0,"39":0,"40":0.0038,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0038,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0038,"64":0.03297,"65":0.0038,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00127,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.0038,"90":0.0596,"91":0.00254,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00127,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00127,"104":0.00888,"105":0.05452},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00127,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00127,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00254,"14.1":0.0038,"15.1":0.00127,"15.2-15.3":0,"15.4":0.00254,"15.5":0.0038,"15.6":0.01648,"16.0":0.00254,"16.1":0},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.00693,"8.1-8.4":0,"9.0-9.2":0.00198,"9.3":0.02475,"10.0-10.2":0.00297,"10.3":0.04158,"11.0-11.2":0.0099,"11.3-11.4":0.0099,"12.0-12.1":0.01188,"12.2-12.5":0.60779,"13.0-13.1":0.00495,"13.2":0.00297,"13.3":0.02277,"13.4-13.7":0.07424,"14.0-14.4":0.15541,"14.5-14.8":0.36824,"15.0-15.1":0.13364,"15.2-15.3":0.22372,"15.4":0.28113,"15.5":0.80973,"15.6":5.40975,"16.0":1.3809,"16.1":0.02178},P:{"4":0.23295,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.19244,"8.2":0,"9.2":0.02026,"10.1":0.02026,"11.1-11.2":0.0709,"12.0":0.03038,"13.0":0.13167,"14.0":0.05064,"15.0":0.04051,"16.0":0.15192,"17.0":0.44564,"18.0":2.5827},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00076,"4.2-4.3":0.00208,"4.4":0,"4.4.3-4.4.4":0.01097},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01522,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.2445},H:{"0":0.88456},L:{"0":82.66062},S:{"2.5":0},R:{_:"0"},M:{"0":0.06986},Q:{"13.1":0}}; 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 51b1d69d25916b..8735b24b5766e6 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00428,"48":0,"49":0,"50":0,"51":0,"52":0.01285,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00428,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01285,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00428,"88":0,"89":0,"90":0,"91":0.00857,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00428,"102":0.02999,"103":0.52265,"104":0.09425,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00428,"48":0,"49":0.00857,"50":0,"51":0,"52":0,"53":0.00428,"54":0,"55":0.00428,"56":0.00428,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00857,"64":0,"65":0.00428,"66":0,"67":0.00428,"68":0.01285,"69":0,"70":0,"71":0,"72":0,"73":0.00428,"74":0.00857,"75":0.00428,"76":0.02142,"77":0,"78":0,"79":0.03427,"80":0.00857,"81":0.0257,"83":0.01285,"84":0.00857,"85":0.00428,"86":0.00857,"87":0.02999,"88":0.00428,"89":0.01285,"90":0.00857,"91":0.02142,"92":0.01285,"93":0.04712,"94":0.01285,"95":0.00857,"96":0.01714,"97":0.03856,"98":0.01714,"99":0.03427,"100":0.05569,"101":0.03856,"102":0.09425,"103":3.13589,"104":7.80116,"105":0.0257,"106":0.00428,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01285,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00428,"62":0,"63":0.00428,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00428,"89":0.38984,"90":0.04712,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00428,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00857,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00428,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00857,"93":0,"94":0,"95":0.00428,"96":0,"97":0,"98":0,"99":0,"100":0.00428,"101":0.03427,"102":0.00857,"103":0.46267,"104":1.36231,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00428,"14":0.03856,"15":0.01285,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00857,"11.1":0.02142,"12.1":0.02142,"13.1":0.08996,"14.1":0.09853,"15.1":0.00857,"15.2-15.3":0.01285,"15.4":0.03427,"15.5":0.22705,"15.6":0.49266,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01596,"6.0-6.1":0.00177,"7.0-7.1":0.04434,"8.1-8.4":0.00177,"9.0-9.2":0,"9.3":0.12771,"10.0-10.2":0,"10.3":0.20044,"11.0-11.2":0.00177,"11.3-11.4":0.0071,"12.0-12.1":0.01596,"12.2-12.5":0.5073,"13.0-13.1":0.01419,"13.2":0.00355,"13.3":0.01774,"13.4-13.7":0.07982,"14.0-14.4":0.19334,"14.5-14.8":0.59599,"15.0-15.1":0.19334,"15.2-15.3":0.35298,"15.4":0.88688,"15.5":3.70363,"15.6":10.61954,"16.0":0.149},P:{"4":0.49497,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.45193,"8.2":0,"9.2":0.01076,"10.1":0,"11.1-11.2":0.06456,"12.0":0.01076,"13.0":0.13988,"14.0":0.09684,"15.0":0.03228,"16.0":0.11836,"17.0":1.83998,"18.0":2.69003},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.06827,"4.2-4.3":0.13655,"4.4":0,"4.4.3-4.4.4":1.21186},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02142,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":55.72038},S:{"2.5":0},R:{_:"0"},M:{"0":0.14862},Q:{"10.4":0},O:{"0":0.02286},H:{"0":0.29763}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00432,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00865,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00432,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00865,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00432,"88":0.00432,"89":0,"90":0,"91":0.00865,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00432,"102":0.00432,"103":0.07351,"104":0.53618,"105":0.18161,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00432,"48":0,"49":0.00865,"50":0,"51":0,"52":0,"53":0.00865,"54":0,"55":0,"56":0.00432,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00432,"64":0,"65":0.04324,"66":0,"67":0.00432,"68":0.00865,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.03459,"75":0.01297,"76":0.0173,"77":0,"78":0,"79":0.03459,"80":0.00432,"81":0.02162,"83":0.01297,"84":0.00432,"85":0.00432,"86":0.00432,"87":0.02162,"88":0.00432,"89":0.00865,"90":0.00865,"91":0.03892,"92":0.03892,"93":0.03459,"94":0.01297,"95":0.01297,"96":0.02162,"97":0.02162,"98":0.02162,"99":0.03027,"100":0.03459,"101":0.02594,"102":0.04324,"103":0.38916,"104":2.53819,"105":7.9994,"106":0.1254,"107":0.00432,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00865,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00432,"64":0.00432,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00432,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00865,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.03892,"90":0.36754,"91":0.01297,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00432,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00865,"79":0,"80":0,"81":0,"83":0,"84":0.00432,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00432,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00865,"102":0.00432,"103":0.0173,"104":0.37186,"105":1.6215},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0173,"14":0.0173,"15":0.0173,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00865,"11.1":0.02594,"12.1":0.02162,"13.1":0.08216,"14.1":0.11242,"15.1":0.00432,"15.2-15.3":0.01297,"15.4":0.03027,"15.5":0.10378,"15.6":0.57077,"16.0":0.04756,"16.1":0.00432},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02364,"6.0-6.1":0,"7.0-7.1":0.0608,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.18746,"10.0-10.2":0,"10.3":0.15537,"11.0-11.2":0.00338,"11.3-11.4":0.00676,"12.0-12.1":0.0152,"12.2-12.5":0.51678,"13.0-13.1":0.00676,"13.2":0,"13.3":0.02195,"13.4-13.7":0.0912,"14.0-14.4":0.14355,"14.5-14.8":0.6789,"15.0-15.1":0.16213,"15.2-15.3":0.20941,"15.4":0.39181,"15.5":1.02849,"15.6":10.21228,"16.0":2.57714,"16.1":0.03209},P:{"4":0.53446,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.48101,"8.2":0,"9.2":0.02138,"10.1":0,"11.1-11.2":0.05345,"12.0":0.01069,"13.0":0.14965,"14.0":0.10689,"15.0":0.03207,"16.0":0.11758,"17.0":0.42757,"18.0":4.56428},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.04591,"4.2-4.3":0.09181,"4.4":0,"4.4.3-4.4.4":0.91815},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02594,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00568},O:{"0":0.02838},H:{"0":0.3063},L:{"0":56.08711},S:{"2.5":0},R:{_:"0"},M:{"0":0.20434},Q:{"13.1":0}}; 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 94d9debdb69ea2..8ec2f977ab104f 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":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.01952,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.01952,"104":0.01952,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.03578,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.17892,"101":0.03578,"102":0.01952,"103":3.53926,"104":1.90626,"105":0,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.01952,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.16265,"102":0.12687,"103":0.86205,"104":1.16783,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.01952,"11":0,"12":0,"13":0,"14":0,"15":0.07157,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.10735,"13.1":0,"14.1":0.64735,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0},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.07046,"14.5-14.8":0,"15.0-15.1":0.49291,"15.2-15.3":0.56304,"15.4":0.07046,"15.5":1.33747,"15.6":0.7741,"16.0":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.28148,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0.50265,"18.0":0.22117},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 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":85.92063},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0.16868},H:{"0":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0.07871,"105":0,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.01458,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.02624,"96":0.20988,"97":0,"98":0,"99":0,"100":0.02624,"101":0.05247,"102":0,"103":0.22446,"104":0.89199,"105":2.75468,"106":0,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.04081,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.11952,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.04081,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01458,"103":0.11952,"104":0.27693,"105":1.24762},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.01458,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.02624,"13.1":0,"14.1":0.01458,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0,"16.1":0},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.09698,"14.0-14.4":0,"14.5-14.8":0.48435,"15.0-15.1":0,"15.2-15.3":0.67831,"15.4":0.19369,"15.5":0.29067,"15.6":0.43586,"16.0":0.48435,"16.1":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.59175,"14.0":0,"15.0":0,"16.0":0,"17.0":0.18053,"18.0":5.64672},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 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":80.90256},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"13.1":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 55285a48230a6a..7f7860e03f1778 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.0156,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0104,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0052,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0052,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.0052,"89":0,"90":0,"91":0.0052,"92":0,"93":0,"94":0,"95":0,"96":0.0052,"97":0,"98":0.0052,"99":0.0052,"100":0.0052,"101":0.0052,"102":0.0208,"103":0.69667,"104":0.14557,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.0052,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.0052,"31":0,"32":0,"33":0,"34":0.0156,"35":0,"36":0,"37":0,"38":0.05719,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.0052,"46":0,"47":0,"48":0,"49":0.07799,"50":0,"51":0,"52":0,"53":0.05719,"54":0,"55":0.0052,"56":0.0156,"57":0,"58":0.0052,"59":0,"60":0,"61":0.026,"62":0,"63":0.0052,"64":0.0052,"65":0.0052,"66":0.0052,"67":0.0156,"68":0.0052,"69":0.0052,"70":0.0052,"71":0.0104,"72":0.0052,"73":0.0052,"74":0.0104,"75":0.0052,"76":0.0052,"77":0.0052,"78":0.0052,"79":0.30154,"80":0.0104,"81":0.03119,"83":0.0156,"84":0.0104,"85":0.0104,"86":0.026,"87":0.04679,"88":0.0052,"89":0.03119,"90":0.0104,"91":0.0156,"92":0.0208,"93":0.0104,"94":0.0156,"95":0.0156,"96":0.03639,"97":0.05719,"98":0.03119,"99":0.03119,"100":0.05199,"101":0.05719,"102":0.12478,"103":4.12801,"104":12.69076,"105":0.03119,"106":0.0104,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0156,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.0104,"37":0.0104,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.04159,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.05199,"90":0.0104,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.0052,"18":0.0104,"79":0,"80":0,"81":0,"83":0,"84":0.0052,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0052,"93":0,"94":0,"95":0,"96":0.0052,"97":0,"98":0,"99":0.0052,"100":0.0052,"101":0.0104,"102":0.0104,"103":0.45231,"104":1.46612,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.05199,"14":0.14557,"15":0.026,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.0052,"10.1":0.0104,"11.1":0.0156,"12.1":0.03119,"13.1":0.11438,"14.1":0.42112,"15.1":0.05199,"15.2-15.3":0.04679,"15.4":0.19756,"15.5":0.80585,"15.6":1.15418,"16.0":0},G:{"8":0.0035,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.04199,"6.0-6.1":0.021,"7.0-7.1":0.14697,"8.1-8.4":0.06649,"9.0-9.2":0.021,"9.3":0.38142,"10.0-10.2":0.02449,"10.3":0.36392,"11.0-11.2":0.05949,"11.3-11.4":0.06649,"12.0-12.1":0.13297,"12.2-12.5":1.17224,"13.0-13.1":0.10148,"13.2":0.04199,"13.3":0.18196,"13.4-13.7":0.38492,"14.0-14.4":2.08554,"14.5-14.8":3.30327,"15.0-15.1":1.27372,"15.2-15.3":1.49067,"15.4":2.65242,"15.5":7.46386,"15.6":13.47203,"16.0":0.03499},P:{"4":0.69692,"5.0-5.4":0.01089,"6.2-6.4":0,"7.2-7.4":0,"8.2":0.01089,"9.2":0.03267,"10.1":0.02178,"11.1-11.2":0.06534,"12.0":0.04356,"13.0":0.13067,"14.0":0.08712,"15.0":0.06534,"16.0":0.2069,"17.0":1.2305,"18.0":1.29584},I:{"0":0,"3":0,"4":0.00447,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0067,"4.2-4.3":0.01786,"4.4":0,"4.4.3-4.4.4":0.07816},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.12478,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":33.74506},S:{"2.5":0},R:{_:"0"},M:{"0":0.08162},Q:{"10.4":0.0096},O:{"0":0.08162},H:{"0":0.20908}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01536,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00512,"46":0.00512,"47":0.00512,"48":0.00512,"49":0.00512,"50":0.00512,"51":0.00512,"52":0.01024,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00512,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00512,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00512,"89":0,"90":0,"91":0.00512,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00512,"99":0.00512,"100":0.00512,"101":0.00512,"102":0.01024,"103":0.03584,"104":0.6656,"105":0.1536,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00512,"23":0,"24":0,"25":0,"26":0.00512,"27":0,"28":0,"29":0,"30":0.00512,"31":0,"32":0,"33":0.00512,"34":0.01536,"35":0,"36":0,"37":0,"38":0.06144,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00512,"46":0,"47":0,"48":0,"49":0.08192,"50":0.00512,"51":0.00512,"52":0.00512,"53":0.06144,"54":0.00512,"55":0.01024,"56":0.02048,"57":0,"58":0.00512,"59":0,"60":0,"61":0.02048,"62":0,"63":0.00512,"64":0.00512,"65":0.01024,"66":0.00512,"67":0.01536,"68":0.00512,"69":0.00512,"70":0.00512,"71":0.01024,"72":0.00512,"73":0.00512,"74":0.01536,"75":0.01024,"76":0.00512,"77":0.00512,"78":0.00512,"79":0.30208,"80":0.01024,"81":0.03072,"83":0.02048,"84":0.01536,"85":0.01024,"86":0.03072,"87":0.04608,"88":0.00512,"89":0.03072,"90":0.01024,"91":0.01536,"92":0.02048,"93":0.01024,"94":0.01024,"95":0.01536,"96":0.03072,"97":0.05632,"98":0.03584,"99":0.0256,"100":0.04096,"101":0.03584,"102":0.06144,"103":0.25088,"104":3.39968,"105":12.40576,"106":0.1536,"107":0.01024,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01536,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01024,"37":0.01024,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.04096,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.06144,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00512,"18":0.01024,"79":0,"80":0,"81":0,"83":0,"84":0.00512,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00512,"97":0,"98":0,"99":0.00512,"100":0.00512,"101":0.00512,"102":0.00512,"103":0.02048,"104":0.28672,"105":1.59744},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00512,"9":0,"10":0,"11":0,"12":0,"13":0.04608,"14":0.13312,"15":0.0256,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00512,"10.1":0.01024,"11.1":0.01536,"12.1":0.03072,"13.1":0.11264,"14.1":0.384,"15.1":0.04608,"15.2-15.3":0.04096,"15.4":0.16384,"15.5":0.40448,"15.6":1.62304,"16.0":0.0512,"16.1":0},G:{"8":0.00356,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03918,"6.0-6.1":0.02137,"7.0-7.1":0.16384,"8.1-8.4":0.06767,"9.0-9.2":0.02137,"9.3":0.38824,"10.0-10.2":0.02493,"10.3":0.3455,"11.0-11.2":0.06767,"11.3-11.4":0.06767,"12.0-12.1":0.13535,"12.2-12.5":1.16472,"13.0-13.1":0.09617,"13.2":0.03918,"13.3":0.16741,"13.4-13.7":0.37399,"14.0-14.4":1.98394,"14.5-14.8":3.03467,"15.0-15.1":1.13978,"15.2-15.3":1.24664,"15.4":2.06586,"15.5":3.51908,"15.6":16.35589,"16.0":2.46834,"16.1":0.01069},P:{"4":0.67025,"5.0-5.4":0.02162,"6.2-6.4":0,"7.2-7.4":0.01081,"8.2":0.01081,"9.2":0.03243,"10.1":0.01081,"11.1-11.2":0.06486,"12.0":0.04324,"13.0":0.14054,"14.0":0.07567,"15.0":0.06486,"16.0":0.17297,"17.0":0.39999,"18.0":2.24858},I:{"0":0,"3":0,"4":0.00577,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00866,"4.2-4.3":0.02309,"4.4":0,"4.4.3-4.4.4":0.10392},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.11264,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.0976},H:{"0":0.21252},L:{"0":34.28448},S:{"2.5":0},R:{_:"0"},M:{"0":0.08784},Q:{"13.1":0.01464}}; 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 9baca7eefd51e2..88096573672316 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:{"30":0.00212,"34":0.00424,"37":0.00212,"38":0.00212,"43":0.00424,"44":0.00424,"47":0.00424,"49":0.00424,"52":0.02119,"56":0.00212,"72":0.00848,"78":0.0106,"88":0.00424,"89":0.00848,"91":0.03602,"95":0.00424,"96":0.00212,"97":0.00424,"98":0.00424,"99":0.00848,"100":0.01271,"101":0.02119,"102":0.05933,"103":1.24173,"104":0.32209,"105":0.02331,_:"2 3 4 5 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 39 40 41 42 45 46 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 90 92 93 94 106 3.5 3.6"},D:{"11":0.0106,"32":0.00212,"37":0.00212,"49":0.00636,"50":0.00424,"55":0.00424,"57":0.0106,"58":0.00212,"60":0.00212,"63":0.00636,"64":0.00424,"65":0.01271,"67":0.00212,"68":0.00636,"69":0.00848,"70":0.00848,"71":0.00424,"72":0.00636,"73":0.00212,"74":0.01483,"75":0.00636,"76":0.00212,"77":0.00636,"78":0.00424,"79":0.10171,"80":0.01695,"81":0.00636,"83":0.00848,"84":0.0106,"85":0.00424,"86":0.02543,"87":0.02755,"88":0.00848,"89":0.01695,"90":0.01271,"91":0.01907,"92":0.02755,"93":0.0106,"94":0.01695,"95":0.0106,"96":0.03602,"97":0.01907,"98":0.03179,"99":0.05086,"100":0.03814,"101":0.04026,"102":0.12502,"103":2.46228,"104":6.65578,"105":0.03602,"106":0.00424,_:"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 38 39 40 41 42 43 44 45 46 47 48 51 52 53 54 56 59 61 62 66 107 108"},F:{"62":0.00212,"79":0.0106,"85":0.0106,"86":0.02543,"87":0.00848,"88":0.01483,"89":0.61875,"90":0.13138,_:"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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.02543,"13":0.0106,"14":0.0106,"15":0.0106,"16":0.01907,"17":0.00848,"18":0.07417,"84":0.00636,"85":0.00424,"86":0.00212,"89":0.00848,"90":0.01271,"92":0.02119,"96":0.00212,"97":0.00424,"98":0.00424,"99":0.00424,"100":0.00636,"101":0.01271,"102":0.02331,"103":0.55518,"104":1.16121,_:"79 80 81 83 87 88 91 93 94 95 105"},E:{"4":0,"13":0.00848,"14":0.02331,"15":0.00424,_:"0 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.00636,"12.1":0.01271,"13.1":0.04662,"14.1":0.06145,"15.1":0.02331,"15.2-15.3":0.0106,"15.4":0.02119,"15.5":0.08052,"15.6":0.1229,"16.0":0.00212},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00124,"6.0-6.1":0.00186,"7.0-7.1":0.01611,"8.1-8.4":0,"9.0-9.2":0.0031,"9.3":0.02603,"10.0-10.2":0.00248,"10.3":0.1723,"11.0-11.2":0.01116,"11.3-11.4":0.03781,"12.0-12.1":0.02727,"12.2-12.5":1.0047,"13.0-13.1":0.01178,"13.2":0.00558,"13.3":0.05206,"13.4-13.7":0.09049,"14.0-14.4":0.38366,"14.5-14.8":0.51629,"15.0-15.1":0.28511,"15.2-15.3":0.30804,"15.4":0.44316,"15.5":1.23712,"15.6":1.49,"16.0":0.06632},P:{"4":0.23788,"5.0-5.4":0.03103,"6.2-6.4":0.11054,"7.2-7.4":0.12411,"8.2":0.01005,"9.2":0.06206,"10.1":0.07035,"11.1-11.2":0.10343,"12.0":0.02069,"13.0":0.04137,"14.0":0.08274,"15.0":0.0724,"16.0":0.20685,"17.0":0.63089,"18.0":0.37233},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00314,"4.2-4.3":0.00903,"4.4":0,"4.4.3-4.4.4":0.09815},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00249,"11":0.05473,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.00788},N:{"10":0,"11":0},L:{"0":59.91239},S:{"2.5":0.33884},R:{_:"0"},M:{"0":0.17336},Q:{"10.4":0},O:{"0":1.1032},H:{"0":13.77913}}; +module.exports={C:{"30":0.00162,"34":0.00486,"38":0.00162,"43":0.00162,"44":0.00162,"45":0.00324,"47":0.00486,"49":0.00324,"52":0.0081,"56":0.00162,"67":0.00162,"68":0.00162,"72":0.00648,"78":0.0081,"88":0.00486,"89":0.00648,"91":0.06314,"95":0.00648,"96":0.00486,"98":0.00324,"99":0.0081,"100":0.00486,"101":0.00324,"102":0.01781,"103":0.08257,"104":0.96169,"105":0.35294,"106":0.034,_:"2 3 4 5 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 39 40 41 42 46 48 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 90 92 93 94 97 107 3.5 3.6"},D:{"33":0.00648,"37":0.00324,"43":0.00162,"49":0.00486,"50":0.00162,"55":0.00648,"58":0.00324,"60":0.00162,"61":0.00324,"62":0.00162,"63":0.00486,"64":0.00162,"65":0.00162,"66":0.00486,"68":0.00324,"69":0.00486,"70":0.00648,"71":0.00648,"72":0.00648,"73":0.00648,"74":0.01619,"75":0.00162,"76":0.00324,"77":0.00648,"78":0.00324,"79":0.02914,"80":0.00648,"81":0.03076,"83":0.00971,"84":0.0081,"85":0.00971,"86":0.01943,"87":0.03076,"88":0.01133,"89":0.0081,"90":0.00648,"91":0.01295,"92":0.02429,"93":0.00486,"94":0.00971,"95":0.00648,"96":0.01943,"97":0.00971,"98":0.01619,"99":0.01619,"100":0.02914,"101":0.0259,"102":0.05505,"103":0.17971,"104":1.60605,"105":5.06585,"106":0.08257,"107":0.00162,_:"4 5 6 7 8 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 38 39 40 41 42 44 45 46 47 48 51 52 53 54 56 57 59 67 108 109"},F:{"67":0.0081,"79":0.00648,"80":0.00324,"84":0.00162,"85":0.00324,"86":0.00648,"87":0.00162,"88":0.00971,"89":0.01457,"90":0.4598,"91":0.03238,_:"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 68 69 70 71 72 73 74 75 76 77 78 81 82 83 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01619,"13":0.00648,"14":0.00324,"15":0.00971,"16":0.01295,"17":0.00486,"18":0.06962,"81":0.00324,"84":0.00486,"85":0.00324,"86":0.00162,"89":0.00971,"90":0.01295,"92":0.01295,"96":0.00324,"97":0.00162,"98":0.00324,"99":0.00324,"100":0.00324,"101":0.00648,"102":0.01133,"103":0.02752,"104":0.19752,"105":0.97788,_:"79 80 83 87 88 91 93 94 95"},E:{"4":0,"11":0.00162,"13":0.00648,"14":0.01457,"15":0.00324,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1 16.1","10.1":0.00162,"11.1":0.00648,"12.1":0.00486,"13.1":0.034,"14.1":0.034,"15.1":0.01457,"15.2-15.3":0.00486,"15.4":0.02105,"15.5":0.03076,"15.6":0.09714,"16.0":0.0259},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00199,"6.0-6.1":0,"7.0-7.1":0.05178,"8.1-8.4":0.0005,"9.0-9.2":0,"9.3":0.02788,"10.0-10.2":0.00597,"10.3":0.07817,"11.0-11.2":0.00896,"11.3-11.4":0.02041,"12.0-12.1":0.04133,"12.2-12.5":0.96297,"13.0-13.1":0.01992,"13.2":0.00946,"13.3":0.06274,"13.4-13.7":0.06473,"14.0-14.4":0.28929,"14.5-14.8":0.32862,"15.0-15.1":0.20265,"15.2-15.3":0.24896,"15.4":0.26738,"15.5":0.4785,"15.6":1.26819,"16.0":0.45858,"16.1":0.00448},P:{"4":0.2485,"5.0-5.4":0.02071,"6.2-6.4":0.1912,"7.2-7.4":0.12425,"8.2":0.04025,"9.2":0.06213,"10.1":0.04025,"11.1-11.2":0.06213,"12.0":0.03019,"13.0":0.03106,"14.0":0.07248,"15.0":0.05177,"16.0":0.20708,"17.0":0.19673,"18.0":0.68338},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00185,"4.2-4.3":0.01248,"4.4":0,"4.4.3-4.4.4":0.1114},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04857,_:"6 7 8 9 10 5.5"},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.88849},H:{"0":24.63984},L:{"0":54.00225},S:{"2.5":0.38557},R:{_:"0"},M:{"0":0.13411},Q:{"13.1":0}}; 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 0f2eb97fecb053..dda810f4f983eb 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00617,"49":0,"50":0.08015,"51":0,"52":0.11714,"53":0,"54":0,"55":0.00617,"56":0,"57":0,"58":0,"59":0,"60":0.00617,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.14796,"69":0,"70":0,"71":0,"72":0.00617,"73":0,"74":0,"75":0,"76":0,"77":0.00617,"78":0.08631,"79":0.00617,"80":0.01233,"81":0.06782,"82":0.00617,"83":0.00617,"84":0.01233,"85":0,"86":0,"87":0,"88":0.00617,"89":0.0185,"90":0,"91":0.06165,"92":0,"93":0.00617,"94":0.01233,"95":0.0185,"96":0.01233,"97":0.01233,"98":0.01233,"99":0.03699,"100":0.0185,"101":0.02466,"102":0.08015,"103":1.71387,"104":0.30209,"105":0.00617,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00617,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00617,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.01233,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.11714,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00617,"57":0.00617,"58":0.00617,"59":0.09864,"60":0,"61":0.04932,"62":0,"63":0.00617,"64":0.00617,"65":0,"66":0,"67":0.00617,"68":0.00617,"69":0.00617,"70":0.01233,"71":0.0185,"72":0.04932,"73":0.00617,"74":0.06165,"75":0.00617,"76":0.00617,"77":0.01233,"78":0.01233,"79":0.04932,"80":0.02466,"81":0.03699,"83":0.04932,"84":0.08015,"85":0.05549,"86":0.16646,"87":0.09248,"88":0.03699,"89":0.04316,"90":0.03699,"91":0.03699,"92":0.04316,"93":0.03083,"94":0.03083,"95":0.03699,"96":0.13563,"97":0.28976,"98":0.06782,"99":0.11097,"100":0.10481,"101":0.11714,"102":0.37607,"103":4.97516,"104":12.68141,"105":0.03699,"106":0.01233,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.03699,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00617,"62":0.00617,"63":0.0185,"64":0.0185,"65":0,"66":0,"67":0,"68":0.00617,"69":0.01233,"70":0.00617,"71":0.05549,"72":0.00617,"73":0.01233,"74":0.00617,"75":0.00617,"76":0,"77":0.0185,"78":0.00617,"79":0.03699,"80":0.00617,"81":0.00617,"82":0.0185,"83":0.02466,"84":0.06165,"85":0.27743,"86":0.05549,"87":0.04932,"88":0.14796,"89":7.58295,"90":1.30082,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0185},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.0185,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00617,"88":0,"89":0.00617,"90":0,"91":0,"92":0.00617,"93":0,"94":0,"95":0,"96":0.00617,"97":0,"98":0,"99":0.00617,"100":0,"101":0.00617,"102":0.00617,"103":0.21578,"104":0.65966,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0185,"14":0.04316,"15":0.00617,_:"0","3.1":0,"3.2":0,"5.1":0.03699,"6.1":0,"7.1":0,"9.1":0.01233,"10.1":0,"11.1":0.00617,"12.1":0.00617,"13.1":0.04932,"14.1":0.09248,"15.1":0.0185,"15.2-15.3":0.01233,"15.4":0.04316,"15.5":0.14796,"15.6":0.25277,"16.0":0.00617},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0039,"6.0-6.1":0.00097,"7.0-7.1":0.02338,"8.1-8.4":0.00585,"9.0-9.2":0.00195,"9.3":0.07892,"10.0-10.2":0.00097,"10.3":0.05456,"11.0-11.2":0.01656,"11.3-11.4":0.01949,"12.0-12.1":0.01461,"12.2-12.5":0.29912,"13.0-13.1":0.01267,"13.2":0.01461,"13.3":0.0302,"13.4-13.7":0.10815,"14.0-14.4":0.26697,"14.5-14.8":0.68106,"15.0-15.1":0.2241,"15.2-15.3":0.41312,"15.4":0.47937,"15.5":2.12112,"15.6":4.73038,"16.0":0.13641},P:{"4":0.07338,"5.0-5.4":0,"6.2-6.4":0.01048,"7.2-7.4":0.06289,"8.2":0,"9.2":0.01048,"10.1":0,"11.1-11.2":0.04193,"12.0":0.01048,"13.0":0.04193,"14.0":0.03145,"15.0":0.03145,"16.0":0.06289,"17.0":0.41929,"18.0":0.46122},I:{"0":0,"3":0,"4":0.01072,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01532,"4.2-4.3":0.03064,"4.4":0,"4.4.3-4.4.4":0.11949},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00634,"9":0.00634,"10":0,"11":0.20926,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":38.47999},S:{"2.5":0},R:{_:"0"},M:{"0":0.13039},Q:{"10.4":0},O:{"0":0.16107},H:{"0":6.41913}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.02556,"22":0.00639,"23":0.00639,"24":0.00639,"25":0,"26":0,"27":0,"28":0,"29":0.00639,"30":0,"31":0.00639,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00639,"49":0,"50":0,"51":0,"52":0.13419,"53":0,"54":0.00639,"55":0.62622,"56":0.00639,"57":0,"58":0,"59":0,"60":0.00639,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.15336,"69":0,"70":0,"71":0,"72":0.00639,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.08946,"79":0.01278,"80":0.05112,"81":0.02556,"82":0.01917,"83":0.01278,"84":0.01278,"85":0,"86":0,"87":0,"88":0.00639,"89":0.01278,"90":0,"91":0.05112,"92":0,"93":0.00639,"94":0.01278,"95":0.01278,"96":0.00639,"97":0.01917,"98":0.00639,"99":0.01917,"100":0.01278,"101":0.01278,"102":0.03834,"103":0.1278,"104":1.43136,"105":0.47925,"106":0.00639,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00639,"23":0,"24":0.03195,"25":0,"26":0.00639,"27":0.08307,"28":0.02556,"29":0.02556,"30":0.00639,"31":0.01917,"32":0.02556,"33":0.00639,"34":0.01917,"35":0.03195,"36":0.03195,"37":0.02556,"38":0.00639,"39":0,"40":0.00639,"41":0.07029,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00639,"48":0.00639,"49":0.10224,"50":0,"51":0.00639,"52":0,"53":0,"54":0,"55":0,"56":0.01278,"57":0.00639,"58":0,"59":0.10224,"60":0,"61":0.03195,"62":0,"63":0.01917,"64":0.00639,"65":0,"66":0,"67":0.01278,"68":0.01917,"69":0.01278,"70":0.01917,"71":0.03834,"72":0.01278,"73":0.00639,"74":0.0639,"75":0.00639,"76":0.00639,"77":0.00639,"78":0.01917,"79":0.05751,"80":0.02556,"81":0.05751,"83":0.08946,"84":0.20448,"85":0.17892,"86":0.27477,"87":0.19809,"88":0.05112,"89":0.05112,"90":0.03834,"91":0.01917,"92":0.02556,"93":0.07668,"94":0.01917,"95":0.05112,"96":0.10224,"97":0.11502,"98":0.05751,"99":0.05751,"100":0.07668,"101":0.08946,"102":0.1917,"103":0.5112,"104":4.04487,"105":14.7609,"106":0.24282,"107":0.01278,"108":0,"109":0},F:{"9":0,"11":0.00639,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.03195,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00639,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00639,"62":0.00639,"63":0.00639,"64":0.03195,"65":0.00639,"66":0,"67":0,"68":0.02556,"69":0.01278,"70":0.01917,"71":0.08946,"72":0.01278,"73":0.01278,"74":0.00639,"75":0.00639,"76":0.00639,"77":0.00639,"78":0,"79":0.03195,"80":0.00639,"81":0.00639,"82":0.01917,"83":0.02556,"84":0.05751,"85":0.26199,"86":0.05112,"87":0.03195,"88":0.07029,"89":0.34506,"90":7.86609,"91":0.34506,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02556},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00639,"17":0,"18":0.01917,"79":0,"80":0,"81":0,"83":0,"84":0.00639,"85":0.00639,"86":0.00639,"87":0.00639,"88":0,"89":0,"90":0,"91":0,"92":0.00639,"93":0,"94":0,"95":0,"96":0.00639,"97":0,"98":0,"99":0,"100":0,"101":0.00639,"102":0.00639,"103":0.00639,"104":0.14058,"105":0.81153},E:{"4":0,"5":0.01278,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00639,"14":0.03834,"15":0.00639,_:"0","3.1":0,"3.2":0,"5.1":0.03195,"6.1":0,"7.1":0,"9.1":0.01278,"10.1":0,"11.1":0.00639,"12.1":0.00639,"13.1":0.04473,"14.1":0.08946,"15.1":0.01917,"15.2-15.3":0.01278,"15.4":0.03834,"15.5":0.08307,"15.6":0.3195,"16.0":0.07668,"16.1":0.01278},G:{"8":0,"3.2":0.01925,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00608,"6.0-6.1":0.00507,"7.0-7.1":0.04559,"8.1-8.4":0.01013,"9.0-9.2":0.00507,"9.3":0.08713,"10.0-10.2":0.00405,"10.3":0.05065,"11.0-11.2":0.01418,"11.3-11.4":0.01925,"12.0-12.1":0.01216,"12.2-12.5":0.29684,"13.0-13.1":0.02127,"13.2":0.00709,"13.3":0.03039,"13.4-13.7":0.1084,"14.0-14.4":0.22288,"14.5-14.8":0.58354,"15.0-15.1":0.1469,"15.2-15.3":0.31811,"15.4":0.33837,"15.5":0.70309,"15.6":4.56803,"16.0":2.2288,"16.1":0.03951},P:{"4":0.0623,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04153,"8.2":0,"9.2":0.01038,"10.1":0,"11.1-11.2":0.03115,"12.0":0.01038,"13.0":0.05192,"14.0":0.04153,"15.0":0.01038,"16.0":0.03115,"17.0":0.10383,"18.0":0.69566},I:{"0":0,"3":0,"4":0.01031,"2.1":0,"2.2":0,"2.3":0.00172,"4.1":0.01546,"4.2-4.3":0.04468,"4.4":0,"4.4.3-4.4.4":0.14949},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.02654,"9":0.01327,"10":0.00664,"11":0.29861,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00361},O:{"0":0.16967},H:{"0":6.05619},L:{"0":36.28261},S:{"2.5":0},R:{_:"0"},M:{"0":0.12635},Q:{"13.1":0}}; 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 2648c0a48577a9..bcc72fac051f50 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00246,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00246,"44":0,"45":0,"46":0,"47":0.00246,"48":0,"49":0,"50":0,"51":0,"52":0.00738,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01723,"61":0,"62":0,"63":0,"64":0.00492,"65":0,"66":0,"67":0,"68":0.00246,"69":0,"70":0,"71":0,"72":0.00492,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00492,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00246,"89":0,"90":0,"91":0.01477,"92":0,"93":0.00246,"94":0,"95":0.00246,"96":0,"97":0.00246,"98":0.00738,"99":0.00246,"100":0.00738,"101":0.00738,"102":0.02953,"103":0.41345,"104":0.11321,"105":0.01231,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.00246,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00246,"40":0.00246,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00246,"47":0,"48":0,"49":0.00246,"50":0.00246,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00246,"57":0,"58":0.00246,"59":0,"60":0,"61":0,"62":0.00246,"63":0,"64":0.00738,"65":0.00492,"66":0.00246,"67":0,"68":0,"69":0,"70":0.00246,"71":0,"72":0.00492,"73":0,"74":0.00492,"75":0,"76":0.00246,"77":0.00246,"78":0.00246,"79":0.00492,"80":0.00492,"81":0.00984,"83":0.00246,"84":0,"85":0,"86":0.00492,"87":0.00984,"88":0.00246,"89":0.00492,"90":0.00246,"91":0.00492,"92":0.00984,"93":0.00984,"94":0.00492,"95":0.00984,"96":0.00738,"97":0.00738,"98":0.00738,"99":0.00492,"100":0.01231,"101":0.01231,"102":0.03445,"103":0.69892,"104":2.00572,"105":0.00738,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0.00246,"15":0,"16":0.00246,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00246,"25":0,"26":0,"27":0,"28":0.00246,"29":0,"30":0.00246,"31":0,"32":0.00246,"33":0.00492,"34":0,"35":0,"36":0,"37":0.01477,"38":0,"39":0,"40":0,"41":0,"42":0.00246,"43":0,"44":0,"45":0.00246,"46":0.00492,"47":0.00246,"48":0,"49":0,"50":0.00246,"51":0.00492,"52":0,"53":0,"54":0.00738,"55":0.00246,"56":0.00738,"57":0.03199,"58":0.02461,"60":0.08614,"62":0.00246,"63":0.48236,"64":0.21411,"65":0,"66":0,"67":0,"68":0,"69":0.00246,"70":0.00246,"71":0.00246,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00738,"80":0,"81":0.00246,"82":0,"83":0,"84":0,"85":0.00738,"86":0,"87":0,"88":0.00492,"89":0.11813,"90":0.02707,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01231},B:{"12":0.00738,"13":0.00246,"14":0.00246,"15":0.00492,"16":0.00738,"17":0.00246,"18":0.01231,"79":0,"80":0,"81":0,"83":0,"84":0.00246,"85":0.00246,"86":0,"87":0,"88":0,"89":0.00246,"90":0.00246,"91":0,"92":0.00738,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00246,"100":0.00492,"101":0.00738,"102":0.00492,"103":0.11075,"104":0.25102,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00246,"14":0.00492,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00738,"11.1":0,"12.1":0.00246,"13.1":0.00738,"14.1":0.00738,"15.1":0,"15.2-15.3":0,"15.4":0.00984,"15.5":0.01231,"15.6":0.01723,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0005,"5.0-5.1":0.00401,"6.0-6.1":0,"7.0-7.1":0.01252,"8.1-8.4":0.0025,"9.0-9.2":0.001,"9.3":0.03655,"10.0-10.2":0.002,"10.3":0.03255,"11.0-11.2":0.00751,"11.3-11.4":0.01102,"12.0-12.1":0.01853,"12.2-12.5":0.55132,"13.0-13.1":0.08362,"13.2":0.00651,"13.3":0.05007,"13.4-13.7":0.06359,"14.0-14.4":0.36054,"14.5-14.8":0.43114,"15.0-15.1":0.30045,"15.2-15.3":0.29244,"15.4":0.39859,"15.5":1.08412,"15.6":1.2088,"16.0":0.04507},P:{"4":0.1032,"5.0-5.4":0.01032,"6.2-6.4":0,"7.2-7.4":0.08256,"8.2":0,"9.2":0.1032,"10.1":0,"11.1-11.2":0.03096,"12.0":0,"13.0":0.03096,"14.0":0.12384,"15.0":0.06192,"16.0":0.11352,"17.0":0.37151,"18.0":0.22704},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0042,"4.2-4.3":0.00841,"4.4":0,"4.4.3-4.4.4":0.14122},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00984,"5.5":0},J:{"7":0,"10":0.02262},N:{"10":0,"11":0},L:{"0":66.82028},S:{"2.5":0.21863},R:{_:"0"},M:{"0":0.14324},Q:{"10.4":0},O:{"0":0.71621},H:{"0":15.68095}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00235,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00471,"48":0,"49":0,"50":0,"51":0,"52":0.00235,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00235,"61":0,"62":0,"63":0,"64":0.00235,"65":0,"66":0,"67":0,"68":0.00235,"69":0,"70":0,"71":0,"72":0.00235,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00706,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00235,"89":0,"90":0.00235,"91":0.01882,"92":0,"93":0.00235,"94":0,"95":0.00235,"96":0,"97":0,"98":0.00471,"99":0.00235,"100":0.00471,"101":0.00235,"102":0.00941,"103":0.0353,"104":0.38119,"105":0.13412,"106":0.01177,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.00235,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00235,"38":0,"39":0,"40":0.00471,"41":0,"42":0.00235,"43":0,"44":0,"45":0,"46":0.00235,"47":0,"48":0,"49":0,"50":0.00471,"51":0,"52":0,"53":0.00235,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00235,"64":0.00471,"65":0.00471,"66":0.00235,"67":0,"68":0.00235,"69":0,"70":0.00235,"71":0.00235,"72":0.00471,"73":0,"74":0.00471,"75":0.00235,"76":0.00235,"77":0.00235,"78":0,"79":0.00706,"80":0.00471,"81":0.00706,"83":0.01412,"84":0,"85":0,"86":0.00941,"87":0.00471,"88":0.00235,"89":0.00471,"90":0.00235,"91":0.00235,"92":0.01412,"93":0.00235,"94":0.00471,"95":0.00706,"96":0.00471,"97":0.00706,"98":0.00471,"99":0.00471,"100":0.01177,"101":0.00941,"102":0.02588,"103":0.05883,"104":0.55766,"105":1.89887,"106":0.02824,"107":0.00235,"108":0,"109":0},F:{"9":0,"11":0,"12":0.00471,"15":0,"16":0.01177,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00235,"25":0,"26":0.00235,"27":0.00235,"28":0.00235,"29":0,"30":0,"31":0,"32":0.00235,"33":0.00235,"34":0,"35":0,"36":0,"37":0.01412,"38":0.00235,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00235,"46":0.00235,"47":0.00235,"48":0,"49":0,"50":0.00235,"51":0.00471,"52":0,"53":0,"54":0.00471,"55":0.00235,"56":0.00471,"57":0.02118,"58":0.0353,"60":0.08,"62":0,"63":0.36472,"64":0.4706,"65":0.01882,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00235,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00235,"80":0,"81":0.00235,"82":0,"83":0,"84":0,"85":0.00235,"86":0,"87":0,"88":0.00235,"89":0.00471,"90":0.12,"91":0.01412,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01412},B:{"12":0.00941,"13":0.00235,"14":0.00235,"15":0.00235,"16":0.00471,"17":0.00235,"18":0.01177,"79":0,"80":0,"81":0,"83":0,"84":0.00235,"85":0,"86":0,"87":0,"88":0,"89":0.00235,"90":0.00235,"91":0,"92":0.00471,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00235,"100":0.00235,"101":0.00235,"102":0.00235,"103":0.00941,"104":0.06588,"105":0.26589},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00471,"15":0.00471,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00235,"11.1":0,"12.1":0,"13.1":0.00471,"14.1":0.00471,"15.1":0.00235,"15.2-15.3":0.00235,"15.4":0.00235,"15.5":0.00706,"15.6":0.02118,"16.0":0.00706,"16.1":0},G:{"8":0.00049,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00147,"5.0-5.1":0.00539,"6.0-6.1":0.00049,"7.0-7.1":0.01029,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02695,"10.0-10.2":0.00098,"10.3":0.06125,"11.0-11.2":0.0049,"11.3-11.4":0.00735,"12.0-12.1":0.01372,"12.2-12.5":0.44493,"13.0-13.1":0.14553,"13.2":0.00294,"13.3":0.04557,"13.4-13.7":0.05341,"14.0-14.4":0.3729,"14.5-14.8":0.40769,"15.0-15.1":0.23178,"15.2-15.3":0.31753,"15.4":0.30577,"15.5":0.53608,"15.6":1.31716,"16.0":0.49492,"16.1":0.01225},P:{"4":0.09254,"5.0-5.4":0.01028,"6.2-6.4":0.01028,"7.2-7.4":0.07197,"8.2":0,"9.2":0.09254,"10.1":0.01028,"11.1-11.2":0.02056,"12.0":0,"13.0":0.03085,"14.0":0.07197,"15.0":0.06169,"16.0":0.08225,"17.0":0.18507,"18.0":0.48324},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00477,"4.2-4.3":0.00794,"4.4":0,"4.4.3-4.4.4":0.14141},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00941,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00765},O:{"0":0.6347},H:{"0":19.27928},L:{"0":62.92171},S:{"2.5":0.22176},R:{_:"0"},M:{"0":0.19118},Q:{"13.1":0}}; 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 953a2b301d029d..ff9fe0ded5dcf5 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:{"2":0,"3":0,"4":0.01854,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01391,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00464,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00927,"45":0.00464,"46":0,"47":0,"48":0.00464,"49":0,"50":0,"51":0,"52":0.01854,"53":0,"54":0.01391,"55":0,"56":0.00464,"57":0,"58":0,"59":0.00464,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00464,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02782,"79":0.00464,"80":0.00464,"81":0.00464,"82":0.00464,"83":0.00464,"84":0.00464,"85":0,"86":0,"87":0.00464,"88":0.00464,"89":0.00464,"90":0,"91":0.04172,"92":0,"93":0.00464,"94":0.01391,"95":0.00464,"96":0.00464,"97":0.00464,"98":0.00464,"99":0.00927,"100":0.00927,"101":0.01854,"102":0.0649,"103":0.9782,"104":0.19935,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00464,"36":0,"37":0,"38":0.00464,"39":0,"40":0.00927,"41":0,"42":0,"43":0.00464,"44":0.00464,"45":0,"46":0,"47":0,"48":0.01854,"49":0.01854,"50":0,"51":0,"52":0.00464,"53":0,"54":0,"55":0,"56":0.06954,"57":0,"58":0,"59":0.00464,"60":0.00464,"61":0.01391,"62":0,"63":0.00464,"64":0,"65":0.00464,"66":0.03245,"67":0.00927,"68":0.00464,"69":0.00464,"70":0.00464,"71":0.00464,"72":0.00464,"73":0.00464,"74":0.00464,"75":0.00927,"76":0.07881,"77":0.00464,"78":0.01391,"79":0.0649,"80":0.03245,"81":0.03245,"83":0.051,"84":0.03709,"85":0.04636,"86":0.04636,"87":0.06027,"88":0.01391,"89":0.03245,"90":0.01391,"91":0.02782,"92":0.01854,"93":0.051,"94":0.01854,"95":0.01391,"96":0.0649,"97":0.051,"98":0.06954,"99":0.051,"100":0.09272,"101":0.12054,"102":0.27816,"103":3.57899,"104":6.83346,"105":0.02782,"106":0.02782,"107":0.01854,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00464,"64":0.00464,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00464,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00927,"89":0.23644,"90":0.02318,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00464,"13":0,"14":0,"15":0.00464,"16":0,"17":0.00464,"18":0.00927,"79":0,"80":0,"81":0,"83":0,"84":0.00464,"85":0.00464,"86":0.00464,"87":0.00464,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00464,"96":0.00464,"97":0,"98":0.00464,"99":0.00464,"100":0.00464,"101":0.03709,"102":0.02782,"103":0.7603,"104":2.09084,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00464,"9":0.00464,"10":0,"11":0,"12":0.00464,"13":0.02318,"14":0.09736,"15":0.02782,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01391,"10.1":0.00927,"11.1":0.02318,"12.1":0.04172,"13.1":0.35697,"14.1":0.30134,"15.1":0.04636,"15.2-15.3":0.04636,"15.4":0.15299,"15.5":0.60268,"15.6":1.40007,"16.0":0.00927},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00428,"5.0-5.1":0,"6.0-6.1":0.00855,"7.0-7.1":0.01283,"8.1-8.4":0.01283,"9.0-9.2":0.02566,"9.3":0.09837,"10.0-10.2":0.00855,"10.3":0.12403,"11.0-11.2":0.04705,"11.3-11.4":0.0556,"12.0-12.1":0.04277,"12.2-12.5":0.63297,"13.0-13.1":0.03421,"13.2":0.02138,"13.3":0.09409,"13.4-13.7":0.28655,"14.0-14.4":0.9238,"14.5-14.8":2.8441,"15.0-15.1":0.56882,"15.2-15.3":1.04783,"15.4":1.42419,"15.5":8.70766,"15.6":25.44296,"16.0":0.26516},P:{"4":0.0625,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01042,"10.1":0,"11.1-11.2":0.01042,"12.0":0.01042,"13.0":0.03125,"14.0":0.04167,"15.0":0.02083,"16.0":0.08334,"17.0":0.66672,"18.0":1.04175},I:{"0":0,"3":0.02492,"4":0.06854,"2.1":0,"2.2":0.01869,"2.3":0,"4.1":0.01869,"4.2-4.3":0.16199,"4.4":0,"4.4.3-4.4.4":0.19314},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.02423,"9":0.0727,"10":0.00485,"11":0.11147,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":31.96455},S:{"2.5":0.00536},R:{_:"0"},M:{"0":0.4613},Q:{"10.4":0.03218},O:{"0":0.08582},H:{"0":0.2336}}; +module.exports={C:{"2":0,"3":0,"4":0.01886,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01415,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00472,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00472,"39":0.00472,"40":0.00472,"41":0,"42":0,"43":0,"44":0.00943,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01886,"53":0,"54":0.00943,"55":0,"56":0.00472,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00472,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00472,"77":0,"78":0.0283,"79":0.00472,"80":0.00472,"81":0.00472,"82":0.00472,"83":0.00472,"84":0.00472,"85":0,"86":0,"87":0.00472,"88":0.00472,"89":0.00472,"90":0,"91":0.03773,"92":0,"93":0.00472,"94":0.01886,"95":0.00472,"96":0.00472,"97":0.00472,"98":0.00472,"99":0.00472,"100":0.00943,"101":0.00943,"102":0.03301,"103":0.07546,"104":0.89604,"105":0.27353,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00472,"36":0,"37":0.00472,"38":0.00472,"39":0.00472,"40":0.01415,"41":0.00472,"42":0.00472,"43":0.00943,"44":0.01415,"45":0.00943,"46":0,"47":0.00472,"48":0.01886,"49":0.01886,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.06602,"57":0.00472,"58":0,"59":0.00472,"60":0.00472,"61":0.00943,"62":0.00472,"63":0.00472,"64":0,"65":0.00472,"66":0.0283,"67":0.00943,"68":0.00472,"69":0.00472,"70":0.00472,"71":0.00943,"72":0.00472,"73":0.00472,"74":0.00943,"75":0.00943,"76":0.06602,"77":0.00943,"78":0.01415,"79":0.05188,"80":0.03301,"81":0.03773,"83":0.05659,"84":0.05188,"85":0.07074,"86":0.06602,"87":0.06602,"88":0.01415,"89":0.03773,"90":0.01415,"91":0.02358,"92":0.01886,"93":0.05188,"94":0.01886,"95":0.00943,"96":0.06602,"97":0.03773,"98":0.04244,"99":0.04716,"100":0.0896,"101":0.09432,"102":0.22165,"103":0.58007,"104":2.88148,"105":7.47014,"106":0.12733,"107":0.02358,"108":0.02358,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00943,"65":0,"66":0,"67":0,"68":0.00472,"69":0,"70":0.00472,"71":0.00472,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00472,"89":0.0283,"90":0.22637,"91":0.00943,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00472,"13":0,"14":0,"15":0,"16":0,"17":0.00472,"18":0.00943,"79":0,"80":0,"81":0,"83":0,"84":0.00472,"85":0.00472,"86":0.00472,"87":0.00472,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00472,"96":0,"97":0,"98":0,"99":0.00472,"100":0.00472,"101":0.01415,"102":0.00943,"103":0.03773,"104":0.52819,"105":2.37215},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00472,"9":0.00472,"10":0,"11":0,"12":0.00472,"13":0.02358,"14":0.09432,"15":0.02358,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01415,"10.1":0.00472,"11.1":0.01886,"12.1":0.04244,"13.1":0.36313,"14.1":0.26881,"15.1":0.04244,"15.2-15.3":0.04244,"15.4":0.11318,"15.5":0.24995,"15.6":1.76378,"16.0":0.16506,"16.1":0.00943},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00842,"5.0-5.1":0,"6.0-6.1":0.01263,"7.0-7.1":0.02105,"8.1-8.4":0.03789,"9.0-9.2":0.02947,"9.3":0.09261,"10.0-10.2":0.00842,"10.3":0.11366,"11.0-11.2":0.0421,"11.3-11.4":0.0463,"12.0-12.1":0.0421,"12.2-12.5":0.56829,"13.0-13.1":0.03368,"13.2":0.02105,"13.3":0.07998,"13.4-13.7":0.25678,"14.0-14.4":0.78718,"14.5-14.8":2.4289,"15.0-15.1":0.43358,"15.2-15.3":0.71562,"15.4":0.8377,"15.5":2.35313,"15.6":27.85452,"16.0":4.2811,"16.1":0.06314},P:{"4":0.05284,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01057,"12.0":0.01057,"13.0":0.02114,"14.0":0.0317,"15.0":0.02114,"16.0":0.08454,"17.0":0.13738,"18.0":1.74372},I:{"0":0,"3":0.01673,"4":0.06133,"2.1":0.01115,"2.2":0.03345,"2.3":0,"4.1":0.0223,"4.2-4.3":0.15612,"4.4":0,"4.4.3-4.4.4":0.21187},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.02461,"9":0.06889,"10":0.00492,"11":0.12795,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.08983},H:{"0":0.23012},L:{"0":32.44867},S:{"2.5":0.00528},R:{_:"0"},M:{"0":0.44386},Q:{"13.1":0.05284}}; 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 501f7cbf62c9ce..f26e669e7d28bd 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00431,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0388,"53":0,"54":0,"55":0.00431,"56":0,"57":0.00431,"58":0,"59":0,"60":0,"61":0.00431,"62":0.00431,"63":0.00431,"64":0,"65":0,"66":0.00431,"67":0,"68":0.00862,"69":0,"70":0,"71":0,"72":0,"73":0.02156,"74":0,"75":0,"76":0,"77":0,"78":0.01293,"79":0,"80":0,"81":0,"82":0,"83":0.00862,"84":0.00431,"85":0,"86":0.00431,"87":0,"88":0.00862,"89":0,"90":0.0388,"91":0.04311,"92":0,"93":0.00431,"94":0,"95":0.00431,"96":0.00431,"97":0.00431,"98":0.00431,"99":0.01724,"100":0.04311,"101":0.00862,"102":0.03018,"103":0.6251,"104":0.14657,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00862,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01293,"37":0,"38":0.05173,"39":0,"40":0,"41":0.00431,"42":0,"43":0.00431,"44":0,"45":0,"46":0,"47":0.00431,"48":0,"49":0.05604,"50":0,"51":0.00431,"52":0.00431,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.01293,"63":0.00431,"64":0,"65":0.00431,"66":0.00431,"67":0,"68":0,"69":0.00431,"70":0.00862,"71":0.00862,"72":0.00431,"73":0.00862,"74":0.00862,"75":0.00431,"76":0.00431,"77":0.00431,"78":0.00431,"79":0.02156,"80":0.04311,"81":0.01293,"83":0.00431,"84":0.00431,"85":0.01293,"86":0.30608,"87":0.02587,"88":0.01293,"89":0.02156,"90":0.01293,"91":0.04311,"92":0.01724,"93":0.03018,"94":0.02587,"95":0.01724,"96":0.0388,"97":0.02587,"98":0.06898,"99":0.02587,"100":0.0388,"101":0.04311,"102":0.08191,"103":3.31947,"104":9.09621,"105":0.02587,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00431,"64":0.00431,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00431,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00431,"86":0.00431,"87":0.00431,"88":0.01293,"89":1.00446,"90":0.05173,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00431,"15":0,"16":0.00431,"17":0.00431,"18":0.00862,"79":0,"80":0,"81":0,"83":0,"84":0.00431,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00431,"93":0,"94":0,"95":0.00431,"96":0,"97":0,"98":0,"99":0,"100":0.00431,"101":0.01724,"102":0.00431,"103":0.29315,"104":0.77598,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00431,"14":0.01724,"15":0.00431,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00431,"13.1":0.03018,"14.1":0.04311,"15.1":0.01724,"15.2-15.3":0.00862,"15.4":0.02156,"15.5":0.09484,"15.6":0.15951,"16.0":0.00431},G:{"8":0,"3.2":0.00113,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03045,"6.0-6.1":0,"7.0-7.1":0.01805,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02481,"10.0-10.2":0.00113,"10.3":0.03948,"11.0-11.2":0.01241,"11.3-11.4":0.00564,"12.0-12.1":0.01128,"12.2-12.5":0.4974,"13.0-13.1":0.00338,"13.2":0.00113,"13.3":0.02594,"13.4-13.7":0.13309,"14.0-14.4":0.24701,"14.5-14.8":0.67448,"15.0-15.1":0.09925,"15.2-15.3":0.15791,"15.4":0.36318,"15.5":2.40693,"15.6":6.45383,"16.0":0.06542},P:{"4":0.08187,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.21492,"8.2":0,"9.2":0.02047,"10.1":0,"11.1-11.2":0.04094,"12.0":0.0307,"13.0":0.04094,"14.0":0.05117,"15.0":0.02047,"16.0":0.08187,"17.0":0.63452,"18.0":0.71639},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01984,"4.2-4.3":0.03967,"4.4":0,"4.4.3-4.4.4":0.24466},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03018,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":67.42101},S:{"2.5":0},R:{_:"0"},M:{"0":0.28445},Q:{"10.4":0},O:{"0":0.01138},H:{"0":0.14004}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02874,"53":0,"54":0,"55":0.00479,"56":0,"57":0.00479,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00479,"67":0,"68":0.00958,"69":0,"70":0,"71":0,"72":0,"73":0.01916,"74":0.00479,"75":0,"76":0,"77":0,"78":0.01437,"79":0,"80":0,"81":0,"82":0,"83":0.00958,"84":0.00479,"85":0,"86":0.00479,"87":0,"88":0.00958,"89":0,"90":0.00479,"91":0.04311,"92":0,"93":0,"94":0,"95":0.00479,"96":0.00479,"97":0,"98":0.00479,"99":0.01437,"100":0.02874,"101":0.00479,"102":0.02395,"103":0.03353,"104":0.6706,"105":0.27303,"106":0.00479,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00479,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00479,"37":0,"38":0.0479,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00479,"48":0.00479,"49":0.05748,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00479,"56":0.00479,"57":0,"58":0.00479,"59":0,"60":0,"61":0,"62":0.00958,"63":0.00479,"64":0,"65":0.00958,"66":0,"67":0,"68":0,"69":0.00479,"70":0.03353,"71":0.00479,"72":0.00479,"73":0.00479,"74":0.00479,"75":0.00479,"76":0.00479,"77":0.00479,"78":0.00479,"79":0.02395,"80":0.0479,"81":0.01437,"83":0.00479,"84":0.00479,"85":0.00958,"86":0.30656,"87":0.01437,"88":0.00958,"89":0.02395,"90":0.00958,"91":0.03832,"92":0.04311,"93":0.03832,"94":0.02395,"95":0.01437,"96":0.03353,"97":0.01916,"98":0.04311,"99":0.04311,"100":0.03353,"101":0.03832,"102":0.06227,"103":0.29219,"104":2.7303,"105":12.63123,"106":0.30177,"107":0.00479,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00479,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00479,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00479,"86":0,"87":0,"88":0.00479,"89":0.15328,"90":1.25019,"91":0.03832,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00479,"15":0,"16":0,"17":0.00958,"18":0.00479,"79":0,"80":0,"81":0,"83":0,"84":0.00958,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00479,"92":0.00479,"93":0,"94":0,"95":0.00479,"96":0,"97":0,"98":0,"99":0,"100":0.00479,"101":0.00479,"102":0.00479,"103":0.00958,"104":0.18681,"105":1.23582},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00479,"14":0.01916,"15":0.00479,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00479,"13.1":0.03353,"14.1":0.04311,"15.1":0.01916,"15.2-15.3":0.00479,"15.4":0.03832,"15.5":0.07664,"15.6":0.20597,"16.0":0.0479,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02726,"6.0-6.1":0,"7.0-7.1":0.01185,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.032,"10.0-10.2":0,"10.3":0.03555,"11.0-11.2":0.00474,"11.3-11.4":0.01067,"12.0-12.1":0.00474,"12.2-12.5":0.42307,"13.0-13.1":0.00474,"13.2":0,"13.3":0.032,"13.4-13.7":0.10784,"14.0-14.4":0.20383,"14.5-14.8":0.59964,"15.0-15.1":0.08177,"15.2-15.3":0.14102,"15.4":0.22042,"15.5":0.74422,"15.6":6.96819,"16.0":1.93166,"16.1":0.01778},P:{"4":0.09218,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.19461,"8.2":0,"9.2":0.02048,"10.1":0.01024,"11.1-11.2":0.04097,"12.0":0.01024,"13.0":0.04097,"14.0":0.03073,"15.0":0.02048,"16.0":0.05121,"17.0":0.22533,"18.0":1.06521},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02236,"4.2-4.3":0.03726,"4.4":0,"4.4.3-4.4.4":0.24593},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03832,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.01042},H:{"0":0.14304},L:{"0":62.71455},S:{"2.5":0},R:{_:"0"},M:{"0":0.24487},Q:{"13.1":0}}; 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 31c09323dd4bc3..c7469cce4340f4 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01385,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00693,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.0277,"92":0,"93":0.00346,"94":0.00346,"95":0.01385,"96":0.00346,"97":0.00346,"98":0.00346,"99":0.00693,"100":0.00693,"101":0.00693,"102":0.01732,"103":0.25626,"104":0.04848,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00346,"35":0.00346,"36":0,"37":0,"38":0,"39":0,"40":0.00346,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02424,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00346,"57":0.00346,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00346,"64":0.00346,"65":0,"66":0.01385,"67":0.00346,"68":0.00346,"69":0,"70":0,"71":0.00346,"72":0,"73":0,"74":0.02078,"75":0,"76":0,"77":0,"78":0.00346,"79":0.0277,"80":0.01385,"81":0.02424,"83":0.01732,"84":0.02424,"85":0.0277,"86":0.04502,"87":0.03809,"88":0.01385,"89":0.04156,"90":0.02424,"91":0.01385,"92":0.01039,"93":0.00693,"94":0.01039,"95":0.01039,"96":0.0277,"97":0.01732,"98":0.02424,"99":0.02078,"100":0.03463,"101":0.03809,"102":0.13506,"103":2.06395,"104":5.24298,"105":0.01385,"106":0.00693,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.02078,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00346,"37":0,"38":0,"39":0,"40":0.01039,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00346,"51":0,"52":0,"53":0.01732,"54":0,"55":0,"56":0,"57":0.00346,"58":0.00346,"60":0.00346,"62":0.00346,"63":0.00346,"64":0.00346,"65":0.00346,"66":0.00346,"67":0.00346,"68":0.00693,"69":0,"70":0.00346,"71":0.00693,"72":0.00693,"73":0.00346,"74":0.00346,"75":0.00346,"76":0.00346,"77":0.00346,"78":0.00346,"79":0.01385,"80":0.00693,"81":0.00693,"82":0.00693,"83":0.00346,"84":0.00693,"85":0.00693,"86":0.00346,"87":0.01039,"88":0.01385,"89":0.04156,"90":0.00693,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01385,"79":0,"80":0,"81":0,"83":0.00346,"84":0.00693,"85":0.00346,"86":0,"87":0.00346,"88":0.00346,"89":0.00346,"90":0.00693,"91":0.00346,"92":0.04156,"93":0.00346,"94":0.00346,"95":0.00346,"96":0.00346,"97":0.00346,"98":0.00346,"99":0.00346,"100":0.00693,"101":0.01039,"102":0.01385,"103":0.187,"104":0.38786,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01039,"14":0.01385,"15":0.00693,_:"0","3.1":0,"3.2":0,"5.1":0.25973,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00346,"13.1":0.01385,"14.1":0.02424,"15.1":0.01039,"15.2-15.3":0.00693,"15.4":0.02424,"15.5":0.0658,"15.6":0.0935,"16.0":0.00346},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00093,"5.0-5.1":0.00093,"6.0-6.1":0,"7.0-7.1":0.03055,"8.1-8.4":0,"9.0-9.2":0.01018,"9.3":0.0611,"10.0-10.2":0,"10.3":0.0574,"11.0-11.2":0.0287,"11.3-11.4":0.01111,"12.0-12.1":0.01018,"12.2-12.5":0.70546,"13.0-13.1":0.03148,"13.2":0.01944,"13.3":0.02777,"13.4-13.7":0.13424,"14.0-14.4":0.37217,"14.5-14.8":0.62769,"15.0-15.1":0.29255,"15.2-15.3":0.5277,"15.4":0.52493,"15.5":2.06637,"15.6":3.5782,"16.0":0.12591},P:{"4":0.98986,"5.0-5.4":0.0303,"6.2-6.4":0.10101,"7.2-7.4":0.59594,"8.2":0.0101,"9.2":0.09091,"10.1":0.0202,"11.1-11.2":0.18181,"12.0":0.0606,"13.0":0.19191,"14.0":0.24241,"15.0":0.13131,"16.0":0.45453,"17.0":1.5959,"18.0":1.23227},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01469,"4.2-4.3":0.01921,"4.4":0,"4.4.3-4.4.4":0.14688},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.07965,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":61.55471},S:{"2.5":0.00654},R:{_:"0"},M:{"0":0.11767},Q:{"10.4":0},O:{"0":4.24251},H:{"0":0.30944}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01897,"53":0,"54":0,"55":0.00632,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00632,"92":0,"93":0,"94":0.00316,"95":0.00316,"96":0.00316,"97":0.00316,"98":0.00632,"99":0.00316,"100":0.00316,"101":0.00316,"102":0.00632,"103":0.01265,"104":0.19604,"105":0.06324,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00316,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0253,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00316,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00316,"65":0.00316,"66":0.00949,"67":0.00316,"68":0.00316,"69":0.00316,"70":0.00316,"71":0.00632,"72":0.00316,"73":0,"74":0.00632,"75":0,"76":0,"77":0,"78":0,"79":0.01897,"80":0.00632,"81":0.01265,"83":0.00949,"84":0.00632,"85":0.00949,"86":0.01897,"87":0.00632,"88":0.00316,"89":0.01581,"90":0.00316,"91":0.00316,"92":0.00316,"93":0.00316,"94":0.05692,"95":0.00316,"96":0.02213,"97":0.00949,"98":0.01581,"99":0.01265,"100":0.01897,"101":0.02213,"102":0.07273,"103":0.06956,"104":1.28693,"105":4.92007,"106":0.07589,"107":0.00316,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00316,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00316,"47":0,"48":0,"49":0,"50":0,"51":0.00316,"52":0,"53":0.01897,"54":0,"55":0,"56":0,"57":0.00316,"58":0.00316,"60":0.00316,"62":0.00949,"63":0.00316,"64":0.00632,"65":0.00316,"66":0,"67":0.00316,"68":0.00316,"69":0,"70":0,"71":0.00316,"72":0.00316,"73":0.00316,"74":0,"75":0.00316,"76":0,"77":0.00632,"78":0.00316,"79":0.00632,"80":0.00632,"81":0.00316,"82":0.00316,"83":0.00316,"84":0.00632,"85":0.00316,"86":0,"87":0.00316,"88":0.00316,"89":0.01581,"90":0.04427,"91":0.00316,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00316,"16":0,"17":0.00632,"18":0.01581,"79":0,"80":0,"81":0,"83":0.00316,"84":0.00632,"85":0,"86":0,"87":0,"88":0,"89":0.00316,"90":0.00316,"91":0,"92":0.00632,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00316,"99":0,"100":0.00316,"101":0.00316,"102":0.00316,"103":0.00632,"104":0.05375,"105":0.37944},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00316,"14":0.00632,"15":0.00316,_:"0","3.1":0,"3.2":0,"5.1":0.19288,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00632,"14.1":0.01581,"15.1":0.00632,"15.2-15.3":0.00316,"15.4":0.01581,"15.5":0.0253,"15.6":0.07905,"16.0":0.0253,"16.1":0.00316},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00166,"6.0-6.1":0.00166,"7.0-7.1":0.02817,"8.1-8.4":0,"9.0-9.2":0.00746,"9.3":0.05634,"10.0-10.2":0.00331,"10.3":0.06379,"11.0-11.2":0.04308,"11.3-11.4":0.00911,"12.0-12.1":0.0116,"12.2-12.5":0.67935,"13.0-13.1":0.00828,"13.2":0.00331,"13.3":0.0232,"13.4-13.7":0.06876,"14.0-14.4":0.2908,"14.5-14.8":0.51366,"15.0-15.1":0.16901,"15.2-15.3":0.30239,"15.4":0.28168,"15.5":0.78457,"15.6":3.36777,"16.0":1.29243,"16.1":0.01988},P:{"4":1.13821,"5.0-5.4":0.03022,"6.2-6.4":0.16116,"7.2-7.4":0.67487,"8.2":0.02015,"9.2":0.08058,"10.1":0.02015,"11.1-11.2":0.19138,"12.0":0.05036,"13.0":0.19138,"14.0":0.2216,"15.0":0.13094,"16.0":0.5137,"17.0":0.69501,"18.0":2.40736},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01163,"4.2-4.3":0.0299,"4.4":0,"4.4.3-4.4.4":0.21428},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0664,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":4.25324},H:{"0":0.27837},L:{"0":66.05478},S:{"2.5":0},R:{_:"0"},M:{"0":0.06154},Q:{"13.1":0.01368}}; 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 fb14ed9c39867f..8ef6cddcf1a1ff 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.06775,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.01936,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.00968,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.11615,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.13551,"103":5.9913,"104":0.69689,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00968,"57":0.00968,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.01936,"67":0.43556,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00968,"89":0,"90":0,"91":0,"92":0,"93":0.72593,"94":0,"95":0.1839,"96":0.01936,"97":0.01936,"98":0.01936,"99":0,"100":0,"101":0.00968,"102":0.24198,"103":18.28363,"104":41.39708,"105":0.01936,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.03872,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.05807,"18":3.52316,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00968,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.0484,"102":0.06775,"103":3.59091,"104":12.55366,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.07743,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.20326,"12.1":0.01936,"13.1":0.10647,"14.1":0.19358,"15.1":0,"15.2-15.3":0.02904,"15.4":0.00968,"15.5":0.30005,"15.6":1.57768,"16.0":0.00968},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.01315,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.94489,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.02663,"14.5-14.8":0.03978,"15.0-15.1":0,"15.2-15.3":0.05326,"15.4":0.2262,"15.5":1.19805,"15.6":0.78544,"16.0":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01018,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0.01018,"18.0":0.08141},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 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.27101,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":5.36824},S:{"2.5":0},R:{_:"0"},M:{"0":0.00835},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.03883,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00971,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00971,"66":0,"67":0,"68":0,"69":0,"70":0.02912,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00971,"79":0,"80":0,"81":0,"82":0,"83":0.00971,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.07766,"92":0.00971,"93":0.00971,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.03883,"102":0.00971,"103":0.46594,"104":10.72624,"105":2.34909,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01941,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.20385,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":1.16484,"94":0,"95":0.50476,"96":0.00971,"97":0.00971,"98":0.00971,"99":0.01941,"100":0,"101":0.02912,"102":0.07766,"103":0.38828,"104":13.8616,"105":41.09944,"106":0.21355,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.01941,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.03883,"18":2.86357,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.01941,"99":0,"100":0,"101":0,"102":0,"103":0.00971,"104":2.13554,"105":13.25976},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.05824,"15":0.05824,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.65037,"12.1":0.02912,"13.1":0.16502,"14.1":0.19414,"15.1":0,"15.2-15.3":0.01941,"15.4":0.04854,"15.5":0.15531,"15.6":1.53371,"16.0":0.26209,"16.1":0.03883},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.00866,"10.0-10.2":0,"10.3":0.03466,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.75113,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.03466,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0.00866,"15.4":0,"15.5":0.4144,"15.6":1.2695,"16.0":0.42307,"16.1":0.00866},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0.15558},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 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.35916,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":3.21974},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0}}; 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 650cdc5d9d7638..de0a47758921e3 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00457,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00457,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00457,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00914,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.09597,"103":0.62152,"104":0.14624,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00457,"40":0.00914,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00457,"50":0.00914,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.01371,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00457,"69":0,"70":0.00457,"71":0,"72":0,"73":0,"74":0.00457,"75":0,"76":0.01828,"77":0,"78":0,"79":0.06398,"80":0.03199,"81":0.01828,"83":0.10511,"84":0.00914,"85":0.00457,"86":0.00457,"87":0.00457,"88":0.01828,"89":0.00914,"90":0.02285,"91":0.00914,"92":0.00457,"93":0.09597,"94":0.00457,"95":0.05941,"96":0.00914,"97":0.00914,"98":0.01371,"99":0.08226,"100":0.05484,"101":0.02285,"102":0.06855,"103":2.52264,"104":5.92729,"105":0.05941,"106":0.00457,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00457,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.26506,"90":0.03199,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00457,"79":0,"80":0.00457,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00457,"93":0.10968,"94":0,"95":0,"96":0.05027,"97":0,"98":0,"99":0.00457,"100":0,"101":0.02285,"102":0.13253,"103":0.83174,"104":1.50353,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0.02285,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.08226,"15":0.01371,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00914,"13.1":0.03199,"14.1":0.10054,"15.1":0.00457,"15.2-15.3":0.00457,"15.4":0.33361,"15.5":0.16909,"15.6":0.48899,"16.0":0.00457},G:{"8":0.00766,"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.36444,"8.1-8.4":0.03216,"9.0-9.2":0,"9.3":0.05513,"10.0-10.2":0,"10.3":0.09034,"11.0-11.2":0.01072,"11.3-11.4":0.02756,"12.0-12.1":0.00306,"12.2-12.5":1.46542,"13.0-13.1":0.00919,"13.2":0.00306,"13.3":0.01072,"13.4-13.7":0.02144,"14.0-14.4":0.11944,"14.5-14.8":0.50838,"15.0-15.1":0.41038,"15.2-15.3":0.26644,"15.4":0.60791,"15.5":3.159,"15.6":8.01617,"16.0":0.11944},P:{"4":0.60378,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.16574,"8.2":0,"9.2":0.01184,"10.1":0,"11.1-11.2":0.09471,"12.0":0,"13.0":0.41436,"14.0":0.05919,"15.0":0.02368,"16.0":0.08287,"17.0":1.98892,"18.0":2.07179},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01438,"4.2-4.3":0.04313,"4.4":0,"4.4.3-4.4.4":1.45209},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.01828,"10":0,"11":0.01371,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":58.50386},S:{"2.5":0},R:{_:"0"},M:{"0":0.03258},Q:{"10.4":0},O:{"0":0.07059},H:{"0":1.01273}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00433,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00433,"101":0,"102":0,"103":0.01733,"104":0.38564,"105":0.15599,"106":0.00433,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.052,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.03033,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.03033,"71":0,"72":0.00433,"73":0,"74":0,"75":0.00433,"76":0.02167,"77":0,"78":0,"79":0.026,"80":0,"81":0.04333,"83":0.08666,"84":0,"85":0,"86":0,"87":0.00433,"88":0.01733,"89":0.01733,"90":0,"91":0.19499,"92":0,"93":0.039,"94":0,"95":0.00867,"96":0.02167,"97":0.00433,"98":0.04333,"99":0.013,"100":0.01733,"101":0.00867,"102":0.02167,"103":0.54163,"104":2.06251,"105":6.14419,"106":0.14732,"107":0.013,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00867,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.04333,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00867,"90":0.33797,"91":0.00433,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00433,"16":0.00867,"17":0,"18":0.00433,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00433,"101":0.00867,"102":0.013,"103":0.013,"104":0.4853,"105":1.7332},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00867,"13":0.013,"14":0.12132,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00433,"13.1":0.06066,"14.1":0.04766,"15.1":0.013,"15.2-15.3":0.013,"15.4":0.09966,"15.5":0.04333,"15.6":0.50696,"16.0":0.14732,"16.1":0.013},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.28668,"8.1-8.4":0.04376,"9.0-9.2":0,"9.3":0.01207,"10.0-10.2":0,"10.3":0.09053,"11.0-11.2":0,"11.3-11.4":0.0166,"12.0-12.1":0.00453,"12.2-12.5":1.53298,"13.0-13.1":0,"13.2":0.00151,"13.3":0.00453,"13.4-13.7":0.00604,"14.0-14.4":0.05734,"14.5-14.8":0.47981,"15.0-15.1":0.20369,"15.2-15.3":0.22934,"15.4":0.31384,"15.5":2.02939,"15.6":6.96178,"16.0":2.56653,"16.1":0.01056},P:{"4":0.28038,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.10514,"8.2":0,"9.2":0.01168,"10.1":0,"11.1-11.2":0.02336,"12.0":0,"13.0":0.16355,"14.0":0.05841,"15.0":0.01168,"16.0":0.09346,"17.0":0.30374,"18.0":6.92771},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.06912,"4.4":0,"4.4.3-4.4.4":0.93315},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00433,"11":0.013,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00567},O:{"0":0.03967},H:{"0":0.79941},L:{"0":56.51103},S:{"2.5":0},R:{_:"0"},M:{"0":0.03967},Q:{"13.1":0}}; 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 aa2ccc1bda2ca4..243f5569748161 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0.00579,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00579,"24":0,"25":0,"26":0,"27":0.1448,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00579,"44":0,"45":0.00579,"46":0,"47":0.00579,"48":0,"49":0,"50":0,"51":0,"52":0.27222,"53":0,"54":0,"55":0.00579,"56":0.00579,"57":0.00579,"58":0,"59":0,"60":0.01158,"61":0.01158,"62":0.00579,"63":0.00579,"64":0.00579,"65":0.00579,"66":0.00579,"67":0.01158,"68":0.02317,"69":0.00579,"70":0.00579,"71":0,"72":0.01158,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02896,"79":0,"80":0,"81":0.01158,"82":0,"83":0,"84":0.00579,"85":0,"86":0,"87":0,"88":0.01158,"89":0.00579,"90":0.01158,"91":0.05213,"92":0,"93":0.01158,"94":0.00579,"95":0.01158,"96":0.00579,"97":0.01158,"98":0.00579,"99":0.0753,"100":0.01738,"101":0.01738,"102":0.05792,"103":1.65072,"104":0.3649,"105":0.00579,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00579,"43":0,"44":0,"45":0,"46":0,"47":0.00579,"48":0,"49":0.2143,"50":0.00579,"51":0.01158,"52":0,"53":0,"54":0,"55":0.00579,"56":0.00579,"57":0,"58":0.00579,"59":0,"60":0,"61":0,"62":0,"63":0.01158,"64":0.01158,"65":0.01158,"66":0.00579,"67":0.01158,"68":0.01158,"69":0.02317,"70":0.01738,"71":0.00579,"72":0.00579,"73":0.00579,"74":0.01158,"75":0.02317,"76":0.02896,"77":0.01158,"78":0.01158,"79":0.03475,"80":0.01738,"81":0.01738,"83":0.04054,"84":0.02317,"85":0.01738,"86":0.04054,"87":0.05792,"88":0.05792,"89":0.03475,"90":0.03475,"91":0.0753,"92":0.05213,"93":0.04634,"94":0.04634,"95":0.03475,"96":0.09267,"97":0.19114,"98":0.09846,"99":0.10426,"100":0.17376,"101":0.15059,"102":0.2896,"103":4.75523,"104":13.89501,"105":0.05213,"106":0.00579,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00579,"54":0.00579,"55":0,"56":0,"57":0.00579,"58":0,"60":0,"62":0,"63":0.02896,"64":0.02317,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00579,"80":0,"81":0.00579,"82":0.00579,"83":0.00579,"84":0.01738,"85":0.04634,"86":0.00579,"87":0.00579,"88":0.01738,"89":1.04256,"90":0.10426,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00579,"13":0,"14":0,"15":0.00579,"16":0,"17":0,"18":0.00579,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00579,"90":0.00579,"91":0,"92":0.00579,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01158,"100":0,"101":0.01158,"102":0.00579,"103":0.32435,"104":0.92093,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00579,"14":0.01158,"15":0.00579,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00579,"12.1":0,"13.1":0.01738,"14.1":0.03475,"15.1":0.00579,"15.2-15.3":0.00579,"15.4":0.01158,"15.5":0.04054,"15.6":0.0695,"16.0":0},G:{"8":0.00037,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00074,"5.0-5.1":0.0037,"6.0-6.1":0.00148,"7.0-7.1":0.01368,"8.1-8.4":0.00185,"9.0-9.2":0.00591,"9.3":0.07837,"10.0-10.2":0.00074,"10.3":0.11312,"11.0-11.2":0.00628,"11.3-11.4":0.0085,"12.0-12.1":0.00628,"12.2-12.5":0.28649,"13.0-13.1":0.0159,"13.2":0.01072,"13.3":0.01627,"13.4-13.7":0.04473,"14.0-14.4":0.10979,"14.5-14.8":0.20627,"15.0-15.1":0.0573,"15.2-15.3":0.10646,"15.4":0.13936,"15.5":0.76262,"15.6":1.65833,"16.0":0.03882},P:{"4":0.11183,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.08133,"8.2":0,"9.2":0.01017,"10.1":0,"11.1-11.2":0.061,"12.0":0.02033,"13.0":0.0305,"14.0":0.02033,"15.0":0.0305,"16.0":0.07116,"17.0":0.40665,"18.0":0.30499},I:{"0":0,"3":0,"4":0.00542,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03926,"4.2-4.3":0.06905,"4.4":0,"4.4.3-4.4.4":0.60656},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00579,"10":0,"11":0.04054,"5.5":0},J:{"7":0,"10":0.00842},N:{"10":0,"11":0},L:{"0":65.04192},S:{"2.5":0.00421},R:{_:"0"},M:{"0":0.20198},Q:{"10.4":0},O:{"0":0.03787},H:{"0":0.40237}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00568,"27":0.1136,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00568,"44":0,"45":0.00568,"46":0,"47":0.00568,"48":0,"49":0,"50":0,"51":0,"52":0.26128,"53":0,"54":0,"55":0.00568,"56":0.00568,"57":0.00568,"58":0,"59":0,"60":0.01136,"61":0.01136,"62":0.00568,"63":0,"64":0.00568,"65":0.00568,"66":0.00568,"67":0.00568,"68":0.01704,"69":0.01136,"70":0.00568,"71":0,"72":0.01136,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03976,"79":0,"80":0.00568,"81":0.00568,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01136,"89":0.00568,"90":0.00568,"91":0.04544,"92":0,"93":0.00568,"94":0.00568,"95":0.00568,"96":0.00568,"97":0.00568,"98":0.01136,"99":0.06248,"100":0.01136,"101":0.00568,"102":0.02272,"103":0.09088,"104":1.38592,"105":0.4828,"106":0.00568,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00568,"43":0,"44":0,"45":0,"46":0,"47":0.00568,"48":0,"49":0.21584,"50":0.00568,"51":0.00568,"52":0,"53":0,"54":0,"55":0.00568,"56":0,"57":0,"58":0.00568,"59":0,"60":0,"61":0.00568,"62":0,"63":0.01704,"64":0.00568,"65":0.02272,"66":0.00568,"67":0.01136,"68":0.01704,"69":0.0284,"70":0.01704,"71":0.00568,"72":0.00568,"73":0.00568,"74":0.01136,"75":0.01704,"76":0.03408,"77":0.02272,"78":0.01136,"79":0.03408,"80":0.01704,"81":0.01704,"83":0.03976,"84":0.06248,"85":0.0568,"86":0.06248,"87":0.06248,"88":0.0568,"89":0.03408,"90":0.03408,"91":0.10224,"92":0.03408,"93":0.03976,"94":0.02272,"95":0.0284,"96":0.0852,"97":0.15904,"98":0.07952,"99":0.07384,"100":0.1136,"101":0.09656,"102":0.142,"103":0.5112,"104":3.68632,"105":14.15456,"106":0.27832,"107":0.00568,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00568,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01136,"64":0.05112,"65":0,"66":0,"67":0,"68":0.00568,"69":0,"70":0,"71":0.00568,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00568,"79":0.02272,"80":0,"81":0.00568,"82":0.00568,"83":0,"84":0.00568,"85":0.03976,"86":0.00568,"87":0.00568,"88":0.00568,"89":0.0852,"90":1.01104,"91":0.03976,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00568,"13":0,"14":0.00568,"15":0.00568,"16":0.00568,"17":0,"18":0.00568,"79":0,"80":0,"81":0,"83":0,"84":0.00568,"85":0,"86":0.00568,"87":0,"88":0,"89":0,"90":0.00568,"91":0,"92":0.00568,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00568,"100":0,"101":0.00568,"102":0.00568,"103":0.0284,"104":0.1704,"105":1.00536},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00568,"14":0.01136,"15":0.00568,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00568,"12.1":0.00568,"13.1":0.01704,"14.1":0.01704,"15.1":0.00568,"15.2-15.3":0.00568,"15.4":0.01136,"15.5":0.0284,"15.6":0.0852,"16.0":0.01136,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00757,"6.0-6.1":0.00303,"7.0-7.1":0.02044,"8.1-8.4":0.00265,"9.0-9.2":0.00454,"9.3":0.09274,"10.0-10.2":0.00076,"10.3":0.14044,"11.0-11.2":0.00681,"11.3-11.4":0.00795,"12.0-12.1":0.00681,"12.2-12.5":0.32781,"13.0-13.1":0.01552,"13.2":0.00492,"13.3":0.01514,"13.4-13.7":0.04732,"14.0-14.4":0.0882,"14.5-14.8":0.17564,"15.0-15.1":0.03899,"15.2-15.3":0.08366,"15.4":0.08669,"15.5":0.23091,"15.6":1.66746,"16.0":0.61475,"16.1":0.00606},P:{"4":0.10721,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.07505,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.06433,"12.0":0.01072,"13.0":0.03216,"14.0":0.02144,"15.0":0.02144,"16.0":0.08577,"17.0":0.22515,"18.0":0.53607},I:{"0":0,"3":0,"4":0.00431,"2.1":0,"2.2":0,"2.3":0.00287,"4.1":0.04449,"4.2-4.3":0.06601,"4.4":0,"4.4.3-4.4.4":0.60848},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00568,"10":0,"11":0.05112,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00864},O:{"0":0.03024},H:{"0":0.38445},L:{"0":65.8732},S:{"2.5":0.00864},R:{_:"0"},M:{"0":0.16848},Q:{"13.1":0}}; 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 2ce59217033567..34570149c395c1 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00333,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.08668,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00333,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.01334,"101":0,"102":0.06001,"103":0.1567,"104":0.04668,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.01334,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00333,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.02,"76":0.00333,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0.00333,"84":0,"85":0,"86":0,"87":0.01334,"88":0,"89":0,"90":0,"91":0.00333,"92":0,"93":0.05334,"94":0,"95":0,"96":0.00333,"97":0,"98":0.01,"99":0.02,"100":0.00333,"101":0.01,"102":0.04334,"103":1.24358,"104":3.39735,"105":0.00333,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00333,"89":0.14003,"90":0.00333,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00333,"79":0,"80":0,"81":0,"83":0.00333,"84":0.00333,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.01334,"102":0.00333,"103":0.60679,"104":1.11356,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01334,"15":0.01,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00333,"13.1":0.03001,"14.1":0.21338,"15.1":0.01,"15.2-15.3":0.08002,"15.4":0.09669,"15.5":1.04354,"15.6":1.30026,"16.0":0.00333},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.05309,"10.0-10.2":0,"10.3":0.13885,"11.0-11.2":0.00817,"11.3-11.4":0.04084,"12.0-12.1":0,"12.2-12.5":1.47021,"13.0-13.1":0,"13.2":0.00408,"13.3":0.00408,"13.4-13.7":0.1511,"14.0-14.4":0.61259,"14.5-14.8":2.36459,"15.0-15.1":0.2042,"15.2-15.3":0.50232,"15.4":0.64934,"15.5":10.58143,"15.6":23.60912,"16.0":0.44515},P:{"4":0.03115,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.12458,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.33222,"12.0":0,"13.0":0.10382,"14.0":0.38413,"15.0":0.05191,"16.0":0.13497,"17.0":1.2147,"18.0":1.86876},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.35005},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01334,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":42.02894},S:{"2.5":0},R:{_:"0"},M:{"0":0.10666},Q:{"10.4":0},O:{"0":0.00667},H:{"0":0.01262}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.19076,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00779,"92":0,"93":0,"94":0,"95":0.01947,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.06618,"103":0.03114,"104":0.21022,"105":0.15961,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00389,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.20244,"76":0.02336,"77":0,"78":0,"79":0,"80":0,"81":0.00389,"83":0,"84":0,"85":0.00389,"86":0,"87":0.00389,"88":0,"89":0.02725,"90":0,"91":0.00779,"92":0,"93":0.00389,"94":0,"95":0.00389,"96":0.00779,"97":0,"98":0.01168,"99":0.00779,"100":0.01557,"101":0.00389,"102":0.03114,"103":0.21412,"104":1.24187,"105":5.36066,"106":0.10511,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.09733,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.05061,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.01557,"99":0,"100":0,"101":0,"102":0,"103":0.01557,"104":0.27251,"105":1.56499},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.02725,"15":0.00779,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00779,"13.1":0.08565,"14.1":0.46716,"15.1":0.02725,"15.2-15.3":0.04672,"15.4":0.18686,"15.5":1.24187,"15.6":2.14115,"16.0":0.12458,"16.1":0.00389},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.01962,"10.0-10.2":0.00392,"10.3":0.04315,"11.0-11.2":0,"11.3-11.4":0.16477,"12.0-12.1":0,"12.2-12.5":0.21185,"13.0-13.1":0.00392,"13.2":0,"13.3":0.06669,"13.4-13.7":0.14908,"14.0-14.4":0.20792,"14.5-14.8":1.42409,"15.0-15.1":0.19223,"15.2-15.3":0.23931,"15.4":0.39623,"15.5":2.16948,"15.6":27.38331,"16.0":4.89604,"16.1":0.04315},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.21459,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.35766,"12.0":0,"13.0":0.06131,"14.0":0.29634,"15.0":0.03066,"16.0":0.08175,"17.0":0.18394,"18.0":3.40285},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.17519},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01947,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.00611},H:{"0":0.02891},L:{"0":38.77963},S:{"2.5":0},R:{_:"0"},M:{"0":0.09771},Q:{"13.1":0}}; 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 0f5375d2945261..3d463c13576bae 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00535,"56":0.00535,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00535,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00535,"87":0,"88":0,"89":0,"90":0,"91":0.00535,"92":0,"93":0.00535,"94":0.05346,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00535,"101":0.00535,"102":0.02673,"103":1.267,"104":0.24057,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01604,"69":0,"70":0,"71":0,"72":0.01069,"73":0,"74":0,"75":0.02138,"76":0.06415,"77":0,"78":0,"79":0.03742,"80":0.00535,"81":0.00535,"83":0.02673,"84":0.00535,"85":0.00535,"86":0.00535,"87":0.03742,"88":0.01069,"89":0.01069,"90":0,"91":0.01069,"92":0.05881,"93":0.02138,"94":0,"95":0.02673,"96":0.00535,"97":0.01069,"98":0.03208,"99":0.09623,"100":0.04811,"101":0.05881,"102":0.34749,"103":3.98812,"104":8.83694,"105":0.01069,"106":0.00535,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00535,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.27799,"90":0.02138,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00535,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00535,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01069,"100":0,"101":0.10692,"102":0.04277,"103":1.39531,"104":4.37837,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00535,"14":0.1978,"15":0.01604,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01069,"10.1":0.00535,"11.1":0.00535,"12.1":0.01604,"13.1":0.17642,"14.1":0.51856,"15.1":0.20315,"15.2-15.3":0.00535,"15.4":0.22988,"15.5":0.75913,"15.6":2.05286,"16.0":0.01069},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.03309,"10.0-10.2":0,"10.3":0.16959,"11.0-11.2":0.00827,"11.3-11.4":0.12822,"12.0-12.1":0.00827,"12.2-12.5":0.26059,"13.0-13.1":0.00414,"13.2":0.05791,"13.3":0.02895,"13.4-13.7":0.05791,"14.0-14.4":0.6039,"14.5-14.8":2.37836,"15.0-15.1":0.45499,"15.2-15.3":0.5584,"15.4":1.17884,"15.5":10.51029,"15.6":24.62741,"16.0":0.28127},P:{"4":0.03145,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.0629,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.17822,"14.0":0.05242,"15.0":0,"16.0":0.08387,"17.0":1.33144,"18.0":1.24757},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.61995},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.1283,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":26.59732},S:{"2.5":0},R:{_:"0"},M:{"0":0.25132},Q:{"10.4":0},O:{"0":0.03723},H:{"0":0.04406}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02543,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00509,"92":0,"93":0,"94":0.0356,"95":0.00509,"96":0,"97":0.00509,"98":0,"99":0,"100":0,"101":0.00509,"102":0.00509,"103":0.05594,"104":1.23057,"105":0.31527,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.02034,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.01017,"70":0,"71":0,"72":0.00509,"73":0,"74":0,"75":0,"76":0.08645,"77":0,"78":0,"79":0.02034,"80":0.01526,"81":0.00509,"83":0.01526,"84":0,"85":0,"86":0,"87":0.01017,"88":0.01526,"89":0,"90":0.00509,"91":0.00509,"92":0,"93":0.02034,"94":0.00509,"95":0.0356,"96":0.00509,"97":0,"98":0.01017,"99":0.07119,"100":0.02543,"101":0.0356,"102":0.10679,"103":0.82886,"104":3.21881,"105":8.23262,"106":0.1017,"107":0.01017,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.03051,"90":0.14747,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00509,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01017,"79":0,"80":0,"81":0,"83":0.00509,"84":0,"85":0,"86":0.00509,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00509,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01017,"100":0,"101":0.03051,"102":0.01526,"103":0.09153,"104":0.93056,"105":4.14428},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02543,"14":0.09153,"15":0.01526,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01017,"12.1":0.02034,"13.1":0.09662,"14.1":0.4424,"15.1":0.13221,"15.2-15.3":0.02034,"15.4":0.19323,"15.5":0.29493,"15.6":2.5425,"16.0":0.11187,"16.1":0},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.03068,"10.0-10.2":0,"10.3":0.22356,"11.0-11.2":0,"11.3-11.4":0.19726,"12.0-12.1":0.0263,"12.2-12.5":0.36383,"13.0-13.1":0.01315,"13.2":0.34192,"13.3":0.01753,"13.4-13.7":0.06575,"14.0-14.4":0.3989,"14.5-14.8":1.98575,"15.0-15.1":0.22794,"15.2-15.3":0.4252,"15.4":0.55671,"15.5":3.54629,"15.6":29.59331,"16.0":4.50628,"16.1":0.03945},P:{"4":0.01039,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.05197,"10.1":0,"11.1-11.2":0.01039,"12.0":0,"13.0":0.14553,"14.0":0.10395,"15.0":0.02079,"16.0":0.30145,"17.0":0.55093,"18.0":2.42202},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.62952},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.14238,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.05119},L:{"0":26.2843},S:{"2.5":0},R:{_:"0"},M:{"0":0.51116},Q:{"13.1":0}}; 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 ec3e170d804e4c..9519da590e2e30 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01381,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00345,"69":0,"70":0.00345,"71":0,"72":0.00345,"73":0.00345,"74":0.00345,"75":0.00345,"76":0.00345,"77":0.00345,"78":0.0069,"79":0.0069,"80":0.0069,"81":0.0069,"82":0.00345,"83":0.00345,"84":0.0069,"85":0,"86":0,"87":0,"88":0.00345,"89":0,"90":0,"91":0.00345,"92":0,"93":0,"94":0,"95":0.00345,"96":0,"97":0.00345,"98":0,"99":0.00345,"100":0,"101":0.00345,"102":0.0069,"103":0.13808,"104":0.02416,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00345,"34":0,"35":0,"36":0,"37":0,"38":0.0069,"39":0,"40":0,"41":0.0069,"42":0.00345,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00345,"49":0.0069,"50":0,"51":0,"52":0,"53":0.00345,"54":0,"55":0,"56":0.00345,"57":0.0069,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00345,"64":0,"65":0,"66":0,"67":0,"68":0.01036,"69":0.0069,"70":0.01381,"71":0.0069,"72":0.01036,"73":0.00345,"74":0.01381,"75":0.01036,"76":0.01381,"77":0.01036,"78":0.01726,"79":0.03452,"80":0.02071,"81":0.02071,"83":0.04142,"84":0.06904,"85":0.07249,"86":0.08975,"87":0.08975,"88":0.01726,"89":0.02416,"90":0.02071,"91":0.01036,"92":0.01381,"93":0.00345,"94":0.0069,"95":0.0069,"96":0.03452,"97":0.01381,"98":0.01036,"99":0.01726,"100":0.04142,"101":0.03452,"102":0.1726,"103":1.73636,"104":4.32881,"105":0.01381,"106":0.00345,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00345,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00345,"37":0.01381,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00345,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00345,"55":0.00345,"56":0,"57":0,"58":0,"60":0.00345,"62":0,"63":0.00345,"64":0.00345,"65":0,"66":0,"67":0,"68":0.00345,"69":0.00345,"70":0.00345,"71":0.00345,"72":0.00345,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00345,"86":0,"87":0,"88":0.00345,"89":0.12772,"90":0.01036,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00345,"13":0,"14":0.00345,"15":0.00345,"16":0.00345,"17":0.00345,"18":0.01036,"79":0,"80":0.00345,"81":0.00345,"83":0.00345,"84":0.0069,"85":0.0069,"86":0.0069,"87":0.00345,"88":0.00345,"89":0.00345,"90":0.00345,"91":0,"92":0.00345,"93":0,"94":0.00345,"95":0,"96":0.00345,"97":0,"98":0,"99":0.0069,"100":0.0069,"101":0.00345,"102":0.00345,"103":0.15534,"104":0.39698,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01036,"14":0.02071,"15":0.0069,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.05868,"10.1":0,"11.1":0,"12.1":0.00345,"13.1":0.02416,"14.1":0.05178,"15.1":0.01036,"15.2-15.3":0.01036,"15.4":0.02416,"15.5":0.07594,"15.6":0.10701,"16.0":0.00345},G:{"8":0.0046,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00921,"7.0-7.1":0.02072,"8.1-8.4":0.01151,"9.0-9.2":0.02072,"9.3":0.11051,"10.0-10.2":0.03223,"10.3":0.2003,"11.0-11.2":0.0967,"11.3-11.4":0.099,"12.0-12.1":0.09209,"12.2-12.5":1.78659,"13.0-13.1":0.05756,"13.2":0.03684,"13.3":0.17728,"13.4-13.7":0.73444,"14.0-14.4":1.58399,"14.5-14.8":3.06437,"15.0-15.1":0.73904,"15.2-15.3":1.0959,"15.4":1.2916,"15.5":4.46648,"15.6":7.11183,"16.0":0.16807},P:{"4":0.25777,"5.0-5.4":0.01031,"6.2-6.4":0,"7.2-7.4":0.08249,"8.2":0,"9.2":0.03093,"10.1":0.02062,"11.1-11.2":0.0928,"12.0":0.03093,"13.0":0.08249,"14.0":0.07217,"15.0":0.06186,"16.0":0.15466,"17.0":0.92796,"18.0":0.93827},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00362,"4.2-4.3":0.00723,"4.4":0,"4.4.3-4.4.4":0.08677},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00364,"9":0.00364,"10":0,"11":0.0583,"5.5":0},J:{"7":0,"10":0.00655},N:{"10":0,"11":0},L:{"0":57.84571},S:{"2.5":0},R:{_:"0"},M:{"0":0.09167},Q:{"10.4":0.00655},O:{"0":1.13935},H:{"0":0.32856}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01319,"53":0,"54":0,"55":0.0033,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0033,"69":0,"70":0.0033,"71":0,"72":0.0033,"73":0,"74":0.0033,"75":0,"76":0,"77":0.0033,"78":0.00989,"79":0.00659,"80":0.00659,"81":0.00989,"82":0.00659,"83":0.0033,"84":0.0033,"85":0,"86":0,"87":0,"88":0.0033,"89":0,"90":0,"91":0.0033,"92":0,"93":0,"94":0.05605,"95":0,"96":0,"97":0.00659,"98":0,"99":0,"100":0,"101":0,"102":0.0033,"103":0.00659,"104":0.12199,"105":0.04286,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0033,"29":0,"30":0,"31":0,"32":0,"33":0.0033,"34":0,"35":0,"36":0,"37":0,"38":0.00659,"39":0,"40":0,"41":0.0033,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.0033,"48":0,"49":0.00659,"50":0,"51":0,"52":0,"53":0.0033,"54":0,"55":0,"56":0.0033,"57":0.00659,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00989,"69":0.00659,"70":0.01319,"71":0.00659,"72":0.00989,"73":0.0033,"74":0.00989,"75":0.00989,"76":0.00989,"77":0.03627,"78":0.01649,"79":0.03297,"80":0.01978,"81":0.01978,"83":0.03956,"84":0.07583,"85":0.08243,"86":0.09891,"87":0.08902,"88":0.01649,"89":0.01978,"90":0.01649,"91":0.00989,"92":0.00989,"93":0.0033,"94":0.0033,"95":0.00659,"96":0.03956,"97":0.01319,"98":0.00989,"99":0.01319,"100":0.03956,"101":0.01978,"102":0.08902,"103":0.08572,"104":1.02207,"105":4.37182,"106":0.06924,"107":0.0033,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0033,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.0033,"37":0.01319,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0033,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.0033,"55":0.0033,"56":0,"57":0,"58":0,"60":0.0033,"62":0,"63":0,"64":0.00659,"65":0,"66":0,"67":0,"68":0.0033,"69":0.0033,"70":0.0033,"71":0.00989,"72":0.00659,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00989,"90":0.1154,"91":0.00659,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.0033,"13":0,"14":0.0033,"15":0.0033,"16":0.0033,"17":0.0033,"18":0.01319,"79":0,"80":0.0033,"81":0.0033,"83":0.0033,"84":0.00659,"85":0.00659,"86":0.0033,"87":0.00659,"88":0.0033,"89":0.0033,"90":0.0033,"91":0,"92":0.0033,"93":0,"94":0,"95":0,"96":0.0033,"97":0,"98":0,"99":0.00659,"100":0.00659,"101":0.0033,"102":0.0033,"103":0.00659,"104":0.06594,"105":0.45828},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00659,"14":0.01649,"15":0.00659,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.05275,"10.1":0,"11.1":0.0033,"12.1":0.0033,"13.1":0.02638,"14.1":0.04286,"15.1":0.00989,"15.2-15.3":0.00989,"15.4":0.01978,"15.5":0.03627,"15.6":0.13518,"16.0":0.01649,"16.1":0.0033},G:{"8":0.00478,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00478,"7.0-7.1":0.01912,"8.1-8.4":0.01195,"9.0-9.2":0.0239,"9.3":0.11232,"10.0-10.2":0.03346,"10.3":0.19358,"11.0-11.2":0.07648,"11.3-11.4":0.09082,"12.0-12.1":0.10038,"12.2-12.5":1.73028,"13.0-13.1":0.05258,"13.2":0.03585,"13.3":0.16968,"13.4-13.7":0.64049,"14.0-14.4":1.49607,"14.5-14.8":2.87025,"15.0-15.1":0.70502,"15.2-15.3":0.9679,"15.4":1.07784,"15.5":2.18913,"15.6":9.48545,"16.0":1.46739,"16.1":0.03107},P:{"4":0.26396,"5.0-5.4":0.01015,"6.2-6.4":0,"7.2-7.4":0.08122,"8.2":0,"9.2":0.03046,"10.1":0.0203,"11.1-11.2":0.09137,"12.0":0.03046,"13.0":0.07107,"14.0":0.07107,"15.0":0.06091,"16.0":0.14213,"17.0":0.28427,"18.0":1.61422},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00516,"4.2-4.3":0.01033,"4.4":0,"4.4.3-4.4.4":0.111},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00346,"7":0,"8":0.00346,"9":0.00346,"10":0,"11":0.05885,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.0067},O:{"0":1.1127},H:{"0":0.33634},L:{"0":57.662},S:{"2.5":0},R:{_:"0"},M:{"0":0.08044},Q:{"13.1":0.0067}}; 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 6406ea0999a9a5..228354dad9f501 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00425,"31":0,"32":0,"33":0,"34":0.00425,"35":0,"36":0,"37":0,"38":0.12322,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.05524,"69":0,"70":0,"71":0,"72":0.00425,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.02125,"92":0.0085,"93":0,"94":0,"95":0.00425,"96":0,"97":0,"98":0,"99":0.00425,"100":0.0085,"101":0.0085,"102":0.16571,"103":0.59911,"104":0.2082,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00425,"40":0.02125,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.01275,"59":0.01275,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.02125,"71":0,"72":0.02549,"73":0,"74":0.03824,"75":0,"76":0,"77":0,"78":0.00425,"79":0,"80":0,"81":0.14022,"83":0.0085,"84":0.04249,"85":0.00425,"86":0.00425,"87":0.01275,"88":0.08073,"89":0.00425,"90":0.0085,"91":0.01275,"92":0.00425,"93":0.00425,"94":0.00425,"95":0.0085,"96":0.02974,"97":0,"98":0.05099,"99":0.03824,"100":0.03399,"101":0.26344,"102":0.12747,"103":3.47993,"104":6.365,"105":0.0085,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0085,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00425,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.02974,"90":0.017,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.03399,"13":0.00425,"14":0.0085,"15":0.01275,"16":0,"17":0.017,"18":0.05524,"79":0,"80":0,"81":0,"83":0,"84":0.00425,"85":0.05099,"86":0,"87":0,"88":0,"89":0.04249,"90":0.0085,"91":0,"92":0.00425,"93":0.00425,"94":0,"95":0,"96":0,"97":0,"98":0.00425,"99":0.00425,"100":0.01275,"101":0.02125,"102":0.04249,"103":0.52688,"104":0.99852,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0085,"14":0.017,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00425,"12.1":0.01275,"13.1":0.11047,"14.1":0.03824,"15.1":0,"15.2-15.3":0.02974,"15.4":0.017,"15.5":0.18696,"15.6":0.23794,"16.0":0},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.0062,"8.1-8.4":0,"9.0-9.2":0.0124,"9.3":0.0248,"10.0-10.2":0.00709,"10.3":0.16743,"11.0-11.2":0,"11.3-11.4":0.00354,"12.0-12.1":0.00354,"12.2-12.5":0.41371,"13.0-13.1":0.01329,"13.2":0.0186,"13.3":0.03189,"13.4-13.7":0.00974,"14.0-14.4":0.20198,"14.5-14.8":0.94789,"15.0-15.1":0.16389,"15.2-15.3":2.76749,"15.4":0.23299,"15.5":1.78682,"15.6":2.0455,"16.0":0.00354},P:{"4":0.12307,"5.0-5.4":0.03077,"6.2-6.4":0,"7.2-7.4":0.63587,"8.2":0.03077,"9.2":0,"10.1":0,"11.1-11.2":0.0923,"12.0":0,"13.0":0.04102,"14.0":0.27691,"15.0":0.14358,"16.0":0.20512,"17.0":1.83582,"18.0":0.27691},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.19047},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02125,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":68.92302},S:{"2.5":0},R:{_:"0"},M:{"0":0.16103},Q:{"10.4":0},O:{"0":1.18471},H:{"0":0.07078}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.0215,"31":0,"32":0,"33":0,"34":0.0129,"35":0,"36":0,"37":0,"38":0.08598,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0129,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0172,"69":0.0215,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.0043,"87":0,"88":0,"89":0.03869,"90":0,"91":0.0086,"92":0,"93":0,"94":0,"95":0.0043,"96":0.0043,"97":0,"98":0.0043,"99":0,"100":0.08168,"101":0.0043,"102":0.0043,"103":0.07738,"104":0.65775,"105":0.25364,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.0086,"40":0.0043,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.0129,"60":0,"61":0,"62":0,"63":0.0043,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.04299,"70":0,"71":0,"72":0.03009,"73":0,"74":0.0086,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.18916,"83":0.0043,"84":0.03869,"85":0.0086,"86":0.0043,"87":0.0043,"88":0.06019,"89":0.0043,"90":0.0043,"91":0.0129,"92":0.03009,"93":0,"94":0.0043,"95":0.0043,"96":0.0215,"97":0.0043,"98":0.06449,"99":0.0129,"100":0.03439,"101":0.30523,"102":0.0172,"103":0.15906,"104":2.63529,"105":6.63766,"106":0.09458,"107":0.04729,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.0043,"62":0,"63":0,"64":0.0043,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.0043,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.0172,"90":0.07738,"91":0.0086,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.0043,"13":0,"14":0.0043,"15":0.0129,"16":0.0043,"17":0.02579,"18":0.05159,"79":0,"80":0,"81":0,"83":0,"84":0.0129,"85":0.04299,"86":0,"87":0,"88":0,"89":0.0172,"90":0.0086,"91":0.0043,"92":0.0043,"93":0.0086,"94":0.0043,"95":0,"96":0.0043,"97":0,"98":0.0043,"99":0.0043,"100":0.0129,"101":0.0172,"102":0.03009,"103":0.09458,"104":0.36542,"105":1.39288},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0043,"14":0.0043,"15":0.0043,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.0129,"12.1":0.0043,"13.1":0.12037,"14.1":0.03439,"15.1":0.0129,"15.2-15.3":0.0129,"15.4":0.03869,"15.5":0.03869,"15.6":0.19775,"16.0":0.02579,"16.1":0},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.00661,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00661,"10.0-10.2":0,"10.3":0.0033,"11.0-11.2":0.00661,"11.3-11.4":0.00991,"12.0-12.1":0.02709,"12.2-12.5":0.3442,"13.0-13.1":0.0033,"13.2":0.01321,"13.3":0.01321,"13.4-13.7":0.02312,"14.0-14.4":0.10835,"14.5-14.8":0.54042,"15.0-15.1":0.13477,"15.2-15.3":0.75646,"15.4":0.05748,"15.5":1.38541,"15.6":2.88577,"16.0":0.24643,"16.1":0},P:{"4":0.09113,"5.0-5.4":0,"6.2-6.4":0.02025,"7.2-7.4":0.18227,"8.2":0,"9.2":0.01013,"10.1":0,"11.1-11.2":0.09113,"12.0":0.01013,"13.0":0.11139,"14.0":0.14176,"15.0":0.2734,"16.0":0.11139,"17.0":0.17214,"18.0":0.91135},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.13738},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03009,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.62141},H:{"0":0.24828},L:{"0":73.97683},S:{"2.5":0.0057},R:{_:"0"},M:{"0":0.19383},Q:{"13.1":0}}; 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 50cd2226c42334..7f0128652a5546 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01802,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01802,"61":0.05855,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.13512,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.32429,"92":0.15314,"93":0,"94":0.2297,"95":0,"96":0,"97":0,"98":0.03603,"99":0,"100":0,"101":0,"102":0.13512,"103":1.42326,"104":0.24772,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.01802,"87":0,"88":0,"89":0,"90":0,"91":0.01802,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.03603,"101":0,"102":0,"103":4.15719,"104":6.68394,"105":0,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.05855,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01802,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.41887,"104":0.3423,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.07657,"15":0.01802,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.05855,"13.1":0.51346,"14.1":0.5675,"15.1":0.28375,"15.2-15.3":0.59002,"15.4":0.01802,"15.5":0.41887,"15.6":0.18917,"16.0":0},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.11639,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.40737,"12.2-12.5":0.29098,"13.0-13.1":0,"13.2":0.11639,"13.3":0,"13.4-13.7":1.04976,"14.0-14.4":0.34917,"14.5-14.8":1.10796,"15.0-15.1":1.04976,"15.2-15.3":6.70371,"15.4":5.94492,"15.5":2.79788,"15.6":2.3905,"16.0":0.0582},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0.13274,"15.0":0,"16.0":0,"17.0":0.68414,"18.0":1.12321},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.10252},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":51.90594},S:{"2.5":0},R:{_:"0"},M:{"0":0.42869},Q:{"10.4":0},O:{"0":0.30228},H:{"0":0.04163}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.33286,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.03377,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.29909,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.3618,"92":0,"93":0,"94":0.26532,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.06754,"104":3.77237,"105":0.66089,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03377,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.1013,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.29909,"92":0,"93":0,"94":0,"95":0,"96":0.1013,"97":0,"98":0.1013,"99":0.03377,"100":0,"101":0,"102":0,"103":0.33286,"104":2.24798,"105":5.69232,"106":0.1013,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.03377,"91":0.06754,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.23155,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.33286,"104":0.26532,"105":1.35554},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.1013,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.42934,"13.1":0,"14.1":0.53064,"15.1":0.76219,"15.2-15.3":0.79596,"15.4":0.1013,"15.5":0.99374,"15.6":0.23155,"16.0":0.03377,"16.1":0},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.18884,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":1.03498,"12.2-12.5":0.94056,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.09442,"14.5-14.8":1.03498,"15.0-15.1":1.50526,"15.2-15.3":6.68016,"15.4":1.31642,"15.5":2.06996,"15.6":2.82168,"16.0":0.47028,"16.1":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.21946,"11.1-11.2":0,"12.0":0,"13.0":0.1463,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":4.58767},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.1013},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":49.79593},S:{"2.5":0},R:{_:"0"},M:{"0":0.28468},Q:{"13.1":0}}; 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 938393fccfbf8b..552016c31c86ba 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00393,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01179,"92":0,"93":0,"94":0,"95":0.00393,"96":0.01179,"97":0.00393,"98":0,"99":0,"100":0.00393,"101":0,"102":0.01966,"103":0.36558,"104":0.0511,"105":0.00393,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00786,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01572,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00393,"68":0,"69":0.00393,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00786,"77":0,"78":0,"79":0.00393,"80":0.00393,"81":0.00786,"83":0.00393,"84":0.00393,"85":0.00393,"86":0.00393,"87":0.02359,"88":0.01572,"89":0.00393,"90":0.01179,"91":0.03145,"92":0.00393,"93":0.08648,"94":0.02359,"95":0.06683,"96":0.00393,"97":0.00393,"98":0.00393,"99":0.02752,"100":0.00786,"101":0.03538,"102":0.03538,"103":2.27212,"104":5.07885,"105":0.03145,"106":0.01179,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00393,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00393,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.02752,"64":0.00393,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00393,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00786,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00393,"89":0.08255,"90":0.00393,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00786,"16":0,"17":0.00393,"18":0.03931,"79":0,"80":0,"81":0,"83":0,"84":0.01179,"85":0.00393,"86":0.00393,"87":0,"88":0,"89":0,"90":0.00393,"91":0,"92":0.00786,"93":0,"94":0.00786,"95":0.00393,"96":0.01179,"97":0.00786,"98":0.00393,"99":0.00393,"100":0.00786,"101":0.03145,"102":0.03145,"103":0.71544,"104":1.25399,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01179,"14":0.02752,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00393,"12.1":0.06683,"13.1":0.00393,"14.1":0.01572,"15.1":0.00393,"15.2-15.3":0.00393,"15.4":0.01179,"15.5":0.12186,"15.6":0.114,"16.0":0},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.00866,"10.0-10.2":0.02597,"10.3":0.01979,"11.0-11.2":0.00495,"11.3-11.4":0.09895,"12.0-12.1":0.05195,"12.2-12.5":1.06614,"13.0-13.1":0.08781,"13.2":0.01361,"13.3":0.20037,"13.4-13.7":0.0705,"14.0-14.4":0.83856,"14.5-14.8":1.28629,"15.0-15.1":0.31539,"15.2-15.3":1.03398,"15.4":0.63449,"15.5":2.95353,"15.6":3.59791,"16.0":0.05689},P:{"4":0.38651,"5.0-5.4":0.01017,"6.2-6.4":0,"7.2-7.4":0.74251,"8.2":0,"9.2":0.06103,"10.1":0.01017,"11.1-11.2":0.17291,"12.0":0.13223,"13.0":0.30514,"14.0":0.2136,"15.0":0.19326,"16.0":1.04766,"17.0":0.96629,"18.0":0.4984},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00317,"4.4":0,"4.4.3-4.4.4":0.06973},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.07469,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":67.69124},S:{"2.5":0.00607},R:{_:"0"},M:{"0":0.05462},Q:{"10.4":0.05462},O:{"0":0.30952},H:{"0":1.05722}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.0078,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.0039,"92":0,"93":0,"94":0,"95":0,"96":0.0039,"97":0,"98":0,"99":0,"100":0.0078,"101":0,"102":0,"103":0.01951,"104":0.46044,"105":0.08975,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.0039,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0039,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.0039,"63":0.0039,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.0039,"71":0,"72":0,"73":0,"74":0.0039,"75":0,"76":0.05853,"77":0,"78":0,"79":0.0039,"80":0.01171,"81":0.03512,"83":0.0078,"84":0,"85":0.03512,"86":0.0039,"87":0.03122,"88":0.03512,"89":0.07414,"90":0.0039,"91":0.0039,"92":0.01561,"93":0.01951,"94":0.04682,"95":0.04682,"96":0.05853,"97":0.0039,"98":0.01561,"99":0.01561,"100":0.0078,"101":0.02341,"102":0.06633,"103":0.11316,"104":1.62713,"105":5.42768,"106":0.03902,"107":0.01561,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01171,"64":0.03512,"65":0.0039,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.0039,"90":0.11316,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.0078,"15":0.01171,"16":0.0039,"17":0.0078,"18":0.02731,"79":0,"80":0,"81":0,"83":0,"84":0.0039,"85":0,"86":0,"87":0,"88":0,"89":0.0039,"90":0.0039,"91":0,"92":0.01171,"93":0,"94":0.01561,"95":0,"96":0.0039,"97":0.0039,"98":0.0039,"99":0.0039,"100":0.0039,"101":0.01951,"102":0.0039,"103":0.05463,"104":0.37459,"105":1.65055},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01561,"12":0,"13":0.05853,"14":0.03122,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.02731,"14.1":0.01561,"15.1":0,"15.2-15.3":0.0039,"15.4":0.07414,"15.5":0.01171,"15.6":0.15608,"16.0":0.01171,"16.1":0},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.10569,"10.0-10.2":0,"10.3":0.10569,"11.0-11.2":0.02114,"11.3-11.4":0.0572,"12.0-12.1":0.03606,"12.2-12.5":0.75101,"13.0-13.1":0.02114,"13.2":0.04228,"13.3":0.15791,"13.4-13.7":0.17656,"14.0-14.4":0.93876,"14.5-14.8":1.84271,"15.0-15.1":0.24992,"15.2-15.3":0.61299,"15.4":0.42151,"15.5":1.86882,"15.6":4.34068,"16.0":0.53963,"16.1":0},P:{"4":0.38821,"5.0-5.4":0.01022,"6.2-6.4":0.01022,"7.2-7.4":0.41886,"8.2":0,"9.2":0.04086,"10.1":0.02043,"11.1-11.2":0.2554,"12.0":0.07151,"13.0":0.23497,"14.0":0.73556,"15.0":0.18389,"16.0":0.92967,"17.0":0.41886,"18.0":1.78782},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00138,"4.4":0,"4.4.3-4.4.4":0.05935},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05853,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.45125},H:{"0":0.49649},L:{"0":67.16457},S:{"2.5":0.01829},R:{_:"0"},M:{"0":0.12196},Q:{"13.1":0.01829}}; 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 5479211a21eb31..2d8a05fdd8c4ef 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:{"2":0,"3":0.00916,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00229,"48":0,"49":0,"50":0.00229,"51":0,"52":0.00458,"53":0.00229,"54":0,"55":0.00229,"56":0,"57":0.00229,"58":0,"59":0,"60":0.00229,"61":0.00229,"62":0,"63":0,"64":0.00229,"65":0,"66":0,"67":0,"68":0.00229,"69":0,"70":0,"71":0,"72":0.00916,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00229,"80":0.00229,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00916,"88":0.00229,"89":0.01146,"90":0,"91":0.00229,"92":0,"93":0.00229,"94":0.00229,"95":0.00229,"96":0,"97":0.00458,"98":0.00229,"99":0.00229,"100":0.00687,"101":0.00687,"102":0.02291,"103":0.47195,"104":0.07331,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00229,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00229,"50":0,"51":0,"52":0,"53":0.00229,"54":0,"55":0.00229,"56":0.00229,"57":0,"58":0.00229,"59":0,"60":0,"61":0,"62":0.00229,"63":0.00458,"64":0.00229,"65":0,"66":0.00458,"67":0.00229,"68":0.00458,"69":0.00458,"70":0.00229,"71":0.00229,"72":0.00458,"73":0.00229,"74":0.00458,"75":0.00229,"76":0.00916,"77":0.00687,"78":0.00458,"79":0.00916,"80":0.00458,"81":0.00916,"83":0.00458,"84":0.00458,"85":0.00458,"86":0.01146,"87":0.01146,"88":0.00687,"89":0.01146,"90":0.00229,"91":0.00687,"92":0.00916,"93":0.00229,"94":0.01146,"95":0.01604,"96":0.01375,"97":0.01375,"98":0.01375,"99":0.01375,"100":0.01375,"101":0.02978,"102":0.04124,"103":0.50631,"104":1.18216,"105":0.00687,"106":0.00229,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00229,"25":0,"26":0,"27":0,"28":0.00229,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00229,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00458,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00229,"55":0,"56":0,"57":0,"58":0.00458,"60":0.00458,"62":0,"63":0.05957,"64":0.06186,"65":0,"66":0,"67":0,"68":0,"69":0.00229,"70":0.00229,"71":0.00229,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00229,"80":0,"81":0,"82":0.00229,"83":0,"84":0,"85":0.00229,"86":0.00229,"87":0,"88":0.00229,"89":0.0252,"90":0.00458,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.09622},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.00458,"85":0,"86":0,"87":0,"88":0,"89":0.00229,"90":0,"91":0,"92":0.00458,"93":0,"94":0,"95":0,"96":0,"97":0.00229,"98":0,"99":0.00458,"100":0.00229,"101":0.00458,"102":0.00458,"103":0.0504,"104":0.13288,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00229,"15.1":0,"15.2-15.3":0.00458,"15.4":0.00229,"15.5":0.00229,"15.6":0.00229,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01005,"5.0-5.1":0.00037,"6.0-6.1":0.00091,"7.0-7.1":0.00402,"8.1-8.4":0.00018,"9.0-9.2":0.00256,"9.3":0.03289,"10.0-10.2":0,"10.3":0.00512,"11.0-11.2":0.00146,"11.3-11.4":0.00457,"12.0-12.1":0.01188,"12.2-12.5":0.18508,"13.0-13.1":0.0053,"13.2":0.01297,"13.3":0.01644,"13.4-13.7":0.04513,"14.0-14.4":0.16315,"14.5-14.8":0.17594,"15.0-15.1":0.09446,"15.2-15.3":0.13849,"15.4":0.17558,"15.5":0.43373,"15.6":0.27716,"16.0":0.02905},P:{"4":0.16201,"5.0-5.4":0.08101,"6.2-6.4":0.02025,"7.2-7.4":0.18226,"8.2":0,"9.2":0.22277,"10.1":0.03038,"11.1-11.2":0.34428,"12.0":0.07088,"13.0":0.25314,"14.0":0.21264,"15.0":0.11138,"16.0":0.41516,"17.0":1.41761,"18.0":0.90119},I:{"0":0,"3":0,"4":0.00209,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01253,"4.2-4.3":0.00626,"4.4":0,"4.4.3-4.4.4":0.07829},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00229,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":72.66215},S:{"2.5":0.00771},R:{_:"0"},M:{"0":0.63985},Q:{"10.4":0},O:{"0":3.24549},H:{"0":9.15947}}; +module.exports={C:{"2":0,"3":0.0069,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.0092,"45":0,"46":0,"47":0.0023,"48":0,"49":0,"50":0.0023,"51":0,"52":0.0069,"53":0.0069,"54":0,"55":0,"56":0.0023,"57":0,"58":0,"59":0.0023,"60":0.0023,"61":0,"62":0.0023,"63":0.0023,"64":0,"65":0,"66":0,"67":0,"68":0.0046,"69":0.0023,"70":0,"71":0,"72":0.0023,"73":0,"74":0.0023,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.0023,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.0069,"88":0.0023,"89":0.0046,"90":0,"91":0.0023,"92":0,"93":0.0023,"94":0.0023,"95":0.0023,"96":0,"97":0.0023,"98":0,"99":0.0023,"100":0.0023,"101":0.0046,"102":0.0046,"103":0.03449,"104":0.38623,"105":0.10805,"106":0,"107":0.0023,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.0023,"44":0,"45":0,"46":0,"47":0.0023,"48":0.0023,"49":0.0023,"50":0.0023,"51":0,"52":0,"53":0.0023,"54":0,"55":0.0023,"56":0.0023,"57":0.0023,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.0046,"64":0.0023,"65":0,"66":0.0023,"67":0.0046,"68":0.0069,"69":0.0023,"70":0.0023,"71":0.0023,"72":0.0023,"73":0.0023,"74":0.0069,"75":0.0023,"76":0.0092,"77":0.0069,"78":0.0046,"79":0.0069,"80":0.0069,"81":0.0092,"83":0.0046,"84":0.0023,"85":0.0046,"86":0.01379,"87":0.0115,"88":0.0069,"89":0.01379,"90":0.0023,"91":0.0069,"92":0.0115,"93":0.0046,"94":0.0069,"95":0.01839,"96":0.0092,"97":0.0069,"98":0.0115,"99":0.01609,"100":0.02069,"101":0.02759,"102":0.02299,"103":0.09426,"104":0.38853,"105":1.25525,"106":0.01839,"107":0.0023,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.0023,"25":0,"26":0,"27":0,"28":0.0023,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.0092,"60":0.0046,"62":0,"63":0.01839,"64":0.10805,"65":0.0046,"66":0,"67":0,"68":0,"69":0.0046,"70":0.0023,"71":0.0115,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0023,"86":0,"87":0,"88":0,"89":0,"90":0.02529,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.05518},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.0046,"85":0,"86":0,"87":0,"88":0,"89":0.0023,"90":0.0023,"91":0,"92":0.0092,"93":0,"94":0,"95":0,"96":0,"97":0.0023,"98":0,"99":0.0046,"100":0.0023,"101":0.0046,"102":0.0023,"103":0.0069,"104":0.04368,"105":0.16323},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.0046,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.0023,"15.1":0,"15.2-15.3":0.0069,"15.4":0.0046,"15.5":0.0092,"15.6":0.02529,"16.0":0.0046,"16.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01082,"5.0-5.1":0.00064,"6.0-6.1":0.00159,"7.0-7.1":0.00764,"8.1-8.4":0,"9.0-9.2":0.00223,"9.3":0.00414,"10.0-10.2":0,"10.3":0.00127,"11.0-11.2":0.00159,"11.3-11.4":0.00191,"12.0-12.1":0.01973,"12.2-12.5":0.21352,"13.0-13.1":0.00796,"13.2":0.007,"13.3":0.00955,"13.4-13.7":0.0385,"14.0-14.4":0.16325,"14.5-14.8":0.1887,"15.0-15.1":0.15338,"15.2-15.3":0.28608,"15.4":0.1957,"15.5":0.60493,"15.6":0.92124,"16.0":0.2778,"16.1":0.00127},P:{"4":0.19312,"5.0-5.4":0.06098,"6.2-6.4":0.02033,"7.2-7.4":0.18295,"8.2":0,"9.2":0.23377,"10.1":0.02033,"11.1-11.2":0.38623,"12.0":0.04066,"13.0":0.24394,"14.0":0.21344,"15.0":0.1423,"16.0":0.3659,"17.0":0.60984,"18.0":2.04297},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0132,"4.2-4.3":0.01006,"4.4":0,"4.4.3-4.4.4":0.09053},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0023,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":3.18051},H:{"0":8.14383},L:{"0":72.35575},S:{"2.5":0.0077},R:{_:"0"},M:{"0":0.46976},Q:{"13.1":0}}; 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 617fd3125aa623..56d31ab267671f 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:{"2":0,"3":0,"4":0.00964,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00482,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00482,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00482,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00482,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.05783,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.04819,"85":0,"86":0,"87":0,"88":0,"89":0.00964,"90":0,"91":0.03373,"92":0,"93":0,"94":0.00482,"95":0.00482,"96":0,"97":0,"98":0.00482,"99":0.00482,"100":0,"101":0.01446,"102":0.05301,"103":1.91796,"104":0.37106,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00964,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00482,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00482,"48":0,"49":0.00482,"50":0.00964,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00482,"63":0,"64":0,"65":0,"66":0,"67":0.01446,"68":0.00964,"69":0,"70":0.00482,"71":0,"72":0,"73":0,"74":0.00482,"75":0.00482,"76":0,"77":0.00482,"78":0,"79":0.00964,"80":0,"81":0.0241,"83":0.00482,"84":0.00482,"85":0,"86":0.00482,"87":0.22167,"88":0.00482,"89":0.2024,"90":0.00964,"91":0.04819,"92":0.00964,"93":0,"94":0,"95":0.00964,"96":0.00964,"97":0.09156,"98":0.01928,"99":0.02891,"100":0.04819,"101":0.05301,"102":0.10602,"103":2.5878,"104":9.18501,"105":0.03373,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00482,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00964,"64":0.00482,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00482,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00482,"89":0.34697,"90":0.01446,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00482,"13":0,"14":0.00482,"15":0.00964,"16":0,"17":0,"18":0.00482,"79":0,"80":0,"81":0,"83":0,"84":0.00482,"85":0,"86":0,"87":0.00482,"88":0,"89":0,"90":0,"91":0,"92":0.00482,"93":0.01446,"94":0,"95":0.01928,"96":0.00482,"97":0,"98":0.00482,"99":0.01928,"100":0.00964,"101":0.02891,"102":0.00964,"103":0.94934,"104":2.26493,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.01446,"13":0.04819,"14":0.18312,"15":0.01446,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00482,"12.1":0,"13.1":0.15421,"14.1":0.13975,"15.1":0.06747,"15.2-15.3":0.02891,"15.4":0.03855,"15.5":0.47708,"15.6":0.95898,"16.0":0.00964},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.06118,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00728,"10.0-10.2":0,"10.3":0.00291,"11.0-11.2":0.00291,"11.3-11.4":0.03059,"12.0-12.1":0.05827,"12.2-12.5":0.4312,"13.0-13.1":0,"13.2":0,"13.3":0.02768,"13.4-13.7":0.12674,"14.0-14.4":0.3977,"14.5-14.8":0.83764,"15.0-15.1":0.30155,"15.2-15.3":0.50696,"15.4":0.82307,"15.5":4.6602,"15.6":5.87077,"16.0":0.42101},P:{"4":0.15358,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.17406,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.05119,"12.0":0,"13.0":0.07167,"14.0":0.09215,"15.0":0.04095,"16.0":0.12286,"17.0":1.58699,"18.0":3.29684},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03222,"4.2-4.3":0.02974,"4.4":0,"4.4.3-4.4.4":0.10658},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.07229,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":54.68327},S:{"2.5":0},R:{_:"0"},M:{"0":0.20724},Q:{"10.4":0},O:{"0":0.01554},H:{"0":0.22563}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00085,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00676,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00085,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00507,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.00254,"104":0.05155,"105":0.01437,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00169,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00085,"80":0,"81":0.00085,"83":0,"84":0,"85":0,"86":0,"87":0.00254,"88":0,"89":0,"90":0,"91":0.00169,"92":0.00169,"93":0,"94":0,"95":0.00085,"96":0,"97":0.00338,"98":0.00085,"99":0.00085,"100":0,"101":0.00085,"102":0.00169,"103":0.00676,"104":0.08873,"105":0.30589,"106":0.01014,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00085,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00507,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00254,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00085,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00338,"99":0,"100":0,"101":0,"102":0,"103":0.00085,"104":0.01521,"105":0.08788},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00085,"14":0.00085,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00254,"14.1":0.00845,"15.1":0.00338,"15.2-15.3":0.00085,"15.4":0.00169,"15.5":0.00592,"15.6":0.01775,"16.0":0.00507,"16.1":0},G:{"8":0.00708,"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.00405,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00034,"10.0-10.2":0,"10.3":0,"11.0-11.2":0.00034,"11.3-11.4":0.0027,"12.0-12.1":0,"12.2-12.5":0.05633,"13.0-13.1":0,"13.2":0.00067,"13.3":0.00675,"13.4-13.7":0.02597,"14.0-14.4":0.07015,"14.5-14.8":0.22429,"15.0-15.1":0.06678,"15.2-15.3":0.08938,"15.4":0.10725,"15.5":0.38011,"15.6":1.97105,"16.0":0.3275,"16.1":0.01012},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01078,"12.0":0,"13.0":0,"14.0":0.01078,"15.0":0,"16.0":0.01078,"17.0":0.01078,"18.0":0.44208},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.02845},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00169,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.03467},L:{"0":6.30212},S:{"2.5":0},R:{_:"0"},M:{"0":0.01831},Q:{"13.1":0}}; 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 bc135b6f262745..d88fdb5595cd4b 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00234,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00467,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00234,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00234,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00234,"88":0.00234,"89":0,"90":0,"91":0.00467,"92":0.00234,"93":0.00234,"94":0.00234,"95":0.00234,"96":0,"97":0,"98":0.00234,"99":0.00467,"100":0.00234,"101":0.00234,"102":0.01168,"103":0.20557,"104":0.03971,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00234,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00234,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00467,"50":0.00234,"51":0,"52":0.00234,"53":0,"54":0,"55":0.00234,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00234,"66":0.00234,"67":0.00234,"68":0,"69":0.00467,"70":0.00467,"71":0,"72":0,"73":0,"74":0.00234,"75":0,"76":0.00234,"77":0.00234,"78":0.00234,"79":0.00701,"80":0.00234,"81":0.0257,"83":0.00234,"84":0.00234,"85":0.00234,"86":0.00467,"87":0.00467,"88":0.00234,"89":0.00234,"90":0.00234,"91":0.00467,"92":0.00934,"93":0.00234,"94":0.00234,"95":0.00234,"96":0.00701,"97":0.00467,"98":0.00467,"99":0.00467,"100":0.00934,"101":0.01168,"102":0.02102,"103":0.69846,"104":1.82675,"105":0.00701,"106":0.00234,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00234,"27":0,"28":0.00467,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00701,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00234,"47":0.00234,"48":0,"49":0,"50":0.00234,"51":0.00234,"52":0,"53":0,"54":0.00234,"55":0,"56":0.00234,"57":0.00234,"58":0.00934,"60":0.02102,"62":0,"63":0.31069,"64":0.15184,"65":0,"66":0,"67":0,"68":0.00234,"69":0,"70":0,"71":0.00234,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00234,"86":0,"87":0,"88":0.00234,"89":0.07008,"90":0.00934,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00234},B:{"12":0.00234,"13":0,"14":0.00234,"15":0.00234,"16":0.00234,"17":0.00234,"18":0.00701,"79":0,"80":0,"81":0,"83":0,"84":0.00234,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00234,"93":0,"94":0,"95":0.00234,"96":0,"97":0,"98":0,"99":0.00234,"100":0.00234,"101":0.00701,"102":0.00467,"103":0.16118,"104":0.45552,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00234,"14":0.00934,"15":0.00234,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00234,"12.1":0.00234,"13.1":0.01402,"14.1":0.0257,"15.1":0.00701,"15.2-15.3":0.00467,"15.4":0.01402,"15.5":0.06074,"15.6":0.11914,"16.0":0.00234},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00279,"6.0-6.1":0.00279,"7.0-7.1":0.00559,"8.1-8.4":0.00698,"9.0-9.2":0.00279,"9.3":0.09219,"10.0-10.2":0,"10.3":0.05448,"11.0-11.2":0.01118,"11.3-11.4":0.01816,"12.0-12.1":0.01397,"12.2-12.5":0.5825,"13.0-13.1":0.02933,"13.2":0.01118,"13.3":0.04749,"13.4-13.7":0.11035,"14.0-14.4":0.37576,"14.5-14.8":0.81858,"15.0-15.1":0.24306,"15.2-15.3":0.38554,"15.4":0.53641,"15.5":3.09831,"15.6":7.43007,"16.0":0.08381},P:{"4":0.26304,"5.0-5.4":0.01012,"6.2-6.4":0.01012,"7.2-7.4":0.49573,"8.2":0.01012,"9.2":0.04047,"10.1":0.03035,"11.1-11.2":0.14164,"12.0":0.07082,"13.0":0.13152,"14.0":0.19222,"15.0":0.10117,"16.0":0.37432,"17.0":2.87318,"18.0":3.88487},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00237,"4.2-4.3":0.00869,"4.4":0,"4.4.3-4.4.4":0.05295},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03971,"5.5":0},J:{"7":0,"10":0.00766},N:{"10":0,"11":0},L:{"0":65.3595},S:{"2.5":0},R:{_:"0"},M:{"0":0.49816},Q:{"10.4":0.00766},O:{"0":0.56714},H:{"0":3.43198}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00217,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00434,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00434,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00217,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00217,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00217,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00217,"88":0.00652,"89":0,"90":0,"91":0.00217,"92":0.00217,"93":0.00217,"94":0.00217,"95":0.00217,"96":0.00217,"97":0.00217,"98":0.00217,"99":0.00434,"100":0.00217,"101":0.00217,"102":0.00434,"103":0.01303,"104":0.16073,"105":0.0543,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00217,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00217,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00217,"47":0,"48":0,"49":0.00434,"50":0.00217,"51":0,"52":0.00217,"53":0,"54":0,"55":0.00217,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00217,"66":0.00434,"67":0.00217,"68":0,"69":0.00434,"70":0.00434,"71":0.00217,"72":0,"73":0,"74":0.00217,"75":0,"76":0.00434,"77":0,"78":0.00217,"79":0.00434,"80":0.00217,"81":0.02606,"83":0.00217,"84":0.00217,"85":0.00217,"86":0.00434,"87":0.00434,"88":0.00217,"89":0.00217,"90":0.00217,"91":0.00434,"92":0.00869,"93":0.00217,"94":0.00217,"95":0.00217,"96":0.00434,"97":0.00217,"98":0.00434,"99":0.00434,"100":0.00652,"101":0.00652,"102":0.01086,"103":0.04778,"104":0.50608,"105":1.73326,"106":0.02824,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00434,"27":0,"28":0.00652,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00869,"36":0,"37":0,"38":0.00217,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00217,"47":0,"48":0,"49":0,"50":0.00217,"51":0.00217,"52":0,"53":0,"54":0.00434,"55":0.00217,"56":0.00217,"57":0.00434,"58":0.00869,"60":0.01955,"62":0.00217,"63":0.17593,"64":0.2867,"65":0.01303,"66":0,"67":0,"68":0.00217,"69":0,"70":0,"71":0.00217,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00434,"90":0.06733,"91":0.00434,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00217},B:{"12":0.00217,"13":0,"14":0,"15":0.00217,"16":0.00217,"17":0.00217,"18":0.00652,"79":0,"80":0,"81":0,"83":0,"84":0.00217,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00217,"93":0,"94":0,"95":0.00217,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00217,"102":0.00217,"103":0.00869,"104":0.09557,"105":0.46046},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00217,"14":0.00652,"15":0.00217,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00217,"12.1":0.00434,"13.1":0.01303,"14.1":0.01955,"15.1":0.00434,"15.2-15.3":0.00434,"15.4":0.01086,"15.5":0.02606,"15.6":0.12815,"16.0":0.0152,"16.1":0.00217},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00143,"6.0-6.1":0.00429,"7.0-7.1":0.00572,"8.1-8.4":0.00572,"9.0-9.2":0.00143,"9.3":0.08729,"10.0-10.2":0,"10.3":0.05008,"11.0-11.2":0.01717,"11.3-11.4":0.01288,"12.0-12.1":0.01288,"12.2-12.5":0.56236,"13.0-13.1":0.02719,"13.2":0.01002,"13.3":0.03864,"13.4-13.7":0.09587,"14.0-14.4":0.32912,"14.5-14.8":0.73837,"15.0-15.1":0.20176,"15.2-15.3":0.29335,"15.4":0.38206,"15.5":1.16909,"15.6":8.26089,"16.0":1.71285,"16.1":0.02146},P:{"4":0.29271,"5.0-5.4":0.02019,"6.2-6.4":0.01009,"7.2-7.4":0.47438,"8.2":0.01009,"9.2":0.04037,"10.1":0.03028,"11.1-11.2":0.13121,"12.0":0.06056,"13.0":0.11103,"14.0":0.1514,"15.0":0.08075,"16.0":0.32298,"17.0":0.64597,"18.0":6.25783},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00278,"4.2-4.3":0.00835,"4.4":0,"4.4.3-4.4.4":0.05755},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03041,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.00783},O:{"0":0.59493},H:{"0":3.7574},L:{"0":65.3927},S:{"2.5":0},R:{_:"0"},M:{"0":0.50882},Q:{"13.1":0.00783}}; 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 f71c3f823a858a..5b29f26aea9f7c 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00516,"32":0,"33":0,"34":0.00258,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00258,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00258,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00258,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00258,"89":0,"90":0,"91":0.00774,"92":0,"93":0,"94":0,"95":0,"96":0.00516,"97":0,"98":0.00258,"99":0.00258,"100":0.00258,"101":0.00516,"102":0.01291,"103":0.27875,"104":0.05162,"105":0.00258,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00258,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00258,"38":0,"39":0,"40":0.00516,"41":0,"42":0.00258,"43":0.00258,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00258,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00258,"56":0,"57":0.00258,"58":0.00258,"59":0,"60":0,"61":0.00258,"62":0,"63":0.00258,"64":0.01032,"65":0,"66":0,"67":0,"68":0.00258,"69":0.00258,"70":0.00258,"71":0.00516,"72":0.00258,"73":0.00258,"74":0.00516,"75":0.00258,"76":0.00516,"77":0.00516,"78":0.00516,"79":0.00516,"80":0.02839,"81":0.03872,"83":0.00516,"84":0.00258,"85":0.00258,"86":0.01291,"87":0.01032,"88":0.00774,"89":0.00516,"90":0.00774,"91":0.00774,"92":0.00258,"93":0.02065,"94":0.00516,"95":0.00774,"96":0.01032,"97":0.00774,"98":0.01032,"99":0.01549,"100":0.01549,"101":0.01549,"102":0.03872,"103":0.65557,"104":1.68539,"105":0.01032,"106":0.00258,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00258,"25":0,"26":0.00258,"27":0.00258,"28":0.00516,"29":0,"30":0.00774,"31":0,"32":0.00258,"33":0,"34":0,"35":0.02323,"36":0,"37":0,"38":0.00258,"39":0,"40":0,"41":0,"42":0.00516,"43":0,"44":0,"45":0,"46":0.00258,"47":0.00516,"48":0,"49":0,"50":0.00774,"51":0.03872,"52":0,"53":0,"54":0.00516,"55":0.00258,"56":0.00258,"57":0.00774,"58":0.03097,"60":0.28391,"62":0.00258,"63":0.73817,"64":0.31488,"65":0.00258,"66":0,"67":0.00258,"68":0.00258,"69":0.00258,"70":0.00258,"71":0.00516,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01032,"80":0,"81":0,"82":0.00258,"83":0,"84":0.00258,"85":0.00516,"86":0.01032,"87":0.00258,"88":0.0413,"89":0.24261,"90":0.04388,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00258,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02323},B:{"12":0.01549,"13":0.00774,"14":0.00516,"15":0.01291,"16":0.00774,"17":0.00774,"18":0.02839,"79":0,"80":0,"81":0,"83":0,"84":0.00774,"85":0.00258,"86":0.00258,"87":0,"88":0,"89":0.00774,"90":0.00516,"91":0,"92":0.01549,"93":0,"94":0,"95":0,"96":0.00258,"97":0.00258,"98":0.00258,"99":0.00258,"100":0.00516,"101":0.01032,"102":0.01291,"103":0.19616,"104":0.43103,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00258,"14":0.00516,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00258,"6.1":0,"7.1":0,"9.1":0.00774,"10.1":0.00258,"11.1":0.00258,"12.1":0.00258,"13.1":0.00516,"14.1":0.00516,"15.1":0.00258,"15.2-15.3":0.00258,"15.4":0.00516,"15.5":0.03355,"15.6":0.02323,"16.0":0},G:{"8":0.0045,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0015,"5.0-5.1":0.00825,"6.0-6.1":0,"7.0-7.1":0.02099,"8.1-8.4":0,"9.0-9.2":0.00075,"9.3":0.10419,"10.0-10.2":0.0075,"10.3":0.12143,"11.0-11.2":0.01949,"11.3-11.4":0.01649,"12.0-12.1":0.03298,"12.2-12.5":1.42717,"13.0-13.1":0.02623,"13.2":0.01124,"13.3":0.05697,"13.4-13.7":0.10794,"14.0-14.4":0.48047,"14.5-14.8":0.59291,"15.0-15.1":0.32531,"15.2-15.3":0.45349,"15.4":0.47447,"15.5":1.47814,"15.6":1.67378,"16.0":0.04572},P:{"4":0.23745,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.13421,"8.2":0,"9.2":0.02065,"10.1":0,"11.1-11.2":0.02065,"12.0":0.01032,"13.0":0.11356,"14.0":0.0413,"15.0":0.0413,"16.0":0.14454,"17.0":0.47491,"18.0":0.47491},I:{"0":0,"3":0,"4":0.00194,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00466,"4.2-4.3":0.01164,"4.4":0,"4.4.3-4.4.4":0.21145},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02065,"5.5":0},J:{"7":0,"10":0.01484},N:{"10":0,"11":0},L:{"0":67.94379},S:{"2.5":0.00742},R:{_:"0"},M:{"0":0.17064},Q:{"10.4":0.00742},O:{"0":1.70637},H:{"0":11.3786}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00244,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00244,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00488,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00244,"99":0,"100":0,"101":0.00244,"102":0.00488,"103":0.01951,"104":0.18049,"105":0.06098,"106":0.00244,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00244,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00488,"41":0,"42":0,"43":0.00244,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00244,"51":0,"52":0,"53":0,"54":0,"55":0.00244,"56":0,"57":0.00244,"58":0.00244,"59":0,"60":0,"61":0.02927,"62":0,"63":0.00488,"64":0.00488,"65":0,"66":0,"67":0,"68":0.00244,"69":0,"70":0.00244,"71":0.00244,"72":0,"73":0.00244,"74":0.00244,"75":0.00244,"76":0.00488,"77":0.00244,"78":0.00488,"79":0.00976,"80":0.00244,"81":0.02683,"83":0.0122,"84":0.00244,"85":0.00244,"86":0.0122,"87":0.01463,"88":0.00488,"89":0.00488,"90":0.00488,"91":0.00244,"92":0.00732,"93":0.00732,"94":0.00488,"95":0.00732,"96":0.00488,"97":0.00488,"98":0.00732,"99":0.00976,"100":0.00976,"101":0.00732,"102":0.01707,"103":0.09756,"104":0.50975,"105":1.56584,"106":0.02439,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00244,"25":0,"26":0.00244,"27":0.00244,"28":0.00732,"29":0,"30":0.00488,"31":0,"32":0.00244,"33":0.00244,"34":0,"35":0.04634,"36":0,"37":0,"38":0.00244,"39":0,"40":0,"41":0,"42":0.00488,"43":0,"44":0,"45":0,"46":0.00244,"47":0.00732,"48":0,"49":0,"50":0.02439,"51":0.01951,"52":0,"53":0,"54":0.00488,"55":0.00488,"56":0.00244,"57":0.00976,"58":0.02927,"60":0.22683,"62":0.00244,"63":0.5439,"64":0.81219,"65":0.0439,"66":0,"67":0.00244,"68":0.00244,"69":0,"70":0.00244,"71":0.00488,"72":0.00244,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00732,"80":0,"81":0,"82":0,"83":0,"84":0.00244,"85":0.00732,"86":0.00244,"87":0,"88":0.01707,"89":0.00976,"90":0.25122,"91":0.00976,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00244,"10.6":0.00244,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01463},B:{"12":0.0122,"13":0.00488,"14":0.00488,"15":0.0122,"16":0.00488,"17":0.00488,"18":0.02195,"79":0,"80":0,"81":0,"83":0,"84":0.00488,"85":0.00244,"86":0,"87":0,"88":0,"89":0.00488,"90":0.00244,"91":0,"92":0.00976,"93":0.00244,"94":0,"95":0.00244,"96":0,"97":0,"98":0.00244,"99":0.00244,"100":0.00244,"101":0.00488,"102":0.00488,"103":0.01951,"104":0.11707,"105":0.42195},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00488,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00244,"6.1":0,"7.1":0,"9.1":0.00244,"10.1":0,"11.1":0.00244,"12.1":0.00244,"13.1":0.00488,"14.1":0.0122,"15.1":0,"15.2-15.3":0.00244,"15.4":0.00244,"15.5":0.00976,"15.6":0.02927,"16.0":0.00488,"16.1":0},G:{"8":0.00285,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00285,"5.0-5.1":0.00498,"6.0-6.1":0,"7.0-7.1":0.01637,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08539,"10.0-10.2":0.00712,"10.3":0.10318,"11.0-11.2":0.0121,"11.3-11.4":0.00854,"12.0-12.1":0.03416,"12.2-12.5":1.34422,"13.0-13.1":0.01779,"13.2":0.00925,"13.3":0.06049,"13.4-13.7":0.07543,"14.0-14.4":0.40419,"14.5-14.8":0.55861,"15.0-15.1":0.34584,"15.2-15.3":0.37786,"15.4":0.30101,"15.5":0.74007,"15.6":1.88574,"16.0":0.51805,"16.1":0.00712},P:{"4":0.2135,"5.0-5.4":0.02033,"6.2-6.4":0,"7.2-7.4":0.1525,"8.2":0,"9.2":0.05083,"10.1":0,"11.1-11.2":0.01017,"12.0":0.01017,"13.0":0.07117,"14.0":0.04067,"15.0":0.02033,"16.0":0.0915,"17.0":0.13216,"18.0":0.69132},I:{"0":0,"3":0,"4":0.00153,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00459,"4.2-4.3":0.00919,"4.4":0,"4.4.3-4.4.4":0.21591},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00271,"11":0.02168,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0.01512},O:{"0":1.70879},H:{"0":14.8534},L:{"0":65.09441},S:{"2.5":0.00756},R:{_:"0"},M:{"0":0.09073},Q:{"13.1":0.00756}}; 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 17b180286131a7..8fae0f03a0a04d 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00378,"48":0,"49":0,"50":0,"51":0,"52":0.00756,"53":0,"54":0,"55":0,"56":0,"57":0.00378,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00378,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00378,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00756,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00378,"88":0.00756,"89":0.00378,"90":0.00378,"91":0.00756,"92":0,"93":0,"94":0.00378,"95":0.00378,"96":0,"97":0.00378,"98":0.00378,"99":0.01134,"100":0.00756,"101":0.01134,"102":0.05669,"103":0.64621,"104":0.1625,"105":0.00756,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00756,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01134,"41":0,"42":0.00378,"43":0,"44":0,"45":0,"46":0.00378,"47":0,"48":0,"49":0.00378,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00378,"56":0,"57":0,"58":0.00378,"59":0,"60":0,"61":0.00378,"62":0,"63":0.00756,"64":0,"65":0,"66":0.00378,"67":0.00378,"68":0.00378,"69":0.00756,"70":0.00756,"71":0.00378,"72":0.00378,"73":0.00378,"74":0.02645,"75":0.00378,"76":0.00378,"77":0.00378,"78":0.00378,"79":0.0189,"80":0.00756,"81":0.03023,"83":0.00378,"84":0.00378,"85":0.00756,"86":0.01512,"87":0.01134,"88":0.01134,"89":0.00756,"90":0.00756,"91":0.00756,"92":0.02267,"93":0.00756,"94":0.0189,"95":0.0189,"96":0.01512,"97":0.0189,"98":0.02267,"99":0.02267,"100":0.03779,"101":0.02267,"102":0.06802,"103":1.70433,"104":4.30806,"105":0.0189,"106":0.00756,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00378,"27":0,"28":0.01512,"29":0,"30":0.00378,"31":0.00378,"32":0.01512,"33":0,"34":0,"35":0.02645,"36":0.00378,"37":0.00378,"38":0.00378,"39":0,"40":0,"41":0,"42":0.01512,"43":0,"44":0,"45":0,"46":0.00378,"47":0.00378,"48":0,"49":0,"50":0.05291,"51":0.00756,"52":0,"53":0,"54":0.09448,"55":0.00378,"56":0.01512,"57":0.00756,"58":0.12093,"60":0.21918,"62":0,"63":0.83516,"64":0.43836,"65":0,"66":0,"67":0,"68":0,"69":0.00378,"70":0,"71":0.00378,"72":0,"73":0.00378,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01512,"80":0,"81":0,"82":0.00378,"83":0,"84":0.00378,"85":0.00756,"86":0.01134,"87":0.00378,"88":0.01512,"89":0.42325,"90":0.0907,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00378,"10.6":0.00378,"11.1":0,"11.5":0,"11.6":0,"12.1":0.12849},B:{"12":0.02645,"13":0.01134,"14":0.00378,"15":0.01134,"16":0.01512,"17":0.01512,"18":0.34011,"79":0,"80":0,"81":0,"83":0,"84":0.00756,"85":0.00756,"86":0,"87":0,"88":0,"89":0.01134,"90":0.00756,"91":0,"92":0.03023,"93":0.00378,"94":0,"95":0.00378,"96":0.00378,"97":0.00378,"98":0,"99":0.00756,"100":0.00756,"101":0.01134,"102":0.01512,"103":0.42325,"104":1.02411,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00378,"12":0,"13":0.00378,"14":0.01134,"15":0.0189,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00756,"10.1":0,"11.1":0,"12.1":0.00378,"13.1":0.02267,"14.1":0.07936,"15.1":0.00756,"15.2-15.3":0.00756,"15.4":0.02645,"15.5":0.06802,"15.6":0.08692,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00097,"5.0-5.1":0.01845,"6.0-6.1":0,"7.0-7.1":0.01165,"8.1-8.4":0.00194,"9.0-9.2":0.00194,"9.3":0.1136,"10.0-10.2":0.03495,"10.3":0.07574,"11.0-11.2":0.0068,"11.3-11.4":0.0369,"12.0-12.1":0.02525,"12.2-12.5":0.59423,"13.0-13.1":0.01359,"13.2":0.01456,"13.3":0.07379,"13.4-13.7":0.13885,"14.0-14.4":0.46218,"14.5-14.8":0.6991,"15.0-15.1":0.34955,"15.2-15.3":0.60783,"15.4":0.5651,"15.5":2.41674,"15.6":3.37217,"16.0":0.07088},P:{"4":0.16451,"5.0-5.4":0.01028,"6.2-6.4":0,"7.2-7.4":0.15422,"8.2":0,"9.2":0.02056,"10.1":0,"11.1-11.2":0.04113,"12.0":0.02056,"13.0":0.05141,"14.0":0.06169,"15.0":0.04113,"16.0":0.14394,"17.0":0.79168,"18.0":0.95619},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00174,"4.2-4.3":0.01564,"4.4":0,"4.4.3-4.4.4":0.24419},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03401,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":60.77303},S:{"2.5":0.00622},R:{_:"0"},M:{"0":0.19907},Q:{"10.4":0.05599},O:{"0":1.61124},H:{"0":8.59888}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00377,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00377,"45":0,"46":0,"47":0.00377,"48":0.00377,"49":0,"50":0.00377,"51":0,"52":0.00377,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00377,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00377,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00377,"85":0,"86":0,"87":0.00377,"88":0.00754,"89":0,"90":0,"91":0.01131,"92":0.00377,"93":0,"94":0.00377,"95":0.00377,"96":0,"97":0.00377,"98":0.00377,"99":0.01508,"100":0.00377,"101":0.00754,"102":0.03017,"103":0.04148,"104":0.6109,"105":0.19986,"106":0.00754,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00754,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00377,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00377,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01886,"41":0,"42":0.00377,"43":0,"44":0,"45":0,"46":0.00754,"47":0,"48":0,"49":0.00377,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00377,"56":0.00377,"57":0,"58":0.00377,"59":0,"60":0,"61":0,"62":0,"63":0.00754,"64":0.00377,"65":0.00377,"66":0,"67":0,"68":0.00377,"69":0.00754,"70":0.00754,"71":0.00377,"72":0.00754,"73":0,"74":0.00754,"75":0.00377,"76":0.00377,"77":0.00377,"78":0.00377,"79":0.01131,"80":0.00754,"81":0.03017,"83":0.00754,"84":0.00754,"85":0.00754,"86":0.01508,"87":0.04148,"88":0.00754,"89":0.00377,"90":0.00754,"91":0.01131,"92":0.01886,"93":0.01131,"94":0.01131,"95":0.01131,"96":0.0264,"97":0.01886,"98":0.0264,"99":0.01508,"100":0.03017,"101":0.03017,"102":0.04148,"103":0.18478,"104":1.42921,"105":4.88345,"106":0.09428,"107":0.00377,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00754,"27":0,"28":0.01886,"29":0,"30":0.00377,"31":0.00377,"32":0.00754,"33":0,"34":0,"35":0.01886,"36":0.00377,"37":0.00377,"38":0.00377,"39":0,"40":0,"41":0,"42":0.02263,"43":0,"44":0,"45":0,"46":0.00754,"47":0.00377,"48":0,"49":0,"50":0.09428,"51":0.00754,"52":0,"53":0,"54":0.0905,"55":0.00754,"56":0.00754,"57":0.01131,"58":0.10559,"60":0.21118,"62":0,"63":0.42612,"64":0.88996,"65":0.04902,"66":0,"67":0,"68":0,"69":0.00377,"70":0.00377,"71":0.01131,"72":0.00377,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01508,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00754,"86":0.00754,"87":0,"88":0.01886,"89":0.01886,"90":0.55811,"91":0.01886,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0.00377,"11.1":0,"11.5":0,"11.6":0,"12.1":0.17724},B:{"12":0.03017,"13":0.00754,"14":0.00754,"15":0.01131,"16":0.01508,"17":0.01508,"18":0.05279,"79":0,"80":0,"81":0,"83":0,"84":0.00754,"85":0.00377,"86":0,"87":0,"88":0,"89":0.01131,"90":0.00754,"91":0,"92":0.03017,"93":0,"94":0,"95":0,"96":0.00754,"97":0.00377,"98":0.00377,"99":0.00377,"100":0.00377,"101":0.01131,"102":0.01508,"103":0.04525,"104":0.25266,"105":1.37264},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00377,"14":0.01131,"15":0.00754,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00377,"10.1":0,"11.1":0,"12.1":0.00377,"13.1":0.01886,"14.1":0.13199,"15.1":0.00377,"15.2-15.3":0.00754,"15.4":0.01508,"15.5":0.04148,"15.6":0.12444,"16.0":0.01508,"16.1":0.00377},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00196,"5.0-5.1":0.00491,"6.0-6.1":0,"7.0-7.1":0.00687,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06674,"10.0-10.2":0,"10.3":0.04907,"11.0-11.2":0.00393,"11.3-11.4":0.01178,"12.0-12.1":0.01276,"12.2-12.5":0.53393,"13.0-13.1":0.00883,"13.2":0.00589,"13.3":0.05496,"13.4-13.7":0.08637,"14.0-14.4":0.4191,"14.5-14.8":0.70274,"15.0-15.1":0.26893,"15.2-15.3":0.46915,"15.4":0.44461,"15.5":1.11497,"15.6":4.42258,"16.0":0.93339,"16.1":0.01276},P:{"4":0.18401,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.20445,"8.2":0,"9.2":0.02045,"10.1":0.01022,"11.1-11.2":0.04089,"12.0":0.02045,"13.0":0.03067,"14.0":0.06134,"15.0":0.04089,"16.0":0.10223,"17.0":0.2249,"18.0":1.19606},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00089,"4.2-4.3":0.01598,"4.4":0,"4.4.3-4.4.4":0.23707},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00377,"11":0.03771,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":1.48873},H:{"0":9.08761},L:{"0":60.19971},S:{"2.5":0.00623},R:{_:"0"},M:{"0":0.16818},Q:{"13.1":0.04983}}; 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 ad98f5aed758d0..ec5575d11ddea0 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.00517,"43":0.00517,"47":0.00517,"52":0.06726,"55":0.00259,"56":0.00517,"57":0.00259,"60":0.00259,"65":0.00517,"66":0.00259,"68":0.00259,"70":0.00259,"72":0.00776,"78":0.01294,"80":0.00259,"81":0.00259,"84":0.00776,"87":0.00259,"88":0.00517,"89":0.00517,"91":0.03104,"94":0.00517,"95":0.00517,"96":0.00517,"97":0.00517,"98":0.00517,"99":0.0207,"100":0.01552,"101":0.01552,"102":0.06209,"103":1.28574,"104":0.25353,"105":0.01035,_:"2 3 4 5 6 7 8 9 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 58 59 61 62 63 64 67 69 71 73 74 75 76 77 79 82 83 85 86 90 92 93 106 3.5 3.6"},D:{"33":0.00517,"34":0.00259,"38":0.00517,"40":0.00776,"42":0.00259,"43":0.03881,"46":0.00517,"47":0.00517,"49":0.03104,"50":0.00517,"51":0.00517,"52":0.00517,"53":0.00259,"55":0.00517,"56":0.00517,"58":0.00517,"60":0.00517,"62":0.00517,"63":0.01294,"64":0.00776,"65":0.00776,"66":0.01294,"67":0.00517,"68":0.00776,"69":0.02587,"70":0.01294,"71":0.00776,"72":0.01294,"73":0.00517,"74":0.0207,"75":0.00776,"76":0.01294,"77":0.01294,"78":0.01035,"79":0.07244,"80":0.0207,"81":0.02846,"83":0.01811,"84":0.0207,"85":0.02846,"86":0.04657,"87":0.05691,"88":0.01811,"89":0.02587,"90":0.0207,"91":0.02328,"92":0.03363,"93":0.02328,"94":0.0207,"95":0.02587,"96":0.04139,"97":0.04139,"98":0.0595,"99":0.05433,"100":0.06209,"101":0.06985,"102":0.15005,"103":3.50539,"104":9.49429,"105":0.03881,"106":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 29 30 31 32 35 36 37 39 41 44 45 48 54 57 59 61 107 108"},F:{"28":0.00776,"36":0.00259,"64":0.00259,"70":0.00259,"72":0.00259,"73":0.00259,"79":0.0207,"80":0.00517,"81":0.00517,"82":0.00776,"83":0.00517,"84":0.00776,"85":0.02328,"86":0.01035,"87":0.01035,"88":0.02328,"89":0.58208,"90":0.0802,_:"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 65 66 67 68 69 71 74 75 76 77 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01552,"13":0.00517,"14":0.00517,"15":0.00776,"16":0.00776,"17":0.01035,"18":0.04139,"84":0.01035,"85":0.00517,"89":0.00776,"90":0.00776,"92":0.02328,"95":0.00517,"96":0.00517,"97":0.00259,"98":0.00517,"99":0.01035,"100":0.01035,"101":0.02587,"102":0.0207,"103":0.64158,"104":1.67638,_:"79 80 81 83 86 87 88 91 93 94 105"},E:{"4":0,"13":0.01035,"14":0.03104,"15":0.00776,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1","5.1":0.00776,"9.1":0.00259,"10.1":0.00259,"11.1":0.00776,"12.1":0.01294,"13.1":0.04657,"14.1":0.07761,"15.1":0.01811,"15.2-15.3":0.01811,"15.4":0.04139,"15.5":0.14746,"15.6":0.24835,"16.0":0.00517},G:{"8":0.00169,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00338,"6.0-6.1":0.00084,"7.0-7.1":0.02111,"8.1-8.4":0.00253,"9.0-9.2":0.00169,"9.3":0.06164,"10.0-10.2":0.01182,"10.3":0.08697,"11.0-11.2":0.03124,"11.3-11.4":0.02533,"12.0-12.1":0.03462,"12.2-12.5":0.75489,"13.0-13.1":0.02871,"13.2":0.01351,"13.3":0.06417,"13.4-13.7":0.12244,"14.0-14.4":0.45597,"14.5-14.8":0.63414,"15.0-15.1":0.30736,"15.2-15.3":0.37153,"15.4":0.42389,"15.5":1.77914,"15.6":3.12426,"16.0":0.07937},P:{"4":0.25754,"5.0-5.4":0.01028,"6.2-6.4":0,"7.2-7.4":0.25754,"8.2":0,"9.2":0.03091,"10.1":0.0103,"11.1-11.2":0.07211,"12.0":0.03091,"13.0":0.08241,"14.0":0.11332,"15.0":0.06181,"16.0":0.21634,"17.0":1.35983,"18.0":1.57617},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00346,"4.2-4.3":0.01,"4.4":0,"4.4.3-4.4.4":0.06807},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00529,"9":0.00529,"11":0.11102,_:"6 7 10 5.5"},J:{"7":0,"10":0.00741},N:{"10":0,"11":0},L:{"0":55.72084},S:{"2.5":0.02224},R:{_:"0"},M:{"0":0.29648},Q:{"10.4":0},O:{"0":0.65967},H:{"0":9.1785}}; +module.exports={C:{"34":0.00514,"40":0.00772,"43":0.00514,"47":0.00514,"48":0.00257,"51":0.00514,"52":0.06944,"55":0.00257,"56":0.00514,"57":0.00257,"58":0.00257,"60":0.00257,"65":0.00514,"66":0.00257,"68":0.00514,"72":0.00772,"78":0.01286,"79":0.00257,"80":0.00257,"81":0.00514,"82":0.00257,"83":0.00257,"84":0.00772,"87":0.00257,"88":0.00514,"89":0.00514,"91":0.02572,"94":0.00514,"95":0.00772,"96":0.00514,"97":0.00514,"98":0.00514,"99":0.018,"100":0.01286,"101":0.00772,"102":0.02572,"103":0.0823,"104":1.1111,"105":0.3678,"106":0.01543,_:"2 3 4 5 6 7 8 9 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 44 45 46 49 50 53 54 59 61 62 63 64 67 69 70 71 73 74 75 76 77 85 86 90 92 93 107 3.5 3.6"},D:{"11":0.00257,"33":0.00514,"34":0.00257,"38":0.00514,"40":0.00514,"43":0.03601,"46":0.00257,"47":0.00772,"49":0.03601,"50":0.00514,"51":0.00257,"52":0.00514,"53":0.00257,"55":0.00514,"56":0.00772,"57":0.00257,"58":0.00514,"60":0.00257,"62":0.00514,"63":0.01029,"64":0.01029,"65":0.00772,"66":0.01029,"67":0.00772,"68":0.00772,"69":0.02572,"70":0.018,"71":0.00772,"72":0.01286,"73":0.00514,"74":0.02315,"75":0.01286,"76":0.01543,"77":0.01286,"78":0.01286,"79":0.07973,"80":0.02058,"81":0.0463,"83":0.02829,"84":0.03344,"85":0.0463,"86":0.05916,"87":0.06173,"88":0.018,"89":0.02058,"90":0.01543,"91":0.02315,"92":0.03086,"93":0.02058,"94":0.018,"95":0.02572,"96":0.04115,"97":0.03601,"98":0.05916,"99":0.03601,"100":0.04887,"101":0.05144,"102":0.08488,"103":0.31893,"104":2.81634,"105":10.32915,"106":0.20319,"107":0.00772,_:"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 41 42 44 45 48 54 59 61 108 109"},F:{"28":0.00772,"36":0.00514,"64":0.00257,"68":0.00257,"70":0.00257,"71":0.00514,"72":0.00257,"73":0.00514,"79":0.01543,"80":0.00772,"81":0.00257,"82":0.00514,"83":0.00257,"84":0.00514,"85":0.018,"86":0.00772,"87":0.00514,"88":0.01029,"89":0.04115,"90":0.58642,"91":0.02829,_:"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 65 66 67 69 74 75 76 77 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01543,"13":0.00514,"14":0.00772,"15":0.00514,"16":0.00772,"17":0.01029,"18":0.04372,"84":0.01029,"85":0.00772,"89":0.00772,"90":0.00772,"92":0.02315,"95":0.00514,"96":0.00257,"97":0.00257,"98":0.00257,"99":0.00514,"100":0.00772,"101":0.018,"102":0.01029,"103":0.04115,"104":0.39352,"105":1.8184,_:"79 80 81 83 86 87 88 91 93 94"},E:{"4":0,"13":0.01029,"14":0.02829,"15":0.00772,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.02829,"10.1":0.00514,"11.1":0.00772,"12.1":0.01029,"13.1":0.0463,"14.1":0.06687,"15.1":0.01543,"15.2-15.3":0.01543,"15.4":0.03344,"15.5":0.07716,"15.6":0.29321,"16.0":0.0463,"16.1":0.00514},G:{"8":0.00085,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00423,"6.0-6.1":0.00169,"7.0-7.1":0.02367,"8.1-8.4":0.00254,"9.0-9.2":0,"9.3":0.05748,"10.0-10.2":0.00676,"10.3":0.08368,"11.0-11.2":0.02874,"11.3-11.4":0.02282,"12.0-12.1":0.03804,"12.2-12.5":0.76162,"13.0-13.1":0.02789,"13.2":0.01268,"13.3":0.06171,"13.4-13.7":0.11158,"14.0-14.4":0.41589,"14.5-14.8":0.58241,"15.0-15.1":0.26627,"15.2-15.3":0.30346,"15.4":0.30853,"15.5":0.77345,"15.6":3.42769,"16.0":0.96618,"16.1":0.01352},P:{"4":0.30537,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.25448,"8.2":0,"9.2":0.04072,"10.1":0.01022,"11.1-11.2":0.07125,"12.0":0.03054,"13.0":0.07125,"14.0":0.10179,"15.0":0.0509,"16.0":0.18322,"17.0":0.36645,"18.0":2.53461},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00322,"4.2-4.3":0.01075,"4.4":0,"4.4.3-4.4.4":0.06772},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00801,"9":0.00534,"10":0.00267,"11":0.12286,_:"6 7 5.5"},N:{"10":0,"11":0},J:{"7":0,"10":0.00743},O:{"0":0.64615},H:{"0":10.28694},L:{"0":54.13105},S:{"2.5":0.02228},R:{_:"0"},M:{"0":0.28965},Q:{"13.1":0}}; 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 c47aa92263f093..4d2f8f9d33f296 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:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,_:"108"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0.10802,"15.2-15.3":0.15842,"15.4":20.73168,"15.5":12.73857,"15.6":9.51252,"16.0":5.0335},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.82125,"15.2-15.3":2.53138,"15.4":0.57004,"15.5":1.64733,"15.6":6.14006,"16.0":36.59396},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":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 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":0},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,"107":0,"108":0,"109":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.10772,"14.1":0,"15.1":0.10772,"15.2-15.3":0.08079,"15.4":8.26751,"15.5":3.89946,"15.6":7.44884,"16.0":3.67864,"16.1":4.51885},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.36334,"15.2-15.3":0.9974,"15.4":0.2351,"15.5":1.2325,"15.6":9.41827,"16.0":48.21699,"16.1":10.61515},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":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 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":0.06307},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"13.1":0}}; 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 a365d1c2327bab..190a00321d8d03 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.00611,"36":0.01528,"43":0.04583,"47":0.00306,"52":0.05194,"56":0.00611,"68":0.00306,"72":0.00306,"78":0.01222,"79":0.00611,"80":0.00306,"81":0.00306,"82":0.00306,"83":0.00306,"84":0.00306,"87":0.00306,"88":0.00611,"89":0.00306,"90":0.00306,"91":0.02139,"95":0.00306,"96":0.00306,"97":0.00306,"98":0.00611,"99":0.01222,"100":0.00917,"101":0.01222,"102":0.04277,"103":1.02954,"104":0.22302,"105":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 35 37 38 39 40 41 42 44 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 75 76 77 85 86 92 93 94 106 3.5 3.6"},D:{"22":0.00611,"26":0.00306,"34":0.01222,"35":0.00306,"38":0.02444,"42":0.00611,"43":0.00306,"47":0.00917,"48":0.00917,"49":0.04277,"53":0.01833,"55":0.00917,"56":0.00917,"57":0.00611,"58":0.00306,"61":0.00611,"62":0.00611,"63":0.01222,"64":0.00306,"65":0.00611,"66":0.00611,"67":0.00611,"68":0.00917,"69":0.10082,"70":0.05805,"71":0.02139,"72":0.06416,"73":0.01528,"74":0.0611,"75":0.01528,"76":0.00917,"77":0.01833,"78":0.04583,"79":0.14053,"80":0.03666,"81":0.03055,"83":0.05194,"84":0.04583,"85":0.05499,"86":0.07943,"87":0.0886,"88":0.02139,"89":0.03972,"90":0.0275,"91":0.03361,"92":0.07332,"93":0.01833,"94":0.04583,"95":0.0275,"96":0.07027,"97":0.07638,"98":0.05499,"99":0.06416,"100":0.08554,"101":0.10387,"102":0.19247,"103":4.8544,"104":13.1976,"105":0.04583,"106":0.01222,_:"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 36 37 39 40 41 44 45 46 50 51 52 54 59 60 107 108"},F:{"28":0.00917,"36":0.00611,"40":0.00611,"46":0.01833,"79":0.00306,"85":0.00917,"88":0.00917,"89":0.32689,"90":0.04277,_:"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 80 81 82 83 84 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00306,"16":0.00306,"17":0.00306,"18":0.01833,"84":0.00611,"85":0.00306,"86":0.00306,"89":0.00306,"90":0.00306,"92":0.00917,"96":0.00306,"97":0.00306,"98":0.00306,"99":0.00611,"100":0.00611,"101":0.01528,"102":0.01528,"103":0.62933,"104":1.7719,_:"13 14 15 79 80 81 83 87 88 91 93 94 95 105"},E:{"4":0,"13":0.01833,"14":0.07027,"15":0.01833,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1","5.1":0.02139,"9.1":0.01528,"10.1":0.00306,"11.1":0.00917,"12.1":0.01528,"13.1":0.06416,"14.1":0.16803,"15.1":0.03055,"15.2-15.3":0.0275,"15.4":0.10082,"15.5":0.3666,"15.6":0.58045,"16.0":0.00611},G:{"8":0.00097,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00483,"5.0-5.1":0.00483,"6.0-6.1":0.00387,"7.0-7.1":0.01837,"8.1-8.4":0.00677,"9.0-9.2":0.01837,"9.3":0.05606,"10.0-10.2":0.00773,"10.3":0.07153,"11.0-11.2":0.04543,"11.3-11.4":0.01933,"12.0-12.1":0.03093,"12.2-12.5":0.42724,"13.0-13.1":0.0232,"13.2":0.0116,"13.3":0.0464,"13.4-13.7":0.16142,"14.0-14.4":0.47074,"14.5-14.8":0.72882,"15.0-15.1":0.26775,"15.2-15.3":0.34218,"15.4":0.56546,"15.5":2.02504,"15.6":4.2405,"16.0":0.0667},P:{"4":0.2883,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.10296,"8.2":0,"9.2":0.03089,"10.1":0,"11.1-11.2":0.04119,"12.0":0.02059,"13.0":0.09267,"14.0":0.08237,"15.0":0.05148,"16.0":0.15444,"17.0":1.00904,"18.0":1.112},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.05424,"4.2-4.3":0.12656,"4.4":0,"4.4.3-4.4.4":0.77747},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0267,"9":0.0445,"11":0.85446,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":54.76479},S:{"2.5":0.05555},R:{_:"0"},M:{"0":0.16666},Q:{"10.4":0.31248},O:{"0":1.52074},H:{"0":0.97955}}; +module.exports={C:{"34":0.00601,"36":0.01503,"43":0.02405,"47":0.00301,"52":0.05411,"56":0.00601,"60":0.00301,"68":0.00301,"72":0.00301,"77":0.00301,"78":0.01503,"79":0.00601,"80":0.00601,"81":0.00601,"82":0.00601,"83":0.00301,"87":0.00902,"88":0.00902,"89":0.00301,"90":0.00601,"91":0.01503,"94":0.00601,"95":0.00301,"96":0.00301,"97":0.00301,"98":0.00601,"99":0.00902,"100":0.00601,"101":0.00601,"102":0.01804,"103":0.06012,"104":0.9529,"105":0.31563,"106":0.01202,_:"2 3 4 5 6 7 8 9 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 48 49 50 51 53 54 55 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 84 85 86 92 93 107 3.5 3.6"},D:{"22":0.00301,"34":0.00902,"35":0.00301,"38":0.02104,"42":0.00601,"43":0.00301,"45":0.00301,"47":0.00601,"48":0.00902,"49":0.03908,"50":0.00301,"51":0.00301,"53":0.01804,"55":0.00902,"56":0.00902,"57":0.00902,"58":0.00301,"60":0.00301,"61":0.00601,"62":0.00601,"63":0.01202,"64":0.00301,"65":0.00601,"66":0.00601,"67":0.00601,"68":0.00902,"69":0.08417,"70":0.03607,"71":0.02104,"72":0.03908,"73":0.01202,"74":0.0511,"75":0.01804,"76":0.00902,"77":0.01503,"78":0.0511,"79":0.12625,"80":0.03908,"81":0.03307,"83":0.06313,"84":0.06012,"85":0.06914,"86":0.0992,"87":0.0992,"88":0.02104,"89":0.03908,"90":0.02405,"91":0.04208,"92":0.06012,"93":0.01804,"94":0.04509,"95":0.02705,"96":0.06012,"97":0.06914,"98":0.0481,"99":0.05711,"100":0.06914,"101":0.07214,"102":0.11423,"103":0.39078,"104":3.82664,"105":13.95686,"106":0.20441,"107":0.00902,_:"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 36 37 39 40 41 44 46 52 54 59 108 109"},F:{"28":0.00902,"36":0.00601,"40":0.00601,"46":0.01804,"71":0.00301,"85":0.00601,"88":0.00301,"89":0.02405,"90":0.33667,"91":0.01503,_:"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 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00301,"16":0.00301,"17":0.00301,"18":0.02104,"84":0.00601,"85":0.00601,"86":0.00301,"89":0.00601,"90":0.00301,"92":0.00902,"99":0.00301,"100":0.00601,"101":0.01202,"102":0.00902,"103":0.03908,"104":0.3517,"105":2.02905,_:"13 14 15 79 80 81 83 87 88 91 93 94 95 96 97 98"},E:{"4":0,"13":0.01804,"14":0.06914,"15":0.01503,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1","5.1":0.01804,"9.1":0.00902,"10.1":0.00301,"11.1":0.00601,"12.1":0.01202,"13.1":0.06012,"14.1":0.14429,"15.1":0.02705,"15.2-15.3":0.02104,"15.4":0.07515,"15.5":0.16834,"15.6":0.72745,"16.0":0.06313,"16.1":0.00601},G:{"8":0.00095,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00475,"5.0-5.1":0.0057,"6.0-6.1":0.0038,"7.0-7.1":0.0171,"8.1-8.4":0.0057,"9.0-9.2":0.019,"9.3":0.05129,"10.0-10.2":0.00665,"10.3":0.06554,"11.0-11.2":0.0323,"11.3-11.4":0.0152,"12.0-12.1":0.02755,"12.2-12.5":0.36856,"13.0-13.1":0.01995,"13.2":0.01045,"13.3":0.0418,"13.4-13.7":0.14438,"14.0-14.4":0.4303,"14.5-14.8":0.61933,"15.0-15.1":0.22512,"15.2-15.3":0.26502,"15.4":0.40655,"15.5":0.80361,"15.6":4.51768,"16.0":1.16647,"16.1":0.0133},P:{"4":0.24787,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.10328,"8.2":0,"9.2":0.02066,"10.1":0,"11.1-11.2":0.04131,"12.0":0.02066,"13.0":0.09295,"14.0":0.0723,"15.0":0.04131,"16.0":0.14459,"17.0":0.30984,"18.0":1.78675},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03661,"4.2-4.3":0.12812,"4.4":0,"4.4.3-4.4.4":0.69553},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02502,"9":0.08338,"11":0.85052,_:"6 7 10 5.5"},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":1.46874},H:{"0":0.96673},L:{"0":55.35946},S:{"2.5":0.05595},R:{_:"0"},M:{"0":0.16086},Q:{"13.1":0.29375}}; 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 79f8a16be875dd..4056d4999d89dc 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:{"48":0.00457,"50":0.00913,"52":0.09134,"53":0.00457,"56":0.0137,"59":0.00913,"60":0.00457,"68":0.01827,"72":0.00913,"77":0.01827,"78":0.06394,"79":0.00913,"80":0.00913,"81":0.06394,"82":0.00913,"83":0.00913,"84":0.00913,"86":0.00913,"87":0.0137,"88":0.0137,"89":0.00913,"90":0.0137,"91":0.12331,"92":0.00913,"93":0.00913,"94":0.0548,"95":0.03197,"96":0.00913,"97":0.0137,"98":0.0137,"99":0.02284,"100":0.02284,"101":0.03654,"102":0.20095,"103":3.69927,"104":0.62568,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 61 62 63 64 65 66 67 69 70 71 73 74 75 76 85 105 106 3.5 3.6"},D:{"22":0.0137,"34":0.00457,"38":0.0137,"40":0.04567,"41":0.00457,"43":0.00913,"47":0.0137,"48":0.00457,"49":0.07307,"51":0.00913,"52":0.0137,"53":0.00457,"56":0.02284,"60":0.03654,"61":0.00913,"62":0.00457,"63":0.0137,"64":0.00457,"65":0.0274,"66":0.0548,"67":0.0137,"68":0.00913,"69":0.05937,"70":0.01827,"71":0.00913,"72":0.0137,"73":0.00457,"74":0.0137,"75":0.13701,"76":0.01827,"77":0.0137,"78":0.03197,"79":0.14158,"80":0.09591,"81":0.0274,"83":0.05937,"84":0.08677,"85":0.15985,"86":0.10504,"87":0.12331,"88":0.02284,"89":0.0411,"90":0.02284,"91":0.07307,"92":0.04567,"93":0.0548,"94":0.0548,"95":0.03197,"96":0.09134,"97":0.06851,"98":0.07307,"99":0.07307,"100":0.15528,"101":0.16441,"102":0.32426,"103":6.49884,"104":16.50971,"105":0.0548,"106":0.00457,_:"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 42 44 45 46 50 54 55 57 58 59 107 108"},F:{"31":0.02284,"36":0.00457,"40":0.01827,"46":0.00913,"68":0.00913,"71":0.00457,"79":0.00457,"82":0.00457,"84":0.00457,"85":0.03654,"86":0.00913,"87":0.00913,"88":0.03197,"89":1.87247,"90":0.18268,_:"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 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 72 73 74 75 76 77 78 80 81 83 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00913,"17":0.00913,"18":0.02284,"84":0.00913,"85":0.00913,"86":0.00457,"92":0.00913,"95":0.00457,"96":0.00913,"97":0.00913,"98":0.00913,"99":0.00913,"100":0.0137,"101":0.06851,"102":0.05024,"103":1.48884,"104":4.05093,_:"12 13 14 16 79 80 81 83 87 88 89 90 91 93 94 105"},E:{"4":0,"13":0.03197,"14":0.13701,"15":0.0411,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.0137,"10.1":0.00457,"11.1":0.03197,"12.1":0.04567,"13.1":0.21008,"14.1":0.36993,"15.1":0.07307,"15.2-15.3":0.06851,"15.4":0.21465,"15.5":0.83576,"15.6":1.64412,"16.0":0.01827},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00635,"6.0-6.1":0.00159,"7.0-7.1":0.01428,"8.1-8.4":0.00476,"9.0-9.2":0.01428,"9.3":0.09361,"10.0-10.2":0.00317,"10.3":0.0952,"11.0-11.2":0.03015,"11.3-11.4":0.03649,"12.0-12.1":0.03173,"12.2-12.5":0.50772,"13.0-13.1":0.01745,"13.2":0.00793,"13.3":0.03808,"13.4-13.7":0.12693,"14.0-14.4":0.34906,"14.5-14.8":0.95514,"15.0-15.1":0.23641,"15.2-15.3":0.42045,"15.4":0.59816,"15.5":3.57783,"15.6":8.55663,"16.0":0.1301},P:{"4":0.11508,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01046,"8.2":0,"9.2":0.03089,"10.1":0,"11.1-11.2":0.03139,"12.0":0.02092,"13.0":0.06277,"14.0":0.06277,"15.0":0.20924,"16.0":0.11508,"17.0":1.26589,"18.0":1.90406},I:{"0":0,"3":0,"4":0.02056,"2.1":0,"2.2":0.00411,"2.3":0,"4.1":0.02194,"4.2-4.3":0.02605,"4.4":0,"4.4.3-4.4.4":0.07403},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0142,"9":0.02367,"11":0.22245,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":33.64314},S:{"2.5":0},R:{_:"0"},M:{"0":0.48897},Q:{"10.4":0.00543},O:{"0":0.11953},H:{"0":0.61209}}; +module.exports={C:{"48":0.00484,"52":0.07257,"55":0.02419,"56":0.00484,"59":0.00968,"60":0.00484,"68":0.01935,"72":0.00484,"77":0.01451,"78":0.06773,"79":0.00968,"80":0.01451,"81":0.01451,"82":0.00968,"83":0.01451,"84":0.00484,"86":0.00968,"87":0.01451,"88":0.01451,"89":0.00968,"90":0.00968,"91":0.11127,"92":0.00484,"93":0.00968,"94":0.03387,"95":0.01451,"96":0.00968,"97":0.00968,"98":0.00968,"99":0.01935,"100":0.02419,"101":0.01935,"102":0.11611,"103":0.31931,"104":2.83023,"105":1.05468,"106":0.00484,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 57 58 61 62 63 64 65 66 67 69 70 71 73 74 75 76 85 107 3.5 3.6"},D:{"22":0.00968,"34":0.00484,"38":0.01451,"40":0.04354,"41":0.01451,"43":0.00968,"47":0.01451,"48":0.00484,"49":0.06289,"51":0.00968,"52":0.01451,"56":0.01935,"60":0.02419,"63":0.00968,"65":0.01935,"66":0.04354,"67":0.01451,"68":0.00968,"69":0.02903,"70":0.01451,"71":0.00968,"72":0.01451,"73":0.00484,"74":0.01451,"75":0.1403,"76":0.01935,"77":0.01451,"78":0.02903,"79":0.11611,"80":0.02903,"81":0.02903,"83":0.08225,"84":0.12579,"85":0.19836,"86":0.14998,"87":0.14998,"88":0.01935,"89":0.0387,"90":0.02419,"91":0.08225,"92":0.0387,"93":0.04838,"94":0.04354,"95":0.02903,"96":0.08708,"97":0.05322,"98":0.06289,"99":0.06289,"100":0.13546,"101":0.12579,"102":0.19352,"103":0.70635,"104":5.03636,"105":19.70517,"106":0.39672,"107":0.00484,_:"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 42 44 45 46 50 53 54 55 57 58 59 61 62 64 108 109"},F:{"31":0.02419,"36":0.00484,"40":0.01935,"46":0.00968,"68":0.00484,"70":0.00484,"71":0.00968,"85":0.02419,"86":0.00484,"88":0.00968,"89":0.16449,"90":2.04647,"91":0.08225,_:"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 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 72 73 74 75 76 77 78 79 80 81 82 83 84 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00484,"17":0.00968,"18":0.02903,"84":0.00968,"85":0.00968,"86":0.00968,"87":0.00484,"92":0.00968,"96":0.00484,"97":0.00484,"98":0.00484,"99":0.00968,"100":0.00968,"101":0.02903,"102":0.02419,"103":0.06773,"104":0.87568,"105":4.85251,_:"12 13 14 16 79 80 81 83 88 89 90 91 93 94 95"},E:{"4":0,"13":0.02903,"14":0.15482,"15":0.0387,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.01451,"10.1":0.00484,"11.1":0.02903,"12.1":0.04838,"13.1":0.22255,"14.1":0.39672,"15.1":0.07741,"15.2-15.3":0.07257,"15.4":0.19836,"15.5":0.43542,"15.6":2.16259,"16.0":0.2806,"16.1":0.01935},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00336,"6.0-6.1":0,"7.0-7.1":0.01343,"8.1-8.4":0.00671,"9.0-9.2":0.01511,"9.3":0.08058,"10.0-10.2":0.00504,"10.3":0.08394,"11.0-11.2":0.0319,"11.3-11.4":0.03022,"12.0-12.1":0.03022,"12.2-12.5":0.45325,"13.0-13.1":0.01343,"13.2":0.01175,"13.3":0.0319,"13.4-13.7":0.10912,"14.0-14.4":0.31056,"14.5-14.8":0.83599,"15.0-15.1":0.1813,"15.2-15.3":0.31056,"15.4":0.38274,"15.5":1.12641,"15.6":9.49978,"16.0":2.84876,"16.1":0.03525},P:{"4":0.11497,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01045,"8.2":0,"9.2":0.02066,"10.1":0,"11.1-11.2":0.03136,"12.0":0.01045,"13.0":0.04181,"14.0":0.05226,"15.0":0.13588,"16.0":0.07317,"17.0":0.18814,"18.0":2.70713},I:{"0":0,"3":0,"4":0.01953,"2.1":0,"2.2":0.00488,"2.3":0,"4.1":0.01464,"4.2-4.3":0.02766,"4.4":0,"4.4.3-4.4.4":0.08298},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01505,"9":0.02007,"10":0.00502,"11":0.23079,_:"6 7 5.5"},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.1084},H:{"0":0.55224},L:{"0":30.63329},S:{"2.5":0},R:{_:"0"},M:{"0":0.42845},Q:{"13.1":0.00516}}; 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 b1d038c969671f..b4c8aae700af98 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.07378,"11":0.02306,"38":0.00461,"43":0.00461,"44":0.02306,"45":0.00461,"48":0.00461,"52":0.03228,"54":0.01844,"56":0.00461,"59":0.00461,"78":0.05533,"79":0.00922,"80":0.00922,"81":0.00922,"82":0.00922,"83":0.00922,"84":0.00461,"87":0.00461,"88":0.00922,"89":0.00922,"90":0.00461,"91":0.07839,"94":0.02767,"95":0.00922,"96":0.00461,"97":0.00922,"98":0.00922,"99":0.01383,"100":0.01844,"101":0.03228,"102":0.11066,"103":1.88129,"104":0.39194,_:"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 49 50 51 53 55 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 85 86 92 93 105 106 3.5 3.6"},D:{"38":0.00461,"40":0.01844,"43":0.00461,"44":0.00461,"47":0.00461,"48":0.05994,"49":0.05533,"52":0.00922,"56":0.1245,"59":0.00461,"60":0.00922,"61":0.02306,"63":0.00461,"65":0.01383,"66":0.05994,"67":0.01383,"68":0.00922,"69":0.01844,"70":0.00922,"71":0.00922,"72":0.00922,"73":0.00461,"74":0.01383,"75":0.01383,"76":0.14294,"77":0.00922,"78":0.02306,"79":0.12911,"80":0.06455,"81":0.05994,"83":0.11989,"84":0.07378,"85":0.09222,"86":0.09222,"87":0.11989,"88":0.02767,"89":0.05994,"90":0.03228,"91":0.05533,"92":0.03689,"93":0.10144,"94":0.0415,"95":0.02306,"96":0.1245,"97":0.09683,"98":0.13372,"99":0.10144,"100":0.18905,"101":0.24438,"102":0.54871,"103":7.85714,"104":16.43822,"105":0.06455,"106":0.04611,"107":0.03228,_:"4 5 6 7 8 9 10 11 12 13 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 45 46 50 51 53 54 55 57 58 62 64 108"},F:{"71":0.00461,"88":0.01844,"89":0.57638,"90":0.05533,_:"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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00922,"17":0.00461,"18":0.01844,"84":0.00461,"85":0.00922,"86":0.00461,"87":0.00922,"92":0.00461,"96":0.00461,"98":0.00461,"99":0.00922,"100":0.01383,"101":0.08761,"102":0.05072,"103":1.53085,"104":4.31129,_:"13 14 15 16 79 80 81 83 88 89 90 91 93 94 95 97 105"},E:{"4":0,"8":0.00461,"9":0.00922,"12":0.00461,"13":0.04611,"14":0.19827,"15":0.05533,_:"0 5 6 7 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.02767,"10.1":0.01383,"11.1":0.0415,"12.1":0.08761,"13.1":0.67782,"14.1":0.60865,"15.1":0.09683,"15.2-15.3":0.10144,"15.4":0.31355,"15.5":1.22192,"15.6":2.82193,"16.0":0.02306},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00269,"5.0-5.1":0,"6.0-6.1":0.00538,"7.0-7.1":0.01075,"8.1-8.4":0.00807,"9.0-9.2":0.01344,"9.3":0.07528,"10.0-10.2":0.00538,"10.3":0.08603,"11.0-11.2":0.03226,"11.3-11.4":0.04033,"12.0-12.1":0.02957,"12.2-12.5":0.48125,"13.0-13.1":0.02689,"13.2":0.01613,"13.3":0.06184,"13.4-13.7":0.19627,"14.0-14.4":0.63988,"14.5-14.8":1.9277,"15.0-15.1":0.38178,"15.2-15.3":0.65601,"15.4":0.88454,"15.5":5.43629,"15.6":15.68242,"16.0":0.16938},P:{"4":0.06385,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01064,"8.2":0,"9.2":0.03089,"10.1":0,"11.1-11.2":0.02128,"12.0":0.02092,"13.0":0.03193,"14.0":0.03193,"15.0":0.02128,"16.0":0.08514,"17.0":0.72365,"18.0":1.1174},I:{"0":0,"3":0.00546,"4":0.01229,"2.1":0,"2.2":0.00273,"2.3":0,"4.1":0.00273,"4.2-4.3":0.0314,"4.4":0,"4.4.3-4.4.4":0.04778},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.04348,"9":0.13043,"10":0.00483,"11":0.22704,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":24.95974},S:{"2.5":0.00539},R:{_:"0"},M:{"0":0.4419},Q:{"10.4":0.02695},O:{"0":0.08622},H:{"0":0.22449}}; +module.exports={C:{"4":0.07067,"11":0.02356,"38":0.00942,"39":0.00471,"40":0.00942,"43":0.00471,"44":0.02356,"45":0.00471,"52":0.03769,"54":0.01413,"56":0.00471,"68":0.00471,"76":0.00471,"78":0.05653,"79":0.00942,"80":0.00942,"81":0.00942,"82":0.00942,"83":0.00942,"87":0.00942,"88":0.00942,"89":0.00471,"91":0.07067,"94":0.03769,"95":0.00471,"97":0.00471,"98":0.00471,"99":0.00942,"100":0.00942,"101":0.01884,"102":0.05182,"103":0.13662,"104":1.73836,"105":0.5135,_:"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 41 42 46 47 48 49 50 51 53 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 77 84 85 86 90 92 93 96 106 107 3.5 3.6"},D:{"37":0.00471,"38":0.00471,"40":0.01884,"41":0.00942,"42":0.00942,"43":0.01884,"44":0.02356,"45":0.01413,"47":0.00942,"48":0.06124,"49":0.04711,"52":0.00471,"56":0.11778,"59":0.00471,"60":0.00942,"61":0.01884,"62":0.00471,"63":0.00471,"65":0.00942,"66":0.05182,"67":0.01413,"68":0.00942,"69":0.01413,"70":0.00942,"71":0.01413,"72":0.00942,"73":0.00471,"74":0.02356,"75":0.01413,"76":0.11778,"77":0.01884,"78":0.02827,"79":0.09893,"80":0.06124,"81":0.06595,"83":0.13662,"84":0.10835,"85":0.14604,"86":0.13662,"87":0.14133,"88":0.02356,"89":0.07067,"90":0.02827,"91":0.05182,"92":0.0424,"93":0.09893,"94":0.03769,"95":0.01884,"96":0.12249,"97":0.08009,"98":0.08009,"99":0.08951,"100":0.1696,"101":0.17902,"102":0.41928,"103":1.1542,"104":6.25621,"105":17.75105,"106":0.31564,"107":0.04711,"108":0.0424,_:"4 5 6 7 8 9 10 11 12 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 46 50 51 53 54 55 57 58 64 109"},F:{"68":0.00471,"70":0.00471,"71":0.00942,"88":0.00471,"89":0.06595,"90":0.53705,"91":0.02356,_:"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 69 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01413,"17":0.00471,"18":0.02356,"84":0.00471,"85":0.00942,"86":0.00471,"87":0.00471,"92":0.00471,"99":0.00471,"100":0.00942,"101":0.02827,"102":0.01884,"103":0.07538,"104":1.00344,"105":4.7958,_:"13 14 15 16 79 80 81 83 88 89 90 91 93 94 95 96 97 98"},E:{"4":0,"8":0.00942,"9":0.00942,"12":0.00471,"13":0.0424,"14":0.18373,"15":0.04711,_:"0 5 6 7 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.02827,"10.1":0.01413,"11.1":0.03769,"12.1":0.0848,"13.1":0.68781,"14.1":0.54648,"15.1":0.08009,"15.2-15.3":0.0848,"15.4":0.22613,"15.5":0.50408,"15.6":3.51912,"16.0":0.33448,"16.1":0.02356},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00528,"5.0-5.1":0,"6.0-6.1":0.00793,"7.0-7.1":0.01321,"8.1-8.4":0.02378,"9.0-9.2":0.02113,"9.3":0.07133,"10.0-10.2":0.00528,"10.3":0.07925,"11.0-11.2":0.02906,"11.3-11.4":0.03434,"12.0-12.1":0.02642,"12.2-12.5":0.43589,"13.0-13.1":0.02378,"13.2":0.01321,"13.3":0.05548,"13.4-13.7":0.17171,"14.0-14.4":0.55213,"14.5-14.8":1.63789,"15.0-15.1":0.28003,"15.2-15.3":0.4491,"15.4":0.52571,"15.5":1.48467,"15.6":17.17935,"16.0":2.69723,"16.1":0.03963},P:{"4":0.06441,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01045,"8.2":0,"9.2":0.02066,"10.1":0,"11.1-11.2":0.01074,"12.0":0.01045,"13.0":0.02147,"14.0":0.02147,"15.0":0.02147,"16.0":0.08588,"17.0":0.13956,"18.0":1.82505},I:{"0":0,"3":0.00443,"4":0.01329,"2.1":0.00148,"2.2":0.00738,"2.3":0,"4.1":0.00591,"4.2-4.3":0.03395,"4.4":0,"4.4.3-4.4.4":0.06053},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0443,"9":0.12307,"10":0.00985,"11":0.2609,_:"6 7 5.5"},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.08993},H:{"0":0.22537},L:{"0":24.67677},S:{"2.5":0.00529},R:{_:"0"},M:{"0":0.42849},Q:{"13.1":0.04232}}; 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 eed46666ebf2a9..c06d756aa67960 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:{"11":0.00561,"52":0.03366,"54":0.01683,"59":0.00561,"66":0.00561,"78":0.0561,"79":0.00561,"80":0.00561,"82":0.00561,"87":0.00561,"91":0.0561,"93":0.01122,"94":0.09537,"95":0.00561,"98":0.01122,"99":0.01122,"100":0.01683,"101":0.02244,"102":0.12342,"103":1.83447,"104":0.33099,"105":0.00561,_:"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 55 56 57 58 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 81 83 84 85 86 88 89 90 92 96 97 106 3.5 3.6"},D:{"25":0.01122,"26":0.01122,"34":0.02244,"38":0.07854,"49":0.03927,"53":0.01122,"58":0.00561,"59":0.03366,"60":0.05049,"63":0.00561,"65":0.01683,"66":0.02244,"67":0.01122,"68":0.01122,"69":0.02805,"70":0.00561,"72":0.00561,"73":0.01122,"74":0.02244,"75":0.01122,"76":0.01683,"77":0.01122,"78":0.01122,"79":0.14586,"80":0.03927,"81":0.03366,"83":0.04488,"84":0.03927,"85":0.07854,"86":0.18513,"87":0.12342,"88":0.02805,"89":0.02244,"90":0.02244,"91":0.03366,"92":0.06732,"93":0.08415,"94":0.05049,"95":0.03927,"96":0.14025,"97":0.11781,"98":0.10098,"99":0.11781,"100":0.24123,"101":0.21879,"102":0.53856,"103":10.18215,"104":21.44703,"105":0.06171,"106":0.01122,_:"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 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 61 62 64 71 107 108"},F:{"46":0.02805,"88":0.01683,"89":0.60588,"90":0.04488,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.00561,"18":0.01683,"84":0.00561,"85":0.02244,"86":0.00561,"90":0.00561,"92":0.01122,"95":0.01122,"96":0.02244,"97":0.00561,"98":0.01122,"99":0.01683,"100":0.01683,"101":0.07854,"102":0.06171,"103":2.10375,"104":5.06022,_:"12 13 14 15 16 79 80 81 83 87 88 89 91 93 94 105"},E:{"4":0,"12":0.01122,"13":0.06732,"14":0.2805,"15":0.07854,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01122,"10.1":0.01683,"11.1":0.05049,"12.1":0.09537,"13.1":0.40953,"14.1":0.86955,"15.1":0.14586,"15.2-15.3":0.13464,"15.4":0.44319,"15.5":1.81203,"15.6":3.49503,"16.0":0.02244},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01402,"6.0-6.1":0.00801,"7.0-7.1":0.01201,"8.1-8.4":0.01602,"9.0-9.2":0.01402,"9.3":0.1602,"10.0-10.2":0.01201,"10.3":0.17822,"11.0-11.2":0.04606,"11.3-11.4":0.06608,"12.0-12.1":0.04405,"12.2-12.5":0.83702,"13.0-13.1":0.03004,"13.2":0.01001,"13.3":0.07009,"13.4-13.7":0.1662,"14.0-14.4":0.47258,"14.5-14.8":1.21348,"15.0-15.1":0.29636,"15.2-15.3":0.45455,"15.4":0.66681,"15.5":3.86872,"15.6":11.26373,"16.0":0.09812},P:{"4":0.22666,"5.0-5.4":0.01079,"6.2-6.4":0,"7.2-7.4":0.03238,"8.2":0,"9.2":0.03089,"10.1":0,"11.1-11.2":0.04317,"12.0":0.01079,"13.0":0.06476,"14.0":0.07555,"15.0":0.04317,"16.0":0.14031,"17.0":1.17646,"18.0":1.56502},I:{"0":0,"3":0,"4":0.00268,"2.1":0,"2.2":0.00357,"2.3":0.00089,"4.1":0.00268,"4.2-4.3":0.00625,"4.4":0,"4.4.3-4.4.4":0.03661},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01982,"9":0.02973,"11":0.24778,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":20.98044},S:{"2.5":0},R:{_:"0"},M:{"0":0.40827},Q:{"10.4":0.00439},O:{"0":0.08341},H:{"0":0.1704}}; +module.exports={C:{"11":0.00534,"34":0.00534,"52":0.03202,"54":0.01601,"59":0.00534,"66":0.01067,"78":0.05337,"79":0.00534,"81":0.00534,"82":0.01067,"84":0.00534,"87":0.05337,"91":0.04803,"93":0.01067,"94":0.08539,"98":0.00534,"99":0.00534,"100":0.01067,"101":0.01601,"102":0.05337,"103":0.13876,"104":1.75587,"105":0.5764,_:"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 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 67 68 69 70 71 72 73 74 75 76 77 80 83 85 86 88 89 90 92 95 96 97 106 107 3.5 3.6"},D:{"25":0.02135,"26":0.01067,"34":0.03202,"38":0.11208,"49":0.0427,"53":0.01067,"56":0.00534,"59":0.03202,"60":0.02669,"65":0.01601,"66":0.03202,"67":0.01601,"68":0.01067,"69":0.01601,"70":0.00534,"72":0.01067,"73":0.01067,"74":0.02135,"75":0.01601,"76":0.01601,"77":0.01067,"78":0.01067,"79":0.12809,"80":0.02135,"81":0.03202,"83":0.03202,"84":0.03736,"85":0.07472,"86":0.11208,"87":0.13876,"88":0.01601,"89":0.03736,"90":0.02135,"91":0.02135,"92":0.04803,"93":0.05871,"94":0.0427,"95":0.03202,"96":0.08539,"97":0.1014,"98":0.08006,"99":0.09073,"100":0.18146,"101":0.1441,"102":0.21348,"103":1.1688,"104":7.55719,"105":20.99042,"106":0.34157,"107":0.01067,_:"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 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 57 58 61 62 63 64 71 108 109"},F:{"28":0.00534,"46":0.03202,"89":0.09073,"90":0.64044,"91":0.02135,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.00534,"18":0.01067,"85":0.01601,"86":0.00534,"89":0.01067,"92":0.00534,"95":0.01067,"96":0.00534,"98":0.00534,"99":0.01601,"100":0.01067,"101":0.03202,"102":0.03736,"103":0.06938,"104":1.20616,"105":5.04347,_:"12 13 14 15 16 79 80 81 83 84 87 88 90 91 93 94 97"},E:{"4":0,"12":0.01067,"13":0.06938,"14":0.29887,"15":0.08006,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01067,"10.1":0.01601,"11.1":0.05337,"12.1":0.09073,"13.1":0.42696,"14.1":0.89128,"15.1":0.1441,"15.2-15.3":0.12809,"15.4":0.34691,"15.5":0.85392,"15.6":4.86734,"16.0":0.36292,"16.1":0.02135},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01399,"6.0-6.1":0.00932,"7.0-7.1":0.01166,"8.1-8.4":0.01865,"9.0-9.2":0.01865,"9.3":0.18182,"10.0-10.2":0.01166,"10.3":0.19581,"11.0-11.2":0.05128,"11.3-11.4":0.06993,"12.0-12.1":0.0373,"12.2-12.5":0.8718,"13.0-13.1":0.02331,"13.2":0.01166,"13.3":0.06294,"13.4-13.7":0.15385,"14.0-14.4":0.4662,"14.5-14.8":1.16784,"15.0-15.1":0.26807,"15.2-15.3":0.3683,"15.4":0.49884,"15.5":1.30071,"15.6":14.6062,"16.0":2.40562,"16.1":0.03263},P:{"4":0.22849,"5.0-5.4":0.01088,"6.2-6.4":0,"7.2-7.4":0.01088,"8.2":0,"9.2":0.02066,"10.1":0,"11.1-11.2":0.02176,"12.0":0.01045,"13.0":0.04352,"14.0":0.0544,"15.0":0.03264,"16.0":0.09792,"17.0":0.25025,"18.0":2.77449},I:{"0":0,"3":0,"4":0.00265,"2.1":0,"2.2":0.00354,"2.3":0.00177,"4.1":0.00354,"4.2-4.3":0.00796,"4.4":0,"4.4.3-4.4.4":0.03184},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.04344,"9":0.03475,"11":0.2954,_:"6 7 10 5.5"},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.0886},H:{"0":0.16776},L:{"0":20.10486},S:{"2.5":0},R:{_:"0"},M:{"0":0.48495},Q:{"13.1":0.00466}}; 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 7ee134d8114167..f7c478c4f7db22 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:{"27":0.00905,"52":0.04524,"68":0.00452,"72":0.00452,"73":0.00452,"78":0.02262,"79":0.00452,"80":0.00452,"81":0.00452,"84":0.00905,"86":0.00905,"88":0.01357,"89":0.00452,"90":0.00905,"91":0.07691,"95":0.00452,"96":0.00452,"97":0.00905,"98":0.00452,"99":0.02714,"100":0.01357,"101":0.0181,"102":0.05429,"103":1.3391,"104":0.28501,_:"2 3 4 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 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 77 82 83 85 87 92 93 94 105 106 3.5 3.6"},D:{"22":0.00452,"38":0.01357,"47":0.00452,"49":0.07238,"51":0.00905,"53":0.00452,"55":0.00452,"58":0.00452,"63":0.00905,"65":0.00452,"66":0.01357,"67":0.00452,"68":0.01357,"69":0.02714,"70":0.00905,"71":0.00452,"72":0.00905,"73":0.00452,"74":0.01357,"75":0.01357,"76":0.0181,"77":0.00905,"78":0.01357,"79":0.10405,"80":0.02262,"81":0.02714,"83":0.03619,"84":0.05881,"85":0.04524,"86":0.07238,"87":0.11762,"88":0.02262,"89":0.04072,"90":0.03167,"91":0.32573,"92":0.04072,"93":0.03167,"94":0.03167,"95":0.03167,"96":0.07238,"97":0.07691,"98":0.06334,"99":0.095,"100":0.12215,"101":0.11762,"102":0.26239,"103":8.15677,"104":23.38908,"105":0.09953,"106":0.00905,_:"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 42 43 44 45 46 48 50 52 54 56 57 59 60 61 62 64 107 108"},F:{"28":0.00452,"85":0.0181,"86":0.00452,"87":0.00452,"88":0.02714,"89":2.44296,"90":0.11762,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.0181,"17":0.00452,"18":0.01357,"84":0.00452,"92":0.01357,"99":0.00452,"100":0.00905,"101":0.04524,"102":0.01357,"103":0.76456,"104":2.29367,_:"12 13 14 16 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 105"},E:{"4":0,"13":0.01357,"14":0.03619,"15":0.00905,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.01357,"11.1":0.00905,"12.1":0.00905,"13.1":0.05429,"14.1":0.09048,"15.1":0.0181,"15.2-15.3":0.0181,"15.4":0.04976,"15.5":0.18548,"15.6":0.30763,"16.0":0.00452},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0042,"6.0-6.1":0.0012,"7.0-7.1":0.0036,"8.1-8.4":0,"9.0-9.2":0.0006,"9.3":0.02643,"10.0-10.2":0.0006,"10.3":0.02463,"11.0-11.2":0.00661,"11.3-11.4":0.01862,"12.0-12.1":0.00901,"12.2-12.5":0.20242,"13.0-13.1":0.00601,"13.2":0.0042,"13.3":0.01682,"13.4-13.7":0.07088,"14.0-14.4":0.16698,"14.5-14.8":0.52015,"15.0-15.1":0.07388,"15.2-15.3":0.11953,"15.4":0.19341,"15.5":1.22771,"15.6":3.25907,"16.0":0.04625},P:{"4":0.15469,"5.0-5.4":0.01079,"6.2-6.4":0,"7.2-7.4":0.17531,"8.2":0,"9.2":0.03089,"10.1":0,"11.1-11.2":0.05156,"12.0":0.01031,"13.0":0.04125,"14.0":0.05156,"15.0":0.03094,"16.0":0.10313,"17.0":0.78375,"18.0":0.88688},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00404,"4.2-4.3":0.0111,"4.4":0,"4.4.3-4.4.4":0.06154},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00905,"11":0.09048,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":47.48654},S:{"2.5":0},R:{_:"0"},M:{"0":0.13693},Q:{"10.4":0},O:{"0":0.06025},H:{"0":0.20223}}; +module.exports={C:{"27":0.00939,"52":0.04693,"54":0.00469,"68":0.00939,"73":0.00469,"78":0.02347,"79":0.00939,"80":0.00939,"81":0.00939,"82":0.00939,"83":0.00469,"84":0.00469,"86":0.00469,"88":0.01408,"89":0.00469,"91":0.07509,"97":0.00469,"98":0.00939,"99":0.02347,"100":0.00939,"101":0.00939,"102":0.03285,"103":0.07509,"104":1.21079,"105":0.44114,_:"2 3 4 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 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 69 70 71 72 74 75 76 77 85 87 90 92 93 94 95 96 106 107 3.5 3.6"},D:{"22":0.00469,"38":0.01408,"47":0.00469,"49":0.07509,"51":0.00939,"55":0.00469,"58":0.00469,"63":0.00939,"65":0.00939,"66":0.01408,"67":0.00469,"68":0.01408,"69":0.01877,"70":0.00939,"71":0.00469,"72":0.00939,"73":0.00469,"74":0.01408,"75":0.01408,"76":0.02347,"77":0.00939,"78":0.01408,"79":0.09386,"80":0.02347,"81":0.02816,"83":0.05632,"84":0.09855,"85":0.08447,"86":0.11733,"87":0.1314,"88":0.02347,"89":0.03285,"90":0.03285,"91":0.34259,"92":0.03285,"93":0.04693,"94":0.02347,"95":0.02816,"96":0.0704,"97":0.07978,"98":0.05632,"99":0.0704,"100":0.10325,"101":0.07509,"102":0.1361,"103":0.52092,"104":6.36371,"105":25.98045,"106":0.58663,"107":0.00939,_:"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 42 43 44 45 46 48 50 52 53 54 56 57 59 60 61 62 64 108 109"},F:{"28":0.00469,"68":0.00469,"71":0.00469,"85":0.01408,"88":0.00469,"89":0.29097,"90":2.36058,"91":0.07978,_:"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 69 70 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.01877,"18":0.01408,"84":0.00939,"85":0.00939,"92":0.00939,"100":0.00469,"101":0.01877,"102":0.00939,"103":0.02816,"104":0.45991,"105":2.71255,_:"12 13 14 16 17 79 80 81 83 86 87 88 89 90 91 93 94 95 96 97 98 99"},E:{"4":0,"13":0.01408,"14":0.03754,"15":0.00939,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.01877,"11.1":0.00469,"12.1":0.00939,"13.1":0.05162,"14.1":0.08447,"15.1":0.01877,"15.2-15.3":0.01408,"15.4":0.04224,"15.5":0.10325,"15.6":0.36605,"16.0":0.08917,"16.1":0.00469},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0045,"6.0-6.1":0.00128,"7.0-7.1":0.00321,"8.1-8.4":0,"9.0-9.2":0.00064,"9.3":0.02506,"10.0-10.2":0.00064,"10.3":0.0257,"11.0-11.2":0.00707,"11.3-11.4":0.01863,"12.0-12.1":0.01028,"12.2-12.5":0.20302,"13.0-13.1":0.00578,"13.2":0.0045,"13.3":0.01606,"13.4-13.7":0.06682,"14.0-14.4":0.15997,"14.5-14.8":0.49727,"15.0-15.1":0.0636,"15.2-15.3":0.09701,"15.4":0.14006,"15.5":0.39062,"15.6":3.55221,"16.0":0.99326,"16.1":0.01221},P:{"4":0.13574,"5.0-5.4":0.01088,"6.2-6.4":0,"7.2-7.4":0.1775,"8.2":0,"9.2":0.02066,"10.1":0,"11.1-11.2":0.04176,"12.0":0.01044,"13.0":0.04176,"14.0":0.05221,"15.0":0.03132,"16.0":0.08353,"17.0":0.24015,"18.0":1.43045},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00396,"4.2-4.3":0.0109,"4.4":0,"4.4.3-4.4.4":0.05944},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00486,"9":0.01458,"11":0.11665,_:"6 7 10 5.5"},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.05307},H:{"0":0.20097},L:{"0":45.26767},S:{"2.5":0},R:{_:"0"},M:{"0":0.13268},Q:{"13.1":0}}; 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 f9d9fe3ee8de75..091ee167882db2 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.01928,"11":0.00771,"36":0.00771,"43":0.02313,"44":0.00771,"52":0.05783,"54":0.00771,"56":0.00771,"59":0.00386,"60":0.00386,"68":0.00771,"72":0.00386,"77":0.00386,"78":0.03855,"79":0.00771,"80":0.00771,"81":0.01928,"82":0.00386,"83":0.00771,"84":0.00771,"87":0.00771,"88":0.00771,"89":0.00771,"90":0.00771,"91":0.08481,"93":0.00386,"94":0.02313,"95":0.01157,"96":0.00771,"97":0.00771,"98":0.00771,"99":0.01542,"100":0.01542,"101":0.02313,"102":0.09638,"103":1.8504,"104":0.35466,"105":0.00386,_:"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 37 38 39 40 41 42 45 46 47 48 49 50 51 53 55 57 58 61 62 63 64 65 66 67 69 70 71 73 74 75 76 85 86 92 106 3.5 3.6"},D:{"22":0.00386,"34":0.00771,"38":0.01542,"40":0.01542,"43":0.00771,"47":0.00771,"48":0.01928,"49":0.05397,"52":0.00771,"53":0.00771,"55":0.00386,"56":0.04241,"57":0.00386,"60":0.01157,"61":0.01157,"62":0.00386,"63":0.01157,"64":0.00386,"65":0.01157,"66":0.03084,"67":0.01157,"68":0.00771,"69":0.06168,"70":0.0347,"71":0.01542,"72":0.0347,"73":0.01157,"74":0.0347,"75":0.04241,"76":0.04626,"77":0.01542,"78":0.0347,"79":0.13493,"80":0.05397,"81":0.03855,"83":0.06939,"84":0.06168,"85":0.08867,"86":0.08867,"87":0.10409,"88":0.02313,"89":0.04241,"90":0.02699,"91":0.05783,"92":0.05397,"93":0.05012,"94":0.04626,"95":0.02699,"96":0.08867,"97":0.0771,"98":0.08096,"99":0.0771,"100":0.12722,"101":0.1542,"102":0.31611,"103":6.11789,"104":15.10004,"105":0.05397,"106":0.01928,"107":0.00771,_:"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 41 42 44 45 46 50 51 54 58 59 108"},F:{"28":0.00771,"31":0.00386,"36":0.00386,"40":0.00771,"46":0.01157,"71":0.00386,"79":0.00386,"85":0.01542,"86":0.00386,"87":0.00386,"88":0.01928,"89":0.84425,"90":0.08481,_:"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 68 69 70 72 73 74 75 76 77 78 80 81 82 83 84 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00386,"15":0.00386,"17":0.00771,"18":0.01928,"84":0.00771,"85":0.00771,"86":0.00386,"87":0.00386,"89":0.00386,"92":0.00771,"96":0.00386,"97":0.00386,"98":0.00771,"99":0.00771,"100":0.01157,"101":0.04626,"102":0.0347,"103":1.06784,"104":2.96835,_:"13 14 16 79 80 81 83 88 90 91 93 94 95 105"},E:{"4":0,"13":0.03084,"14":0.11565,"15":0.03084,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1","5.1":0.01157,"9.1":0.01542,"10.1":0.00771,"11.1":0.02313,"12.1":0.04241,"13.1":0.25443,"14.1":0.32382,"15.1":0.05783,"15.2-15.3":0.05397,"15.4":0.17733,"15.5":0.68619,"15.6":1.39166,"16.0":0.01157},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00303,"5.0-5.1":0.00454,"6.0-6.1":0.00454,"7.0-7.1":0.01513,"8.1-8.4":0.00756,"9.0-9.2":0.01513,"9.3":0.06958,"10.0-10.2":0.00756,"10.3":0.08168,"11.0-11.2":0.03933,"11.3-11.4":0.02874,"12.0-12.1":0.03025,"12.2-12.5":0.47949,"13.0-13.1":0.02269,"13.2":0.0121,"13.3":0.04992,"13.4-13.7":0.15882,"14.0-14.4":0.48252,"14.5-14.8":1.06637,"15.0-15.1":0.28739,"15.2-15.3":0.4326,"15.4":0.63831,"15.5":3.16887,"15.6":7.91083,"16.0":0.10588},P:{"4":0.17755,"5.0-5.4":0.01028,"6.2-6.4":0,"7.2-7.4":0.06267,"8.2":0,"9.2":0.01044,"10.1":0,"11.1-11.2":0.04178,"12.0":0.02089,"13.0":0.06267,"14.0":0.06267,"15.0":0.07311,"16.0":0.13578,"17.0":1.00266,"18.0":1.30554},I:{"0":0,"3":0,"4":0.06434,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03509,"4.2-4.3":0.07604,"4.4":0,"4.4.3-4.4.4":0.30999},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03682,"9":0.081,"11":0.45657,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":42.02107},S:{"2.5":0.02458},R:{_:"0"},M:{"0":0.31954},Q:{"10.4":0.14134},O:{"0":0.74355},H:{"0":1.06464}}; +module.exports={C:{"4":0.01965,"11":0.00786,"36":0.00786,"38":0.00393,"43":0.01179,"44":0.00786,"52":0.05501,"54":0.00393,"55":0.00786,"56":0.00393,"60":0.00393,"68":0.00786,"72":0.00393,"77":0.00393,"78":0.03929,"79":0.00786,"80":0.00786,"81":0.00786,"82":0.00786,"83":0.00786,"84":0.00393,"87":0.01179,"88":0.00786,"89":0.00393,"90":0.00393,"91":0.07072,"94":0.01965,"95":0.00786,"96":0.00393,"97":0.00786,"98":0.00786,"99":0.01179,"100":0.01179,"101":0.01179,"102":0.05108,"103":0.14144,"104":1.60303,"105":0.5422,"106":0.00786,_:"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 37 39 40 41 42 45 46 47 48 49 50 51 53 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 85 86 92 93 107 3.5 3.6"},D:{"22":0.00393,"34":0.00786,"38":0.01572,"40":0.01572,"41":0.00786,"42":0.00393,"43":0.00786,"44":0.00786,"45":0.00786,"47":0.00786,"48":0.01965,"49":0.04715,"51":0.00393,"52":0.00393,"53":0.00786,"55":0.00393,"56":0.03929,"57":0.00393,"60":0.01179,"61":0.00786,"62":0.00393,"63":0.01179,"64":0.00393,"65":0.01179,"66":0.0275,"67":0.01179,"68":0.00786,"69":0.04715,"70":0.02357,"71":0.01572,"72":0.02357,"73":0.00786,"74":0.03143,"75":0.04715,"76":0.03929,"77":0.01572,"78":0.03536,"79":0.11394,"80":0.04322,"81":0.03929,"83":0.08251,"84":0.08644,"85":0.1218,"86":0.11787,"87":0.1218,"88":0.02357,"89":0.04322,"90":0.02357,"91":0.06286,"92":0.05108,"93":0.04715,"94":0.03929,"95":0.02357,"96":0.08251,"97":0.06679,"98":0.06286,"99":0.06679,"100":0.11394,"101":0.11001,"102":0.20824,"103":0.664,"104":4.8091,"105":16.60395,"106":0.29468,"107":0.01965,"108":0.01179,_:"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 46 50 54 58 59 109"},F:{"28":0.00786,"31":0.00393,"36":0.00393,"40":0.00786,"46":0.01179,"68":0.00393,"71":0.00393,"85":0.01179,"88":0.00393,"89":0.07858,"90":0.88795,"91":0.03536,_:"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 70 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00786,"15":0.00393,"17":0.00786,"18":0.02357,"84":0.00786,"85":0.00786,"86":0.00393,"87":0.00393,"89":0.00393,"92":0.00786,"96":0.00393,"98":0.00393,"99":0.00393,"100":0.00786,"101":0.01965,"102":0.01572,"103":0.05501,"104":0.65221,"105":3.4143,_:"13 14 16 79 80 81 83 88 90 91 93 94 95 97"},E:{"4":0,"8":0.00393,"9":0.00393,"13":0.0275,"14":0.11787,"15":0.0275,_:"0 5 6 7 10 11 12 3.1 3.2 6.1 7.1","5.1":0.01179,"9.1":0.01572,"10.1":0.00786,"11.1":0.01965,"12.1":0.03929,"13.1":0.25931,"14.1":0.30646,"15.1":0.05108,"15.2-15.3":0.05108,"15.4":0.14144,"15.5":0.31432,"15.6":1.77984,"16.0":0.18466,"16.1":0.01179},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00305,"5.0-5.1":0.00458,"6.0-6.1":0.00458,"7.0-7.1":0.01527,"8.1-8.4":0.00916,"9.0-9.2":0.01985,"9.3":0.06413,"10.0-10.2":0.00458,"10.3":0.07482,"11.0-11.2":0.03054,"11.3-11.4":0.02443,"12.0-12.1":0.02901,"12.2-12.5":0.42753,"13.0-13.1":0.01985,"13.2":0.01069,"13.3":0.04428,"13.4-13.7":0.14047,"14.0-14.4":0.43211,"14.5-14.8":0.91614,"15.0-15.1":0.23056,"15.2-15.3":0.32218,"15.4":0.426,"15.5":1.04134,"15.6":8.71401,"16.0":1.9132,"16.1":0.02443},P:{"4":0.16687,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06258,"8.2":0,"9.2":0.02045,"10.1":0.01022,"11.1-11.2":0.03129,"12.0":0.02086,"13.0":0.06258,"14.0":0.06258,"15.0":0.06258,"16.0":0.11473,"17.0":0.23988,"18.0":2.02336},I:{"0":0,"3":0,"4":0.02428,"2.1":0,"2.2":0.00607,"2.3":0,"4.1":0.02428,"4.2-4.3":0.07892,"4.4":0,"4.4.3-4.4.4":0.30962},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03602,"9":0.08644,"10":0.0072,"11":0.47541,_:"6 7 5.5"},N:{"10":0,"11":0},J:{"7":0,"10":0},O:{"0":0.71031},H:{"0":1.06906},L:{"0":41.23167},S:{"2.5":0.02428},R:{_:"0"},M:{"0":0.29748},Q:{"13.1":0.13963}}; 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 eb9c96c71d42cf..7a368258226a6e 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.30001412", + "version": "1.0.30001418", "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/electron-to-chromium/chromium-versions.js b/tools/node_modules/eslint/node_modules/electron-to-chromium/chromium-versions.js index 243a39161d1070..91ad1f247b8ebe 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 @@ -46,5 +46,7 @@ module.exports = { "103": "20.0", "104": "20.0", "105": "21.0", - "106": "21.0" + "106": "21.0", + "107": "22.0", + "108": "22.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 7c0c516bd0efe5..f45086a4c1bfff 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"} \ 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"} \ 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 c67b55ea2acbd1..d7a3ff691349d1 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 @@ -1896,7 +1896,8 @@ module.exports = { "18.3.11", "18.3.12", "18.3.13", - "18.3.14" + "18.3.14", + "18.3.15" ], "102.0.4962.3": [ "19.0.0-alpha.1", @@ -1983,7 +1984,9 @@ module.exports = { "19.0.15", "19.0.16", "19.0.17", - "19.1.0" + "19.1.0", + "19.1.1", + "19.1.2" ], "103.0.5044.0": [ "20.0.0-alpha.1", @@ -2060,7 +2063,9 @@ module.exports = { "20.1.4" ], "104.0.5112.124": [ - "20.2.0" + "20.2.0", + "20.3.0", + "20.3.1" ], "105.0.5187.0": [ "21.0.0-alpha.1", @@ -2128,10 +2133,17 @@ module.exports = { "21.0.0-nightly.20220718", "21.0.0-nightly.20220719" ], - "107.0.5274.0": [ - "22.0.0-nightly.20220908" + "106.0.5249.51": [ + "21.0.0" + ], + "106.0.5249.61": [ + "21.0.1" + ], + "106.0.5249.91": [ + "21.1.0" ], "107.0.5286.0": [ + "22.0.0-alpha.1", "22.0.0-nightly.20220909", "22.0.0-nightly.20220912", "22.0.0-nightly.20220913", @@ -2142,6 +2154,22 @@ module.exports = { "22.0.0-nightly.20220920", "22.0.0-nightly.20220921", "22.0.0-nightly.20220922", - "22.0.0-nightly.20220923" + "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", + "23.0.0-nightly.20221004", + "23.0.0-nightly.20221005", + "23.0.0-nightly.20221006", + "23.0.0-nightly.20221007" + ], + "107.0.5274.0": [ + "22.0.0-nightly.20220908" ] }; \ No newline at end of file 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 c7e2aa772efed0..f236c27017c276 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"],"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.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.20190923","8.0.0-nightly.20190924","8.0.0-nightly.20190926","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.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.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.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.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.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.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.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"],"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"],"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"],"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"],"107.0.5274.0":["22.0.0-nightly.20220908"],"107.0.5286.0":["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"]} \ 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"],"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.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.20190923","8.0.0-nightly.20190924","8.0.0-nightly.20190926","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.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.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.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.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.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.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.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"],"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"],"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"],"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","23.0.0-nightly.20221004","23.0.0-nightly.20221005","23.0.0-nightly.20221006","23.0.0-nightly.20221007"],"107.0.5274.0":["22.0.0-nightly.20220908"]} \ 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 36b554060914bb..46a4e8e0afe4ce 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 @@ -1381,6 +1381,7 @@ module.exports = { "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", @@ -1435,6 +1436,8 @@ module.exports = { "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", "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", @@ -1494,6 +1497,8 @@ module.exports = { "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", "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", @@ -1554,6 +1559,11 @@ module.exports = { "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", + "22.0.0-alpha.1": "107.0.5286.0", + "22.0.0-alpha.3": "108.0.5329.0", "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", @@ -1583,5 +1593,15 @@ module.exports = { "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.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", + "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" }; \ 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 557ed3709a1a37..cdeb20919fad1b 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.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.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.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.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.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.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.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.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.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.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.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","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","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","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","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"} \ 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.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.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.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.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.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.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.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.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.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.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.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","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","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","22.0.0-alpha.1":"107.0.5286.0","22.0.0-alpha.3":"108.0.5329.0","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","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"} \ 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 abec157221bd82..26cca43ab107d5 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.261", + "version": "1.4.276", "description": "Provides a list of electron-to-chromium version mappings", "main": "index.js", "files": [ @@ -34,7 +34,7 @@ "devDependencies": { "ava": "^4.0.1", "codecov": "^3.8.0", - "electron-releases": "^3.1145.0", + "electron-releases": "^3.1162.0", "nyc": "^15.1.0", "request": "^2.65.0", "shelljs": "^0.8.4" 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 47442de278c4f0..51e832c98ef0e4 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 @@ -98,5 +98,8 @@ module.exports = { "20.0": "104", "20.1": "104", "20.2": "104", - "21.0": "106" + "20.3": "104", + "21.0": "106", + "21.1": "106", + "22.0": "108" }; \ 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 c8d17df3829e52..8dc14d887fdfc7 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","21.0":"106"} \ 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","22.0":"108"} \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/ContainerBase/index.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/ContainerBase/index.js index 44f322ceab4ebd..6825cf11c0c8a0 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/ContainerBase/index.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/ContainerBase/index.js @@ -1,36 +1,33 @@ "use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.Container = exports.Base = exports.ContainerIterator = void 0; + +Object.defineProperty(exports, "t", { + value: true +}); + +exports.ContainerIterator = exports.Container = exports.Base = void 0; + class ContainerIterator { - constructor(iteratorType = ContainerIterator.NORMAL) { - this.iteratorType = iteratorType; + constructor(t = 0) { + this.iteratorType = t; } } + exports.ContainerIterator = ContainerIterator; -ContainerIterator.NORMAL = false; -ContainerIterator.REVERSE = true; + class Base { constructor() { - /** - * @description Container's size. - * @protected - */ - this.length = 0; + this.o = 0; } - /** - * @return The size of the container. - */ size() { - return this.length; + return this.o; } - /** - * @return Boolean about if the container is empty. - */ empty() { - return this.length === 0; + return this.o === 0; } } + exports.Base = Base; -class Container extends Base { -} -exports.Container = Container; + +class Container extends Base {} + +exports.Container = Container; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/Base/index.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/Base/index.js index 70d8cf335ad7e5..e2bd67837e0fb5 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/Base/index.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/Base/index.js @@ -1,39 +1,42 @@ "use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const index_1 = require("../../ContainerBase/index"); -class HashContainer extends index_1.Base { - constructor(initBucketNum = 16, hashFunc = (x) => { - let str; - if (typeof x !== 'string') { - str = JSON.stringify(x); + +Object.defineProperty(exports, "t", { + value: true +}); + +exports.default = void 0; + +var _ContainerBase = require("../../ContainerBase"); + +class HashContainer extends _ContainerBase.Base { + constructor(e = 16, t = (e => { + let t; + if (typeof e !== "string") { + t = JSON.stringify(e); + } else t = e; + let r = 0; + const s = t.length; + for (let e = 0; e < s; e++) { + const s = t.charCodeAt(e); + r = (r << 5) - r + s; + r |= 0; } - else - str = x; - let hashCode = 0; - const strLength = str.length; - for (let i = 0; i < strLength; i++) { - const ch = str.charCodeAt(i); - hashCode = ((hashCode << 5) - hashCode) + ch; - hashCode |= 0; - } - return hashCode >>> 0; - }) { + return r >>> 0; + })) { super(); - if (initBucketNum < 16 || (initBucketNum & (initBucketNum - 1)) !== 0) { - throw new RangeError('InitBucketNum range error'); + if (e < 16 || (e & e - 1) !== 0) { + throw new RangeError("InitBucketNum range error"); } - this.bucketNum = this.initBucketNum = initBucketNum; - this.hashFunc = hashFunc; + this.u = this.te = e; + this.l = t; } clear() { - this.length = 0; - this.bucketNum = this.initBucketNum; - this.hashTable = []; + this.o = 0; + this.u = this.te; + this.i = []; } } -HashContainer.sigma = 0.75; -HashContainer.treeifyThreshold = 8; -HashContainer.untreeifyThreshold = 6; -HashContainer.minTreeifySize = 64; -HashContainer.maxBucketNum = (1 << 30); -exports.default = HashContainer; + +var _default = HashContainer; + +exports.default = _default; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/HashMap.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/HashMap.js index 7ad265f2b6ded9..3f55caf70444b8 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/HashMap.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/HashMap.js @@ -1,200 +1,178 @@ "use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -const index_1 = __importDefault(require("./Base/index")); -const Vector_1 = __importDefault(require("../SequentialContainer/Vector")); -const OrderedMap_1 = __importDefault(require("../TreeContainer/OrderedMap")); -class HashMap extends index_1.default { - constructor(container = [], initBucketNum, hashFunc) { - super(initBucketNum, hashFunc); - this.hashTable = []; - container.forEach(element => this.setElement(element[0], element[1])); + +Object.defineProperty(exports, "t", { + value: true +}); + +exports.default = void 0; + +var _Base = _interopRequireDefault(require("./Base")); + +var _Vector = _interopRequireDefault(require("../SequentialContainer/Vector")); + +var _OrderedMap = _interopRequireDefault(require("../TreeContainer/OrderedMap")); + +function _interopRequireDefault(e) { + return e && e.t ? e : { + default: e + }; +} + +class HashMap extends _Base.default { + constructor(e = [], t, s) { + super(t, s); + this.i = []; + e.forEach((e => this.setElement(e[0], e[1]))); } - reAllocate() { - if (this.bucketNum >= index_1.default.maxBucketNum) - return; - const newHashTable = []; - const originalBucketNum = this.bucketNum; - this.bucketNum <<= 1; - const keys = Object.keys(this.hashTable); - const keyNums = keys.length; - for (let i = 0; i < keyNums; ++i) { - const index = parseInt(keys[i]); - const container = this.hashTable[index]; - const size = container.size(); - if (size === 0) - continue; - if (size === 1) { - const element = container.front(); - newHashTable[this.hashFunc(element[0]) & (this.bucketNum - 1)] = new Vector_1.default([element], false); + h() { + if (this.u >= 1073741824) return; + const e = []; + const t = this.u; + this.u <<= 1; + const s = Object.keys(this.i); + const r = s.length; + for (let n = 0; n < r; ++n) { + const r = parseInt(s[n]); + const i = this.i[r]; + const o = i.size(); + if (o === 0) continue; + if (o === 1) { + const t = i.front(); + e[this.l(t[0]) & this.u - 1] = new _Vector.default([ t ], false); continue; } - const lowList = []; - const highList = []; - container.forEach(element => { - const hashCode = this.hashFunc(element[0]); - if ((hashCode & originalBucketNum) === 0) { - lowList.push(element); - } - else - highList.push(element); - }); - if (container instanceof OrderedMap_1.default) { - if (lowList.length > index_1.default.untreeifyThreshold) { - newHashTable[index] = new OrderedMap_1.default(lowList); - } - else if (lowList.length) { - newHashTable[index] = new Vector_1.default(lowList, false); + const c = []; + const f = []; + i.forEach((e => { + const s = this.l(e[0]); + if ((s & t) === 0) { + c.push(e); + } else f.push(e); + })); + if (i instanceof _OrderedMap.default) { + if (c.length > 6) { + e[r] = new _OrderedMap.default(c); + } else { + e[r] = new _Vector.default(c, false); } - if (highList.length > index_1.default.untreeifyThreshold) { - newHashTable[index + originalBucketNum] = new OrderedMap_1.default(highList); - } - else if (highList.length) { - newHashTable[index + originalBucketNum] = new Vector_1.default(highList, false); - } - } - else { - if (lowList.length >= index_1.default.treeifyThreshold) { - newHashTable[index] = new OrderedMap_1.default(lowList); - } - else if (lowList.length) { - newHashTable[index] = new Vector_1.default(lowList, false); - } - if (highList.length >= index_1.default.treeifyThreshold) { - newHashTable[index + originalBucketNum] = new OrderedMap_1.default(highList); - } - else if (highList.length) { - newHashTable[index + originalBucketNum] = new Vector_1.default(highList, false); + if (f.length > 6) { + e[r + t] = new _OrderedMap.default(f); + } else { + e[r + t] = new _Vector.default(f, false); } + } else { + e[r] = new _Vector.default(c, false); + e[r + t] = new _Vector.default(f, false); } } - this.hashTable = newHashTable; + this.i = e; } - forEach(callback) { - const containers = Object.values(this.hashTable); - const containersNum = containers.length; - let index = 0; - for (let i = 0; i < containersNum; ++i) { - containers[i].forEach(element => callback(element, index++)); + forEach(e) { + const t = Object.values(this.i); + const s = t.length; + let r = 0; + for (let n = 0; n < s; ++n) { + t[n].forEach((t => e(t, r++))); } } - /** - * @description Insert a new key-value pair to hash map or set value by key. - * @param key The key you want to insert. - * @param value The value you want to insert. - * @example HashMap.setElement(1, 2); // insert a key-value pair [1, 2] - */ - setElement(key, value) { - const index = this.hashFunc(key) & (this.bucketNum - 1); - const container = this.hashTable[index]; - if (!container) { - this.length += 1; - this.hashTable[index] = new Vector_1.default([[key, value]], false); - } - else { - const preSize = container.size(); - if (container instanceof Vector_1.default) { - for (const pair of container) { - if (pair[0] === key) { - pair[1] = value; + setElement(e, t) { + const s = this.l(e) & this.u - 1; + const r = this.i[s]; + if (!r) { + this.o += 1; + this.i[s] = new _Vector.default([ [ e, t ] ], false); + } else { + const n = r.size(); + if (r instanceof _Vector.default) { + for (const s of r) { + if (s[0] === e) { + s[1] = t; return; } } - container.pushBack([key, value]); - if (preSize + 1 >= HashMap.treeifyThreshold) { - if (this.bucketNum <= HashMap.minTreeifySize) { - this.length += 1; - this.reAllocate(); + r.pushBack([ e, t ]); + if (n + 1 >= 8) { + if (this.u <= 64) { + this.o += 1; + this.h(); return; } - this.hashTable[index] = new OrderedMap_1.default(this.hashTable[index]); + this.i[s] = new _OrderedMap.default(this.i[s]); } - this.length += 1; - } - else { - container.setElement(key, value); - const curSize = container.size(); - this.length += curSize - preSize; + this.o += 1; + } else { + r.setElement(e, t); + const s = r.size(); + this.o += s - n; } } - if (this.length > this.bucketNum * HashMap.sigma) { - this.reAllocate(); + if (this.o > this.u * .75) { + this.h(); } } - /** - * @description Get the value of the element which has the specified key. - * @param key The key you want to get. - */ - getElementByKey(key) { - const index = this.hashFunc(key) & (this.bucketNum - 1); - const container = this.hashTable[index]; - if (!container) - return undefined; - if (container instanceof OrderedMap_1.default) { - return container.getElementByKey(key); - } - else { - for (const pair of container) { - if (pair[0] === key) - return pair[1]; + getElementByKey(e) { + const t = this.l(e) & this.u - 1; + const s = this.i[t]; + if (!s) return undefined; + if (s instanceof _OrderedMap.default) { + return s.getElementByKey(e); + } else { + for (const t of s) { + if (t[0] === e) return t[1]; } return undefined; } } - eraseElementByKey(key) { - const index = this.hashFunc(key) & (this.bucketNum - 1); - const container = this.hashTable[index]; - if (!container) - return; - if (container instanceof Vector_1.default) { - let pos = 0; - for (const pair of container) { - if (pair[0] === key) { - container.eraseElementByPos(pos); - this.length -= 1; + eraseElementByKey(e) { + const t = this.l(e) & this.u - 1; + const s = this.i[t]; + if (!s) return; + if (s instanceof _Vector.default) { + let t = 0; + for (const r of s) { + if (r[0] === e) { + s.eraseElementByPos(t); + this.o -= 1; return; } - pos += 1; + t += 1; } - } - else { - const preSize = container.size(); - container.eraseElementByKey(key); - const curSize = container.size(); - this.length += curSize - preSize; - if (curSize <= index_1.default.untreeifyThreshold) { - this.hashTable[index] = new Vector_1.default(container); + } else { + const r = s.size(); + s.eraseElementByKey(e); + const n = s.size(); + this.o += n - r; + if (n <= 6) { + this.i[t] = new _Vector.default(s); } } } - find(key) { - const index = this.hashFunc(key) & (this.bucketNum - 1); - const container = this.hashTable[index]; - if (!container) - return false; - if (container instanceof OrderedMap_1.default) { - return !container.find(key) - .equals(container.end()); + find(e) { + const t = this.l(e) & this.u - 1; + const s = this.i[t]; + if (!s) return false; + if (s instanceof _OrderedMap.default) { + return !s.find(e).equals(s.end()); } - for (const pair of container) { - if (pair[0] === key) - return true; + for (const t of s) { + if (t[0] === e) return true; } return false; } [Symbol.iterator]() { - return function* () { - const containers = Object.values(this.hashTable); - const containersNum = containers.length; - for (let i = 0; i < containersNum; ++i) { - const container = containers[i]; - for (const element of container) { - yield element; + return function*() { + const e = Object.values(this.i); + const t = e.length; + for (let s = 0; s < t; ++s) { + const t = e[s]; + for (const e of t) { + yield e; } } }.bind(this)(); } } -exports.default = HashMap; + +var _default = HashMap; + +exports.default = _default; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/HashSet.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/HashSet.js index c01d90411b51dd..78c3c25449a29c 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/HashSet.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/HashContainer/HashSet.js @@ -1,164 +1,149 @@ "use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -const index_1 = __importDefault(require("./Base/index")); -const Vector_1 = __importDefault(require("../SequentialContainer/Vector")); -const OrderedSet_1 = __importDefault(require("../TreeContainer/OrderedSet")); -class HashSet extends index_1.default { - constructor(container = [], initBucketNum, hashFunc) { - super(initBucketNum, hashFunc); - this.hashTable = []; - container.forEach(element => this.insert(element)); + +Object.defineProperty(exports, "t", { + value: true +}); + +exports.default = void 0; + +var _Base = _interopRequireDefault(require("./Base")); + +var _Vector = _interopRequireDefault(require("../SequentialContainer/Vector")); + +var _OrderedSet = _interopRequireDefault(require("../TreeContainer/OrderedSet")); + +function _interopRequireDefault(e) { + return e && e.t ? e : { + default: e + }; +} + +class HashSet extends _Base.default { + constructor(e = [], t, s) { + super(t, s); + this.i = []; + e.forEach((e => this.insert(e))); } - reAllocate() { - if (this.bucketNum >= index_1.default.maxBucketNum) - return; - const newHashTable = []; - const originalBucketNum = this.bucketNum; - this.bucketNum <<= 1; - const keys = Object.keys(this.hashTable); - const keyNums = keys.length; - for (let i = 0; i < keyNums; ++i) { - const index = parseInt(keys[i]); - const container = this.hashTable[index]; - const size = container.size(); - if (size === 0) - continue; - if (size === 1) { - const element = container.front(); - newHashTable[this.hashFunc(element) & (this.bucketNum - 1)] = new Vector_1.default([element], false); + h() { + if (this.u >= 1073741824) return; + const e = []; + const t = this.u; + this.u <<= 1; + const s = Object.keys(this.i); + const i = s.length; + for (let r = 0; r < i; ++r) { + const i = parseInt(s[r]); + const n = this.i[i]; + const o = n.size(); + if (o === 0) continue; + if (o === 1) { + const t = n.front(); + e[this.l(t) & this.u - 1] = new _Vector.default([ t ], false); continue; } - const lowList = []; - const highList = []; - container.forEach(element => { - const hashCode = this.hashFunc(element); - if ((hashCode & originalBucketNum) === 0) { - lowList.push(element); - } - else - highList.push(element); - }); - if (container instanceof OrderedSet_1.default) { - if (lowList.length > index_1.default.untreeifyThreshold) { - newHashTable[index] = new OrderedSet_1.default(lowList); - } - else if (lowList.length) { - newHashTable[index] = new Vector_1.default(lowList, false); + const c = []; + const f = []; + n.forEach((e => { + const s = this.l(e); + if ((s & t) === 0) { + c.push(e); + } else f.push(e); + })); + if (n instanceof _OrderedSet.default) { + if (c.length > 6) { + e[i] = new _OrderedSet.default(c); + } else { + e[i] = new _Vector.default(c, false); } - if (highList.length > index_1.default.untreeifyThreshold) { - newHashTable[index + originalBucketNum] = new OrderedSet_1.default(highList); - } - else if (highList.length) { - newHashTable[index + originalBucketNum] = new Vector_1.default(highList, false); - } - } - else { - if (lowList.length >= index_1.default.treeifyThreshold) { - newHashTable[index] = new OrderedSet_1.default(lowList); - } - else if (lowList.length) { - newHashTable[index] = new Vector_1.default(lowList, false); - } - if (highList.length >= index_1.default.treeifyThreshold) { - newHashTable[index + originalBucketNum] = new OrderedSet_1.default(highList); - } - else if (highList.length) { - newHashTable[index + originalBucketNum] = new Vector_1.default(highList, false); + if (f.length > 6) { + e[i + t] = new _OrderedSet.default(f); + } else { + e[i + t] = new _Vector.default(f, false); } + } else { + e[i] = new _Vector.default(c, false); + e[i + t] = new _Vector.default(f, false); } } - this.hashTable = newHashTable; + this.i = e; } - forEach(callback) { - const containers = Object.values(this.hashTable); - const containersNum = containers.length; - let index = 0; - for (let i = 0; i < containersNum; ++i) { - containers[i].forEach(element => callback(element, index++)); + forEach(e) { + const t = Object.values(this.i); + const s = t.length; + let i = 0; + for (let r = 0; r < s; ++r) { + t[r].forEach((t => e(t, i++))); } } - /** - * @description Insert element to hash set. - * @param element The element you want to insert. - */ - insert(element) { - const index = this.hashFunc(element) & (this.bucketNum - 1); - const container = this.hashTable[index]; - if (!container) { - this.hashTable[index] = new Vector_1.default([element], false); - this.length += 1; - } - else { - const preSize = container.size(); - if (container instanceof Vector_1.default) { - if (!container.find(element) - .equals(container.end())) - return; - container.pushBack(element); - if (preSize + 1 >= index_1.default.treeifyThreshold) { - if (this.bucketNum <= index_1.default.minTreeifySize) { - this.length += 1; - this.reAllocate(); + insert(e) { + const t = this.l(e) & this.u - 1; + const s = this.i[t]; + if (!s) { + this.i[t] = new _Vector.default([ e ], false); + this.o += 1; + } else { + const i = s.size(); + if (s instanceof _Vector.default) { + if (!s.find(e).equals(s.end())) return; + s.pushBack(e); + if (i + 1 >= 8) { + if (this.u <= 64) { + this.o += 1; + this.h(); return; } - this.hashTable[index] = new OrderedSet_1.default(container); + this.i[t] = new _OrderedSet.default(s); } - this.length += 1; - } - else { - container.insert(element); - const curSize = container.size(); - this.length += curSize - preSize; + this.o += 1; + } else { + s.insert(e); + const t = s.size(); + this.o += t - i; } } - if (this.length > this.bucketNum * index_1.default.sigma) { - this.reAllocate(); + if (this.o > this.u * .75) { + this.h(); } } - eraseElementByKey(key) { - const index = this.hashFunc(key) & (this.bucketNum - 1); - const container = this.hashTable[index]; - if (!container) - return; - const preSize = container.size(); - if (preSize === 0) - return; - if (container instanceof Vector_1.default) { - container.eraseElementByValue(key); - const curSize = container.size(); - this.length += curSize - preSize; - } - else { - container.eraseElementByKey(key); - const curSize = container.size(); - this.length += curSize - preSize; - if (curSize <= index_1.default.untreeifyThreshold) { - this.hashTable[index] = new Vector_1.default(container); + eraseElementByKey(e) { + const t = this.l(e) & this.u - 1; + const s = this.i[t]; + if (!s) return; + const i = s.size(); + if (i === 0) return; + if (s instanceof _Vector.default) { + s.eraseElementByValue(e); + const t = s.size(); + this.o += t - i; + } else { + s.eraseElementByKey(e); + const r = s.size(); + this.o += r - i; + if (r <= 6) { + this.i[t] = new _Vector.default(s); } } } - find(element) { - const index = this.hashFunc(element) & (this.bucketNum - 1); - const container = this.hashTable[index]; - if (!container) - return false; - return !container.find(element) - .equals(container.end()); + find(e) { + const t = this.l(e) & this.u - 1; + const s = this.i[t]; + if (!s) return false; + return !s.find(e).equals(s.end()); } [Symbol.iterator]() { - return function* () { - const containers = Object.values(this.hashTable); - const containersNum = containers.length; - for (let i = 0; i < containersNum; ++i) { - const container = containers[i]; - for (const element of container) { - yield element; + return function*() { + const e = Object.values(this.i); + const t = e.length; + for (let s = 0; s < t; ++s) { + const t = e[s]; + for (const e of t) { + yield e; } } }.bind(this)(); } } -exports.default = HashSet; + +var _default = HashSet; + +exports.default = _default; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/OtherContainer/PriorityQueue.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/OtherContainer/PriorityQueue.js index 762fe007b4806e..a4b2cbb32ac963 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/OtherContainer/PriorityQueue.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/OtherContainer/PriorityQueue.js @@ -1,124 +1,112 @@ "use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const index_1 = require("../ContainerBase/index"); -class PriorityQueue extends index_1.Base { - /** - * @description PriorityQueue's constructor. - * @param container Initialize container, must have a forEach function. - * @param cmp Compare function. - * @param copy When the container is an array, you can choose to directly operate on the original object of - * the array or perform a shallow copy. The default is shallow copy. - */ - constructor(container = [], cmp = (x, y) => { - if (x > y) - return -1; - if (x < y) - return 1; + +Object.defineProperty(exports, "t", { + value: true +}); + +exports.default = void 0; + +var _ContainerBase = require("../ContainerBase"); + +class PriorityQueue extends _ContainerBase.Base { + constructor(t = [], s = ((t, s) => { + if (t > s) return -1; + if (t < s) return 1; return 0; - }, copy = true) { + }), i = true) { super(); - this.cmp = cmp; - if (Array.isArray(container)) { - this.priorityQueue = copy ? [...container] : container; + this.p = s; + if (Array.isArray(t)) { + this._ = i ? [ ...t ] : t; + } else { + this._ = []; + t.forEach((t => this._.push(t))); } - else { - this.priorityQueue = []; - container.forEach(element => this.priorityQueue.push(element)); - } - this.length = this.priorityQueue.length; - for (let parent = (this.length - 1) >> 1; parent >= 0; --parent) { - let curParent = parent; - let curChild = (curParent << 1) | 1; - while (curChild < this.length) { - const left = curChild; - const right = left + 1; - let minChild = left; - if (right < this.length && - this.cmp(this.priorityQueue[left], this.priorityQueue[right]) > 0) { - minChild = right; - } - if (this.cmp(this.priorityQueue[curParent], this.priorityQueue[minChild]) <= 0) - break; - [this.priorityQueue[curParent], this.priorityQueue[minChild]] = - [this.priorityQueue[minChild], this.priorityQueue[curParent]]; - curParent = minChild; - curChild = (curParent << 1) | 1; - } + this.o = this._.length; + const e = this.o >> 1; + for (let t = this.o - 1 >> 1; t >= 0; --t) { + this.v(t, e); } } - /** - * @description Adjusting parent's children to suit the nature of the heap. - * @param parent Parent's index. - * @private - */ - adjust(parent) { - const left = (parent << 1) | 1; - const right = (parent << 1) + 2; - if (left < this.length && - this.cmp(this.priorityQueue[parent], this.priorityQueue[left]) > 0) { - [this.priorityQueue[parent], this.priorityQueue[left]] = - [this.priorityQueue[left], this.priorityQueue[parent]]; + B(t) { + const s = this._[t]; + while (t > 0) { + const i = t - 1 >> 1; + const e = this._[i]; + if (this.p(e, s) <= 0) break; + this._[t] = e; + t = i; } - if (right < this.length && - this.cmp(this.priorityQueue[parent], this.priorityQueue[right]) > 0) { - [this.priorityQueue[parent], this.priorityQueue[right]] = - [this.priorityQueue[right], this.priorityQueue[parent]]; + this._[t] = s; + } + v(t, s) { + const i = this._[t]; + while (t < s) { + let s = t << 1 | 1; + const e = s + 1; + let h = this._[s]; + if (e < this.o && this.p(h, this._[e]) > 0) { + s = e; + h = this._[e]; + } + if (this.p(h, i) >= 0) break; + this._[t] = h; + t = s; } + this._[t] = i; } clear() { - this.length = 0; - this.priorityQueue.length = 0; + this.o = 0; + this._.length = 0; } - /** - * @description Push element into a container in order. - * @param element The element you want to push. - */ - push(element) { - this.priorityQueue.push(element); - this.length += 1; - if (this.length === 1) - return; - let curNode = this.length - 1; - while (curNode > 0) { - const parent = (curNode - 1) >> 1; - if (this.cmp(this.priorityQueue[parent], element) <= 0) - break; - this.adjust(parent); - curNode = parent; - } + push(t) { + this._.push(t); + this.B(this.o); + this.o += 1; } - /** - * @description Removes the top element. - */ pop() { - if (!this.length) - return; - const last = this.priorityQueue[this.length - 1]; - this.length -= 1; - let parent = 0; - while (parent < this.length) { - const left = (parent << 1) | 1; - const right = (parent << 1) + 2; - if (left >= this.length) - break; - let minChild = left; - if (right < this.length && - this.cmp(this.priorityQueue[left], this.priorityQueue[right]) > 0) { - minChild = right; - } - if (this.cmp(this.priorityQueue[minChild], last) >= 0) - break; - this.priorityQueue[parent] = this.priorityQueue[minChild]; - parent = minChild; + if (!this.o) return; + const t = this._.pop(); + this.o -= 1; + if (this.o) { + this._[0] = t; + this.v(0, this.o >> 1); } - this.priorityQueue[parent] = last; - this.priorityQueue.pop(); } - /** - * @description Accesses the top element. - */ top() { - return this.priorityQueue[0]; + return this._[0]; + } + find(t) { + return this._.indexOf(t) >= 0; + } + remove(t) { + const s = this._.indexOf(t); + if (s < 0) return false; + if (s === 0) { + this.pop(); + } else if (s === this.o - 1) { + this._.pop(); + this.o -= 1; + } else { + this._.splice(s, 1, this._.pop()); + this.o -= 1; + this.B(s); + this.v(s, this.o >> 1); + } + return true; + } + updateItem(t) { + const s = this._.indexOf(t); + if (s < 0) return false; + this.B(s); + this.v(s, this.o >> 1); + return true; + } + toArray() { + return [ ...this._ ]; } } -exports.default = PriorityQueue; + +var _default = PriorityQueue; + +exports.default = _default; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/OtherContainer/Queue.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/OtherContainer/Queue.js index b83f789c046198..1c13846c905c65 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/OtherContainer/Queue.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/OtherContainer/Queue.js @@ -1,40 +1,44 @@ "use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -const Deque_1 = __importDefault(require("../SequentialContainer/Deque")); -const index_1 = require("../ContainerBase/index"); -class Queue extends index_1.Base { - constructor(container = []) { + +Object.defineProperty(exports, "t", { + value: true +}); + +exports.default = void 0; + +var _Deque = _interopRequireDefault(require("../SequentialContainer/Deque")); + +var _ContainerBase = require("../ContainerBase"); + +function _interopRequireDefault(e) { + return e && e.t ? e : { + default: e + }; +} + +class Queue extends _ContainerBase.Base { + constructor(e = []) { super(); - this.queue = new Deque_1.default(container); - this.length = this.queue.size(); + this.q = new _Deque.default(e); + this.o = this.q.size(); } clear() { - this.queue.clear(); - this.length = 0; + this.q.clear(); + this.o = 0; } - /** - * @description Inserts element to queue's end. - */ - push(element) { - this.queue.pushBack(element); - this.length += 1; + push(e) { + this.q.pushBack(e); + this.o += 1; } - /** - * @description Removes the first element. - */ pop() { - this.queue.popFront(); - if (this.length) - this.length -= 1; + this.q.popFront(); + if (this.o) this.o -= 1; } - /** - * @description Access the first element. - */ front() { - return this.queue.front(); + return this.q.front(); } } -exports.default = Queue; + +var _default = Queue; + +exports.default = _default; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/OtherContainer/Stack.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/OtherContainer/Stack.js index 5c0603a0169868..220d01cb5bc9f4 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/OtherContainer/Stack.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/OtherContainer/Stack.js @@ -1,36 +1,36 @@ "use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const index_1 = require("../ContainerBase/index"); -class Stack extends index_1.Base { - constructor(container = []) { + +Object.defineProperty(exports, "t", { + value: true +}); + +exports.default = void 0; + +var _ContainerBase = require("../ContainerBase"); + +class Stack extends _ContainerBase.Base { + constructor(t = []) { super(); - this.stack = []; - container.forEach(element => this.push(element)); + this.C = []; + t.forEach((t => this.push(t))); } clear() { - this.length = 0; - this.stack.length = 0; + this.o = 0; + this.C.length = 0; } - /** - * @description Insert element to stack's end. - */ - push(element) { - this.stack.push(element); - this.length += 1; + push(t) { + this.C.push(t); + this.o += 1; } - /** - * @description Removes the end element. - */ pop() { - this.stack.pop(); - if (this.length > 0) - this.length -= 1; + this.C.pop(); + if (this.o > 0) this.o -= 1; } - /** - * @description Accesses the end element. - */ top() { - return this.stack[this.length - 1]; + return this.C[this.o - 1]; } } -exports.default = Stack; + +var _default = Stack; + +exports.default = _default; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Base/RandomIterator.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Base/RandomIterator.js index 914d3a8a57c53d..b3b07690420d65 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Base/RandomIterator.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Base/RandomIterator.js @@ -1,58 +1,67 @@ "use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); + +Object.defineProperty(exports, "t", { + value: true +}); + exports.RandomIterator = void 0; -const checkParams_1 = require("../../../utils/checkParams"); -const index_1 = require("../../ContainerBase/index"); -class RandomIterator extends index_1.ContainerIterator { - constructor(index, size, getElementByPos, setElementByPos, iteratorType) { - super(iteratorType); - this.node = index; - this.size = size; - this.getElementByPos = getElementByPos; - this.setElementByPos = setElementByPos; - if (this.iteratorType === index_1.ContainerIterator.NORMAL) { - this.pre = function () { - if (this.node === 0) { - throw new RangeError('Deque iterator access denied!'); + +var _ContainerBase = require("../../ContainerBase"); + +class RandomIterator extends _ContainerBase.ContainerIterator { + constructor(t, r, e, i, s) { + super(s); + this.I = t; + this.D = r; + this.g = e; + this.m = i; + if (this.iteratorType === 0) { + this.pre = function() { + if (this.I === 0) { + throw new RangeError("Random iterator access denied!"); } - this.node -= 1; + this.I -= 1; return this; }; - this.next = function () { - if (this.node === this.size()) { - throw new RangeError('Deque Iterator access denied!'); + this.next = function() { + if (this.I === this.D()) { + throw new RangeError("Random Iterator access denied!"); } - this.node += 1; + this.I += 1; return this; }; - } - else { - this.pre = function () { - if (this.node === this.size() - 1) { - throw new RangeError('Deque iterator access denied!'); + } else { + this.pre = function() { + if (this.I === this.D() - 1) { + throw new RangeError("Random iterator access denied!"); } - this.node += 1; + this.I += 1; return this; }; - this.next = function () { - if (this.node === -1) { - throw new RangeError('Deque iterator access denied!'); + this.next = function() { + if (this.I === -1) { + throw new RangeError("Random iterator access denied!"); } - this.node -= 1; + this.I -= 1; return this; }; } } get pointer() { - (0, checkParams_1.checkWithinAccessParams)(this.node, 0, this.size() - 1); - return this.getElementByPos(this.node); + if (this.I < 0 || this.I > this.D() - 1) { + throw new RangeError; + } + return this.g(this.I); } - set pointer(newValue) { - (0, checkParams_1.checkWithinAccessParams)(this.node, 0, this.size() - 1); - this.setElementByPos(this.node, newValue); + set pointer(t) { + if (this.I < 0 || this.I > this.D() - 1) { + throw new RangeError; + } + this.m(this.I, t); } - equals(obj) { - return this.node === obj.node; + equals(t) { + return this.I === t.I; } } -exports.RandomIterator = RandomIterator; + +exports.RandomIterator = RandomIterator; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Base/index.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Base/index.js index 9b4a9cfbfee05a..620c525ac55f87 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Base/index.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Base/index.js @@ -1,6 +1,15 @@ "use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const index_1 = require("../../ContainerBase/index"); -class SequentialContainer extends index_1.Container { -} -exports.default = SequentialContainer; + +Object.defineProperty(exports, "t", { + value: true +}); + +exports.default = void 0; + +var _ContainerBase = require("../../ContainerBase"); + +class SequentialContainer extends _ContainerBase.Container {} + +var _default = SequentialContainer; + +exports.default = _default; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Deque.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Deque.js index 79de138b71cb72..ac864649c47114 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Deque.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Deque.js @@ -1,362 +1,324 @@ "use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.DequeIterator = void 0; -const index_1 = __importDefault(require("./Base/index")); -const checkParams_1 = require("../../utils/checkParams"); -const index_2 = require("../ContainerBase/index"); -const RandomIterator_1 = require("./Base/RandomIterator"); -class DequeIterator extends RandomIterator_1.RandomIterator { + +Object.defineProperty(exports, "t", { + value: true +}); + +exports.default = exports.DequeIterator = void 0; + +var _Base = _interopRequireDefault(require("./Base")); + +var _RandomIterator = require("./Base/RandomIterator"); + +function _interopRequireDefault(t) { + return t && t.t ? t : { + default: t + }; +} + +class DequeIterator extends _RandomIterator.RandomIterator { copy() { - return new DequeIterator(this.node, this.size, this.getElementByPos, this.setElementByPos, this.iteratorType); + return new DequeIterator(this.I, this.D, this.g, this.m, this.iteratorType); } } + exports.DequeIterator = DequeIterator; -class Deque extends index_1.default { - constructor(container = [], bucketSize = (1 << 12)) { + +class Deque extends _Base.default { + constructor(t = [], i = 1 << 12) { super(); - this.first = 0; - this.curFirst = 0; - this.last = 0; - this.curLast = 0; - this.bucketNum = 0; - this.map = []; - let _length; - if ('size' in container) { - if (typeof container.size === 'number') { - _length = container.size; - } - else { - _length = container.size(); + this.R = 0; + this.k = 0; + this.N = 0; + this.M = 0; + this.u = 0; + this.P = []; + let s; + if ("size" in t) { + if (typeof t.size === "number") { + s = t.size; + } else { + s = t.size(); } + } else if ("length" in t) { + s = t.length; + } else { + throw new RangeError("Can't get container's size!"); } - else if ('length' in container) { - _length = container.length; - } - else { - throw new RangeError('Can\'t get container\'s size!'); + this.A = i; + this.u = Math.max(Math.ceil(s / this.A), 1); + for (let t = 0; t < this.u; ++t) { + this.P.push(new Array(this.A)); } - this.bucketSize = bucketSize; - this.bucketNum = Math.max(Math.ceil(_length / this.bucketSize), 1); - for (let i = 0; i < this.bucketNum; ++i) { - this.map.push(new Array(this.bucketSize)); - } - const needBucketNum = Math.ceil(_length / this.bucketSize); - this.first = this.last = (this.bucketNum >> 1) - (needBucketNum >> 1); - this.curFirst = this.curLast = (this.bucketSize - _length % this.bucketSize) >> 1; - container.forEach(element => this.pushBack(element)); + const h = Math.ceil(s / this.A); + this.R = this.N = (this.u >> 1) - (h >> 1); + this.k = this.M = this.A - s % this.A >> 1; + t.forEach((t => this.pushBack(t))); this.size = this.size.bind(this); this.getElementByPos = this.getElementByPos.bind(this); this.setElementByPos = this.setElementByPos.bind(this); } - /** - * @description Growth the Deque. - * @private - */ - reAllocate() { - const newMap = []; - const addBucketNum = Math.max(this.bucketNum >> 1, 1); - for (let i = 0; i < addBucketNum; ++i) { - newMap[i] = new Array(this.bucketSize); + h() { + const t = []; + const i = Math.max(this.u >> 1, 1); + for (let s = 0; s < i; ++s) { + t[s] = new Array(this.A); } - for (let i = this.first; i < this.bucketNum; ++i) { - newMap[newMap.length] = this.map[i]; + for (let i = this.R; i < this.u; ++i) { + t[t.length] = this.P[i]; } - for (let i = 0; i < this.last; ++i) { - newMap[newMap.length] = this.map[i]; + for (let i = 0; i < this.N; ++i) { + t[t.length] = this.P[i]; } - newMap[newMap.length] = [...this.map[this.last]]; - this.first = addBucketNum; - this.last = newMap.length - 1; - for (let i = 0; i < addBucketNum; ++i) { - newMap[newMap.length] = new Array(this.bucketSize); + t[t.length] = [ ...this.P[this.N] ]; + this.R = i; + this.N = t.length - 1; + for (let s = 0; s < i; ++s) { + t[t.length] = new Array(this.A); } - this.map = newMap; - this.bucketNum = newMap.length; + this.P = t; + this.u = t.length; } - /** - * @description Get the bucket position of the element and the pointer position by index. - * @param pos The element's index. - * @private - */ - getElementIndex(pos) { - const offset = this.curFirst + pos + 1; - const offsetRemainder = offset % this.bucketSize; - let curNodePointerIndex = offsetRemainder - 1; - let curNodeBucketIndex = this.first + (offset - offsetRemainder) / this.bucketSize; - if (offsetRemainder === 0) - curNodeBucketIndex -= 1; - curNodeBucketIndex %= this.bucketNum; - if (curNodePointerIndex < 0) - curNodePointerIndex += this.bucketSize; - return { curNodeBucketIndex, curNodePointerIndex }; + F(t) { + const i = this.k + t + 1; + const s = i % this.A; + let h = s - 1; + let e = this.R + (i - s) / this.A; + if (s === 0) e -= 1; + e %= this.u; + if (h < 0) h += this.A; + return { + curNodeBucketIndex: e, + curNodePointerIndex: h + }; } clear() { - this.map = [[]]; - this.bucketNum = 1; - this.first = this.last = this.length = 0; - this.curFirst = this.curLast = this.bucketSize >> 1; + this.P = [ [] ]; + this.u = 1; + this.R = this.N = this.o = 0; + this.k = this.M = this.A >> 1; } front() { - return this.map[this.first][this.curFirst]; + return this.P[this.R][this.k]; } back() { - return this.map[this.last][this.curLast]; + return this.P[this.N][this.M]; } begin() { return new DequeIterator(0, this.size, this.getElementByPos, this.setElementByPos); } end() { - return new DequeIterator(this.length, this.size, this.getElementByPos, this.setElementByPos); + return new DequeIterator(this.o, this.size, this.getElementByPos, this.setElementByPos); } rBegin() { - return new DequeIterator(this.length - 1, this.size, this.getElementByPos, this.setElementByPos, index_2.ContainerIterator.REVERSE); + return new DequeIterator(this.o - 1, this.size, this.getElementByPos, this.setElementByPos, 1); } rEnd() { - return new DequeIterator(-1, this.size, this.getElementByPos, this.setElementByPos, index_2.ContainerIterator.REVERSE); + return new DequeIterator(-1, this.size, this.getElementByPos, this.setElementByPos, 1); } - pushBack(element) { - if (this.length) { - if (this.curLast < this.bucketSize - 1) { - this.curLast += 1; - } - else if (this.last < this.bucketNum - 1) { - this.last += 1; - this.curLast = 0; - } - else { - this.last = 0; - this.curLast = 0; + pushBack(t) { + if (this.o) { + if (this.M < this.A - 1) { + this.M += 1; + } else if (this.N < this.u - 1) { + this.N += 1; + this.M = 0; + } else { + this.N = 0; + this.M = 0; } - if (this.last === this.first && - this.curLast === this.curFirst) - this.reAllocate(); + if (this.N === this.R && this.M === this.k) this.h(); } - this.length += 1; - this.map[this.last][this.curLast] = element; + this.o += 1; + this.P[this.N][this.M] = t; } popBack() { - if (!this.length) - return; - this.map[this.last][this.curLast] = undefined; - if (this.length !== 1) { - if (this.curLast > 0) { - this.curLast -= 1; - } - else if (this.last > 0) { - this.last -= 1; - this.curLast = this.bucketSize - 1; - } - else { - this.last = this.bucketNum - 1; - this.curLast = this.bucketSize - 1; + if (!this.o) return; + this.P[this.N][this.M] = undefined; + if (this.o !== 1) { + if (this.M > 0) { + this.M -= 1; + } else if (this.N > 0) { + this.N -= 1; + this.M = this.A - 1; + } else { + this.N = this.u - 1; + this.M = this.A - 1; } } - this.length -= 1; + this.o -= 1; } - /** - * @description Push the element to the front. - * @param element The element you want to push. - */ - pushFront(element) { - if (this.length) { - if (this.curFirst > 0) { - this.curFirst -= 1; + pushFront(t) { + if (this.o) { + if (this.k > 0) { + this.k -= 1; + } else if (this.R > 0) { + this.R -= 1; + this.k = this.A - 1; + } else { + this.R = this.u - 1; + this.k = this.A - 1; } - else if (this.first > 0) { - this.first -= 1; - this.curFirst = this.bucketSize - 1; - } - else { - this.first = this.bucketNum - 1; - this.curFirst = this.bucketSize - 1; - } - if (this.first === this.last && - this.curFirst === this.curLast) - this.reAllocate(); + if (this.R === this.N && this.k === this.M) this.h(); } - this.length += 1; - this.map[this.first][this.curFirst] = element; + this.o += 1; + this.P[this.R][this.k] = t; } - /** - * @description Remove the first element. - */ popFront() { - if (!this.length) - return; - this.map[this.first][this.curFirst] = undefined; - if (this.length !== 1) { - if (this.curFirst < this.bucketSize - 1) { - this.curFirst += 1; - } - else if (this.first < this.bucketNum - 1) { - this.first += 1; - this.curFirst = 0; - } - else { - this.first = 0; - this.curFirst = 0; + if (!this.o) return; + this.P[this.R][this.k] = undefined; + if (this.o !== 1) { + if (this.k < this.A - 1) { + this.k += 1; + } else if (this.R < this.u - 1) { + this.R += 1; + this.k = 0; + } else { + this.R = 0; + this.k = 0; } } - this.length -= 1; + this.o -= 1; } - forEach(callback) { - for (let i = 0; i < this.length; ++i) { - callback(this.getElementByPos(i), i); + forEach(t) { + for (let i = 0; i < this.o; ++i) { + t(this.getElementByPos(i), i); } } - getElementByPos(pos) { - (0, checkParams_1.checkWithinAccessParams)(pos, 0, this.length - 1); - const { curNodeBucketIndex, curNodePointerIndex } = this.getElementIndex(pos); - return this.map[curNodeBucketIndex][curNodePointerIndex]; - } - setElementByPos(pos, element) { - (0, checkParams_1.checkWithinAccessParams)(pos, 0, this.length - 1); - const { curNodeBucketIndex, curNodePointerIndex } = this.getElementIndex(pos); - this.map[curNodeBucketIndex][curNodePointerIndex] = element; + getElementByPos(t) { + if (t < 0 || t > this.o - 1) { + throw new RangeError; + } + const {curNodeBucketIndex: i, curNodePointerIndex: s} = this.F(t); + return this.P[i][s]; } - insert(pos, element, num = 1) { - (0, checkParams_1.checkWithinAccessParams)(pos, 0, this.length); - if (pos === 0) { - while (num--) - this.pushFront(element); + setElementByPos(t, i) { + if (t < 0 || t > this.o - 1) { + throw new RangeError; } - else if (pos === this.length) { - while (num--) - this.pushBack(element); + const {curNodeBucketIndex: s, curNodePointerIndex: h} = this.F(t); + this.P[s][h] = i; + } + insert(t, i, s = 1) { + if (t < 0 || t > this.o) { + throw new RangeError; } - else { - const arr = []; - for (let i = pos; i < this.length; ++i) { - arr.push(this.getElementByPos(i)); + if (t === 0) { + while (s--) this.pushFront(i); + } else if (t === this.o) { + while (s--) this.pushBack(i); + } else { + const h = []; + for (let i = t; i < this.o; ++i) { + h.push(this.getElementByPos(i)); } - this.cut(pos - 1); - for (let i = 0; i < num; ++i) - this.pushBack(element); - for (let i = 0; i < arr.length; ++i) - this.pushBack(arr[i]); + this.cut(t - 1); + for (let t = 0; t < s; ++t) this.pushBack(i); + for (let t = 0; t < h.length; ++t) this.pushBack(h[t]); } } - /** - * @description Remove all elements after the specified position (excluding the specified position). - * @param pos The previous position of the first removed element. - * @example deque.cut(1); // Then deque's size will be 2. deque -> [0, 1] - */ - cut(pos) { - if (pos < 0) { + cut(t) { + if (t < 0) { this.clear(); return; } - const { curNodeBucketIndex, curNodePointerIndex } = this.getElementIndex(pos); - this.last = curNodeBucketIndex; - this.curLast = curNodePointerIndex; - this.length = pos + 1; + const {curNodeBucketIndex: i, curNodePointerIndex: s} = this.F(t); + this.N = i; + this.M = s; + this.o = t + 1; } - eraseElementByPos(pos) { - (0, checkParams_1.checkWithinAccessParams)(pos, 0, this.length - 1); - if (pos === 0) - this.popFront(); - else if (pos === this.length - 1) - this.popBack(); - else { - const arr = []; - for (let i = pos + 1; i < this.length; ++i) { - arr.push(this.getElementByPos(i)); + eraseElementByPos(t) { + if (t < 0 || t > this.o - 1) { + throw new RangeError; + } + if (t === 0) this.popFront(); else if (t === this.o - 1) this.popBack(); else { + const i = []; + for (let s = t + 1; s < this.o; ++s) { + i.push(this.getElementByPos(s)); } - this.cut(pos); + this.cut(t); this.popBack(); - arr.forEach(element => this.pushBack(element)); + i.forEach((t => this.pushBack(t))); } } - eraseElementByValue(value) { - if (!this.length) - return; - const arr = []; - for (let i = 0; i < this.length; ++i) { - const element = this.getElementByPos(i); - if (element !== value) - arr.push(element); + eraseElementByValue(t) { + if (!this.o) return; + const i = []; + for (let s = 0; s < this.o; ++s) { + const h = this.getElementByPos(s); + if (h !== t) i.push(h); } - const _length = arr.length; - for (let i = 0; i < _length; ++i) - this.setElementByPos(i, arr[i]); - this.cut(_length - 1); + const s = i.length; + for (let t = 0; t < s; ++t) this.setElementByPos(t, i[t]); + this.cut(s - 1); } - eraseElementByIterator(iter) { - // @ts-ignore - const node = iter.node; - this.eraseElementByPos(node); - iter = iter.next(); - return iter; + eraseElementByIterator(t) { + const i = t.I; + this.eraseElementByPos(i); + t = t.next(); + return t; } - find(element) { - for (let i = 0; i < this.length; ++i) { - if (this.getElementByPos(i) === element) { + find(t) { + for (let i = 0; i < this.o; ++i) { + if (this.getElementByPos(i) === t) { return new DequeIterator(i, this.size, this.getElementByPos, this.setElementByPos); } } return this.end(); } reverse() { - let l = 0; - let r = this.length - 1; - while (l < r) { - const tmp = this.getElementByPos(l); - this.setElementByPos(l, this.getElementByPos(r)); - this.setElementByPos(r, tmp); - l += 1; - r -= 1; + let t = 0; + let i = this.o - 1; + while (t < i) { + const s = this.getElementByPos(t); + this.setElementByPos(t, this.getElementByPos(i)); + this.setElementByPos(i, s); + t += 1; + i -= 1; } } unique() { - if (this.length <= 1) - return; - let index = 1; - let pre = this.getElementByPos(0); - for (let i = 1; i < this.length; ++i) { - const cur = this.getElementByPos(i); - if (cur !== pre) { - pre = cur; - this.setElementByPos(index++, cur); + if (this.o <= 1) return; + let t = 1; + let i = this.getElementByPos(0); + for (let s = 1; s < this.o; ++s) { + const h = this.getElementByPos(s); + if (h !== i) { + i = h; + this.setElementByPos(t++, h); } } - while (this.length > index) - this.popBack(); + while (this.o > t) this.popBack(); } - sort(cmp) { - const arr = []; - for (let i = 0; i < this.length; ++i) { - arr.push(this.getElementByPos(i)); + sort(t) { + const i = []; + for (let t = 0; t < this.o; ++t) { + i.push(this.getElementByPos(t)); } - arr.sort(cmp); - for (let i = 0; i < this.length; ++i) - this.setElementByPos(i, arr[i]); + i.sort(t); + for (let t = 0; t < this.o; ++t) this.setElementByPos(t, i[t]); } - /** - * @description Remove as much useless space as possible. - */ shrinkToFit() { - if (!this.length) - return; - const arr = []; - this.forEach(element => arr.push(element)); - this.bucketNum = Math.max(Math.ceil(this.length / this.bucketSize), 1); - this.length = this.first = this.last = this.curFirst = this.curLast = 0; - this.map = []; - for (let i = 0; i < this.bucketNum; ++i) { - this.map.push(new Array(this.bucketSize)); + if (!this.o) return; + const t = []; + this.forEach((i => t.push(i))); + this.u = Math.max(Math.ceil(this.o / this.A), 1); + this.o = this.R = this.N = this.k = this.M = 0; + this.P = []; + for (let t = 0; t < this.u; ++t) { + this.P.push(new Array(this.A)); } - for (let i = 0; i < arr.length; ++i) - this.pushBack(arr[i]); + for (let i = 0; i < t.length; ++i) this.pushBack(t[i]); } [Symbol.iterator]() { - return function* () { - for (let i = 0; i < this.length; ++i) { - yield this.getElementByPos(i); + return function*() { + for (let t = 0; t < this.o; ++t) { + yield this.getElementByPos(t); } }.bind(this)(); } } -exports.default = Deque; + +var _default = Deque; + +exports.default = _default; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/LinkList.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/LinkList.js index ff87de8df03cc1..e4a0d73eca4dc9 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/LinkList.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/LinkList.js @@ -1,397 +1,366 @@ "use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.LinkListIterator = exports.LinkNode = void 0; -const index_1 = __importDefault(require("./Base/index")); -const checkParams_1 = require("../../utils/checkParams"); -const index_2 = require("../ContainerBase/index"); + +Object.defineProperty(exports, "t", { + value: true +}); + +exports.default = exports.LinkNode = exports.LinkListIterator = void 0; + +var _Base = _interopRequireDefault(require("./Base")); + +var _ContainerBase = require("../ContainerBase"); + +function _interopRequireDefault(t) { + return t && t.t ? t : { + default: t + }; +} + class LinkNode { - constructor(element) { - this.value = undefined; - this.pre = undefined; - this.next = undefined; - this.value = element; + constructor(t) { + this.L = undefined; + this.j = undefined; + this.O = undefined; + this.L = t; } } + exports.LinkNode = LinkNode; -class LinkListIterator extends index_2.ContainerIterator { - constructor(node, header, iteratorType) { - super(iteratorType); - this.node = node; - this.header = header; - if (this.iteratorType === index_2.ContainerIterator.NORMAL) { - this.pre = function () { - if (this.node.pre === this.header) { - throw new RangeError('LinkList iterator access denied!'); + +class LinkListIterator extends _ContainerBase.ContainerIterator { + constructor(t, i, s) { + super(s); + this.I = t; + this.S = i; + if (this.iteratorType === 0) { + this.pre = function() { + if (this.I.j === this.S) { + throw new RangeError("LinkList iterator access denied!"); } - this.node = this.node.pre; + this.I = this.I.j; return this; }; - this.next = function () { - if (this.node === this.header) { - throw new RangeError('LinkList iterator access denied!'); + this.next = function() { + if (this.I === this.S) { + throw new RangeError("LinkList iterator access denied!"); } - this.node = this.node.next; + this.I = this.I.O; return this; }; - } - else { - this.pre = function () { - if (this.node.next === this.header) { - throw new RangeError('LinkList iterator access denied!'); + } else { + this.pre = function() { + if (this.I.O === this.S) { + throw new RangeError("LinkList iterator access denied!"); } - this.node = this.node.next; + this.I = this.I.O; return this; }; - this.next = function () { - if (this.node === this.header) { - throw new RangeError('LinkList iterator access denied!'); + this.next = function() { + if (this.I === this.S) { + throw new RangeError("LinkList iterator access denied!"); } - this.node = this.node.pre; + this.I = this.I.j; return this; }; } } get pointer() { - if (this.node === this.header) { - throw new RangeError('LinkList iterator access denied!'); + if (this.I === this.S) { + throw new RangeError("LinkList iterator access denied!"); } - return this.node.value; + return this.I.L; } - set pointer(newValue) { - if (this.node === this.header) { - throw new RangeError('LinkList iterator access denied!'); + set pointer(t) { + if (this.I === this.S) { + throw new RangeError("LinkList iterator access denied!"); } - this.node.value = newValue; + this.I.L = t; } - equals(obj) { - return this.node === obj.node; + equals(t) { + return this.I === t.I; } copy() { - return new LinkListIterator(this.node, this.header, this.iteratorType); + return new LinkListIterator(this.I, this.S, this.iteratorType); } } + exports.LinkListIterator = LinkListIterator; -class LinkList extends index_1.default { - constructor(container = []) { + +class LinkList extends _Base.default { + constructor(t = []) { super(); - this.header = new LinkNode(); - this.head = undefined; - this.tail = undefined; - container.forEach(element => this.pushBack(element)); + this.S = new LinkNode; + this.V = undefined; + this.G = undefined; + t.forEach((t => this.pushBack(t))); } clear() { - this.length = 0; - this.head = this.tail = undefined; - this.header.pre = this.header.next = undefined; + this.o = 0; + this.V = this.G = undefined; + this.S.j = this.S.O = undefined; } begin() { - return new LinkListIterator(this.head || this.header, this.header); + return new LinkListIterator(this.V || this.S, this.S); } end() { - return new LinkListIterator(this.header, this.header); + return new LinkListIterator(this.S, this.S); } rBegin() { - return new LinkListIterator(this.tail || this.header, this.header, index_2.ContainerIterator.REVERSE); + return new LinkListIterator(this.G || this.S, this.S, 1); } rEnd() { - return new LinkListIterator(this.header, this.header, index_2.ContainerIterator.REVERSE); + return new LinkListIterator(this.S, this.S, 1); } front() { - return this.head ? this.head.value : undefined; + return this.V ? this.V.L : undefined; } back() { - return this.tail ? this.tail.value : undefined; + return this.G ? this.G.L : undefined; } - forEach(callback) { - if (!this.length) - return; - let curNode = this.head; - let index = 0; - while (curNode !== this.header) { - callback(curNode.value, index++); - curNode = curNode.next; + forEach(t) { + if (!this.o) return; + let i = this.V; + let s = 0; + while (i !== this.S) { + t(i.L, s++); + i = i.O; } } - getElementByPos(pos) { - (0, checkParams_1.checkWithinAccessParams)(pos, 0, this.length - 1); - let curNode = this.head; - while (pos--) { - curNode = curNode.next; + getElementByPos(t) { + if (t < 0 || t > this.o - 1) { + throw new RangeError; } - return curNode.value; + let i = this.V; + while (t--) { + i = i.O; + } + return i.L; } - eraseElementByPos(pos) { - (0, checkParams_1.checkWithinAccessParams)(pos, 0, this.length - 1); - if (pos === 0) - this.popFront(); - else if (pos === this.length - 1) - this.popBack(); - else { - let curNode = this.head; - while (pos--) { - curNode = curNode.next; + eraseElementByPos(t) { + if (t < 0 || t > this.o - 1) { + throw new RangeError; + } + if (t === 0) this.popFront(); else if (t === this.o - 1) this.popBack(); else { + let i = this.V; + while (t--) { + i = i.O; } - curNode = curNode; - const pre = curNode.pre; - const next = curNode.next; - next.pre = pre; - pre.next = next; - this.length -= 1; + i = i; + const s = i.j; + const e = i.O; + e.j = s; + s.O = e; + this.o -= 1; } } - eraseElementByValue(value) { - while (this.head && this.head.value === value) - this.popFront(); - while (this.tail && this.tail.value === value) - this.popBack(); - if (!this.head) - return; - let curNode = this.head; - while (curNode !== this.header) { - if (curNode.value === value) { - const pre = curNode.pre; - const next = curNode.next; - if (next) - next.pre = pre; - if (pre) - pre.next = next; - this.length -= 1; + eraseElementByValue(t) { + while (this.V && this.V.L === t) this.popFront(); + while (this.G && this.G.L === t) this.popBack(); + if (!this.V) return; + let i = this.V; + while (i !== this.S) { + if (i.L === t) { + const t = i.j; + const s = i.O; + s.j = t; + t.O = s; + this.o -= 1; } - curNode = curNode.next; + i = i.O; } } - eraseElementByIterator(iter) { - // @ts-ignore - const node = iter.node; - if (node === this.header) { - throw new RangeError('Invalid iterator'); + eraseElementByIterator(t) { + const i = t.I; + if (i === this.S) { + throw new RangeError("Invalid iterator"); } - iter = iter.next(); - if (this.head === node) - this.popFront(); - else if (this.tail === node) - this.popBack(); - else { - const pre = node.pre; - const next = node.next; - if (next) - next.pre = pre; - if (pre) - pre.next = next; - this.length -= 1; + t = t.next(); + if (this.V === i) this.popFront(); else if (this.G === i) this.popBack(); else { + const t = i.j; + const s = i.O; + s.j = t; + t.O = s; + this.o -= 1; } - return iter; + return t; } - pushBack(element) { - this.length += 1; - const newTail = new LinkNode(element); - if (!this.tail) { - this.head = this.tail = newTail; - this.header.next = this.head; - this.head.pre = this.header; - } - else { - this.tail.next = newTail; - newTail.pre = this.tail; - this.tail = newTail; + pushBack(t) { + this.o += 1; + const i = new LinkNode(t); + if (!this.G) { + this.V = this.G = i; + this.S.O = this.V; + this.V.j = this.S; + } else { + this.G.O = i; + i.j = this.G; + this.G = i; } - this.tail.next = this.header; - this.header.pre = this.tail; + this.G.O = this.S; + this.S.j = this.G; } popBack() { - if (!this.tail) - return; - this.length -= 1; - if (this.head === this.tail) { - this.head = this.tail = undefined; - this.header.next = undefined; + if (!this.G) return; + this.o -= 1; + if (this.V === this.G) { + this.V = this.G = undefined; + this.S.O = undefined; + } else { + this.G = this.G.j; + this.G.O = this.S; } - else { - this.tail = this.tail.pre; - if (this.tail) - this.tail.next = undefined; - } - this.header.pre = this.tail; - if (this.tail) - this.tail.next = this.header; + this.S.j = this.G; } - setElementByPos(pos, element) { - (0, checkParams_1.checkWithinAccessParams)(pos, 0, this.length - 1); - let curNode = this.head; - while (pos--) { - curNode = curNode.next; + setElementByPos(t, i) { + if (t < 0 || t > this.o - 1) { + throw new RangeError; } - curNode.value = element; - } - insert(pos, element, num = 1) { - (0, checkParams_1.checkWithinAccessParams)(pos, 0, this.length); - if (num <= 0) - return; - if (pos === 0) { - while (num--) - this.pushFront(element); + let s = this.V; + while (t--) { + s = s.O; } - else if (pos === this.length) { - while (num--) - this.pushBack(element); + s.L = i; + } + insert(t, i, s = 1) { + if (t < 0 || t > this.o) { + throw new RangeError; } - else { - let curNode = this.head; - for (let i = 1; i < pos; ++i) { - curNode = curNode.next; + if (s <= 0) return; + if (t === 0) { + while (s--) this.pushFront(i); + } else if (t === this.o) { + while (s--) this.pushBack(i); + } else { + let e = this.V; + for (let i = 1; i < t; ++i) { + e = e.O; } - const next = curNode.next; - this.length += num; - while (num--) { - curNode.next = new LinkNode(element); - curNode.next.pre = curNode; - curNode = curNode.next; + const h = e.O; + this.o += s; + while (s--) { + e.O = new LinkNode(i); + e.O.j = e; + e = e.O; } - curNode.next = next; - if (next) - next.pre = curNode; + e.O = h; + h.j = e; } } - find(element) { - if (!this.head) - return this.end(); - let curNode = this.head; - while (curNode !== this.header) { - if (curNode.value === element) { - return new LinkListIterator(curNode, this.header); + find(t) { + if (!this.V) return this.end(); + let i = this.V; + while (i !== this.S) { + if (i.L === t) { + return new LinkListIterator(i, this.S); } - curNode = curNode.next; + i = i.O; } return this.end(); } reverse() { - if (this.length <= 1) - return; - let pHead = this.head; - let pTail = this.tail; - let cnt = 0; - while ((cnt << 1) < this.length) { - const tmp = pHead.value; - pHead.value = pTail.value; - pTail.value = tmp; - pHead = pHead.next; - pTail = pTail.pre; - cnt += 1; + if (this.o <= 1) return; + let t = this.V; + let i = this.G; + let s = 0; + while (s << 1 < this.o) { + const e = t.L; + t.L = i.L; + i.L = e; + t = t.O; + i = i.j; + s += 1; } } unique() { - if (this.length <= 1) - return; - let curNode = this.head; - while (curNode !== this.header) { - let tmpNode = curNode; - while (tmpNode.next && tmpNode.value === tmpNode.next.value) { - tmpNode = tmpNode.next; - this.length -= 1; + if (this.o <= 1) return; + let t = this.V; + while (t !== this.S) { + let i = t; + while (i.O && i.L === i.O.L) { + i = i.O; + this.o -= 1; } - curNode.next = tmpNode.next; - if (curNode.next) - curNode.next.pre = curNode; - curNode = curNode.next; + t.O = i.O; + t.O.j = t; + t = t.O; } } - sort(cmp) { - if (this.length <= 1) - return; - const arr = []; - this.forEach(element => arr.push(element)); - arr.sort(cmp); - let curNode = this.head; - arr.forEach((element) => { - curNode.value = element; - curNode = curNode.next; - }); + sort(t) { + if (this.o <= 1) return; + const i = []; + this.forEach((t => i.push(t))); + i.sort(t); + let s = this.V; + i.forEach((t => { + s.L = t; + s = s.O; + })); } - /** - * @description Push an element to the front. - * @param element The element you want to push. - */ - pushFront(element) { - this.length += 1; - const newHead = new LinkNode(element); - if (!this.head) { - this.head = this.tail = newHead; - this.tail.next = this.header; - this.header.pre = this.tail; + pushFront(t) { + this.o += 1; + const i = new LinkNode(t); + if (!this.V) { + this.V = this.G = i; + this.G.O = this.S; + this.S.j = this.G; + } else { + i.O = this.V; + this.V.j = i; + this.V = i; } - else { - newHead.next = this.head; - this.head.pre = newHead; - this.head = newHead; - } - this.header.next = this.head; - this.head.pre = this.header; + this.S.O = this.V; + this.V.j = this.S; } - /** - * @description Removes the first element. - */ popFront() { - if (!this.head) - return; - this.length -= 1; - if (this.head === this.tail) { - this.head = this.tail = undefined; - this.header.pre = this.tail; - } - else { - this.head = this.head.next; - if (this.head) - this.head.pre = this.header; + if (!this.V) return; + this.o -= 1; + if (this.V === this.G) { + this.V = this.G = undefined; + this.S.j = this.G; + } else { + this.V = this.V.O; + this.V.j = this.S; } - this.header.next = this.head; + this.S.O = this.V; } - /** - * @description Merges two sorted lists. - * @param list The other list you want to merge (must be sorted). - */ - merge(list) { - if (!this.head) { - list.forEach(element => this.pushBack(element)); + merge(t) { + if (!this.V) { + t.forEach((t => this.pushBack(t))); return; } - let curNode = this.head; - list.forEach(element => { - while (curNode && - curNode !== this.header && - curNode.value <= element) { - curNode = curNode.next; - } - if (curNode === this.header) { - this.pushBack(element); - curNode = this.tail; - } - else if (curNode === this.head) { - this.pushFront(element); - curNode = this.head; + let i = this.V; + t.forEach((t => { + while (i && i !== this.S && i.L <= t) { + i = i.O; } - else { - this.length += 1; - const pre = curNode.pre; - pre.next = new LinkNode(element); - pre.next.pre = pre; - pre.next.next = curNode; - curNode.pre = pre.next; + if (i === this.S) { + this.pushBack(t); + i = this.G; + } else if (i === this.V) { + this.pushFront(t); + i = this.V; + } else { + this.o += 1; + const s = i.j; + s.O = new LinkNode(t); + s.O.j = s; + s.O.O = i; + i.j = s.O; } - }); + })); } [Symbol.iterator]() { - return function* () { - if (!this.head) - return; - let curNode = this.head; - while (curNode !== this.header) { - yield curNode.value; - curNode = curNode.next; + return function*() { + if (!this.V) return; + let t = this.V; + while (t !== this.S) { + yield t.L; + t = t.O; } }.bind(this)(); } } -exports.default = LinkList; + +var _default = LinkList; + +exports.default = _default; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Vector.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Vector.js index 8e822fc768c950..ddd106f77928ca 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Vector.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/SequentialContainer/Vector.js @@ -1,138 +1,150 @@ "use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.VectorIterator = void 0; -const index_1 = __importDefault(require("./Base/index")); -const checkParams_1 = require("../../utils/checkParams"); -const index_2 = require("../ContainerBase/index"); -const RandomIterator_1 = require("./Base/RandomIterator"); -class VectorIterator extends RandomIterator_1.RandomIterator { + +Object.defineProperty(exports, "t", { + value: true +}); + +exports.default = exports.VectorIterator = void 0; + +var _Base = _interopRequireDefault(require("./Base")); + +var _RandomIterator = require("./Base/RandomIterator"); + +function _interopRequireDefault(t) { + return t && t.t ? t : { + default: t + }; +} + +class VectorIterator extends _RandomIterator.RandomIterator { copy() { - return new VectorIterator(this.node, this.size, this.getElementByPos, this.setElementByPos, this.iteratorType); + return new VectorIterator(this.I, this.D, this.g, this.m, this.iteratorType); } } + exports.VectorIterator = VectorIterator; -class Vector extends index_1.default { - /** - * @description Vector's constructor. - * @param container Initialize container, must have a forEach function. - * @param copy When the container is an array, you can choose to directly operate on the original object of - * the array or perform a shallow copy. The default is shallow copy. - */ - constructor(container = [], copy = true) { + +class Vector extends _Base.default { + constructor(t = [], e = true) { super(); - if (Array.isArray(container)) { - this.vector = copy ? [...container] : container; - this.length = container.length; - } - else { - this.vector = []; - container.forEach(element => this.pushBack(element)); + if (Array.isArray(t)) { + this.H = e ? [ ...t ] : t; + this.o = t.length; + } else { + this.H = []; + t.forEach((t => this.pushBack(t))); } this.size = this.size.bind(this); this.getElementByPos = this.getElementByPos.bind(this); this.setElementByPos = this.setElementByPos.bind(this); } clear() { - this.length = 0; - this.vector.length = 0; + this.o = 0; + this.H.length = 0; } begin() { return new VectorIterator(0, this.size, this.getElementByPos, this.setElementByPos); } end() { - return new VectorIterator(this.length, this.size, this.getElementByPos, this.setElementByPos); + return new VectorIterator(this.o, this.size, this.getElementByPos, this.setElementByPos); } rBegin() { - return new VectorIterator(this.length - 1, this.size, this.getElementByPos, this.setElementByPos, index_2.ContainerIterator.REVERSE); + return new VectorIterator(this.o - 1, this.size, this.getElementByPos, this.setElementByPos, 1); } rEnd() { - return new VectorIterator(-1, this.size, this.getElementByPos, this.setElementByPos, index_2.ContainerIterator.REVERSE); + return new VectorIterator(-1, this.size, this.getElementByPos, this.setElementByPos, 1); } front() { - return this.vector[0]; + return this.H[0]; } back() { - return this.vector[this.length - 1]; + return this.H[this.o - 1]; } - forEach(callback) { - for (let i = 0; i < this.length; ++i) { - callback(this.vector[i], i); + forEach(t) { + for (let e = 0; e < this.o; ++e) { + t(this.H[e], e); } } - getElementByPos(pos) { - (0, checkParams_1.checkWithinAccessParams)(pos, 0, this.length - 1); - return this.vector[pos]; - } - eraseElementByPos(pos) { - (0, checkParams_1.checkWithinAccessParams)(pos, 0, this.length - 1); - this.vector.splice(pos, 1); - this.length -= 1; + getElementByPos(t) { + if (t < 0 || t > this.o - 1) { + throw new RangeError; + } + return this.H[t]; } - eraseElementByValue(value) { - let index = 0; - for (let i = 0; i < this.length; ++i) { - if (this.vector[i] !== value) { - this.vector[index++] = this.vector[i]; + eraseElementByPos(t) { + if (t < 0 || t > this.o - 1) { + throw new RangeError; + } + this.H.splice(t, 1); + this.o -= 1; + } + eraseElementByValue(t) { + let e = 0; + for (let r = 0; r < this.o; ++r) { + if (this.H[r] !== t) { + this.H[e++] = this.H[r]; } } - this.length = this.vector.length = index; + this.o = this.H.length = e; } - eraseElementByIterator(iter) { - // @ts-ignore - const node = iter.node; - iter = iter.next(); - this.eraseElementByPos(node); - return iter; + eraseElementByIterator(t) { + const e = t.I; + t = t.next(); + this.eraseElementByPos(e); + return t; } - pushBack(element) { - this.vector.push(element); - this.length += 1; + pushBack(t) { + this.H.push(t); + this.o += 1; } popBack() { - if (!this.length) - return; - this.vector.pop(); - this.length -= 1; - } - setElementByPos(pos, element) { - (0, checkParams_1.checkWithinAccessParams)(pos, 0, this.length - 1); - this.vector[pos] = element; - } - insert(pos, element, num = 1) { - (0, checkParams_1.checkWithinAccessParams)(pos, 0, this.length); - this.vector.splice(pos, 0, ...new Array(num).fill(element)); - this.length += num; - } - find(element) { - for (let i = 0; i < this.length; ++i) { - if (this.vector[i] === element) { - return new VectorIterator(i, this.size, this.getElementByPos, this.getElementByPos); + if (!this.o) return; + this.H.pop(); + this.o -= 1; + } + setElementByPos(t, e) { + if (t < 0 || t > this.o - 1) { + throw new RangeError; + } + this.H[t] = e; + } + insert(t, e, r = 1) { + if (t < 0 || t > this.o) { + throw new RangeError; + } + this.H.splice(t, 0, ...new Array(r).fill(e)); + this.o += r; + } + find(t) { + for (let e = 0; e < this.o; ++e) { + if (this.H[e] === t) { + return new VectorIterator(e, this.size, this.getElementByPos, this.getElementByPos); } } return this.end(); } reverse() { - this.vector.reverse(); + this.H.reverse(); } unique() { - let index = 1; - for (let i = 1; i < this.length; ++i) { - if (this.vector[i] !== this.vector[i - 1]) { - this.vector[index++] = this.vector[i]; + let t = 1; + for (let e = 1; e < this.o; ++e) { + if (this.H[e] !== this.H[e - 1]) { + this.H[t++] = this.H[e]; } } - this.length = this.vector.length = index; + this.o = this.H.length = t; } - sort(cmp) { - this.vector.sort(cmp); + sort(t) { + this.H.sort(t); } [Symbol.iterator]() { - return function* () { - return yield* this.vector; + return function*() { + return yield* this.H; }.bind(this)(); } } -exports.default = Vector; + +var _default = Vector; + +exports.default = _default; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/TreeIterator.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/TreeIterator.js index ea65abef529646..0ff7b5eb5d7407 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/TreeIterator.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/TreeIterator.js @@ -1,46 +1,80 @@ "use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const index_1 = require("../../ContainerBase/index"); -class TreeIterator extends index_1.ContainerIterator { - constructor(node, header, iteratorType) { - super(iteratorType); - this.node = node; - this.header = header; - if (this.iteratorType === index_1.ContainerIterator.NORMAL) { - this.pre = function () { - if (this.node === this.header.left) { - throw new RangeError('LinkList iterator access denied!'); + +Object.defineProperty(exports, "t", { + value: true +}); + +exports.default = void 0; + +var _ContainerBase = require("../../ContainerBase"); + +class TreeIterator extends _ContainerBase.ContainerIterator { + constructor(t, e, r) { + super(r); + this.I = t; + this.S = e; + if (this.iteratorType === 0) { + this.pre = function() { + if (this.I === this.S.U) { + throw new RangeError("Tree iterator access denied!"); } - this.node = this.node.pre(); + this.I = this.I.pre(); return this; }; - this.next = function () { - if (this.node === this.header) { - throw new RangeError('LinkList iterator access denied!'); + this.next = function() { + if (this.I === this.S) { + throw new RangeError("Tree iterator access denied!"); } - this.node = this.node.next(); + this.I = this.I.next(); return this; }; - } - else { - this.pre = function () { - if (this.node === this.header.right) { - throw new RangeError('LinkList iterator access denied!'); + } else { + this.pre = function() { + if (this.I === this.S.J) { + throw new RangeError("Tree iterator access denied!"); } - this.node = this.node.next(); + this.I = this.I.next(); return this; }; - this.next = function () { - if (this.node === this.header) { - throw new RangeError('LinkList iterator access denied!'); + this.next = function() { + if (this.I === this.S) { + throw new RangeError("Tree iterator access denied!"); } - this.node = this.node.pre(); + this.I = this.I.pre(); return this; }; } } - equals(obj) { - return this.node === obj.node; + get index() { + let t = this.I; + const e = this.S.tt; + if (t === this.S) { + if (e) { + return e.et - 1; + } + return 0; + } + let r = 0; + if (t.U) { + r += t.U.et; + } + while (t !== e) { + const e = t.tt; + if (t === e.J) { + r += 1; + if (e.U) { + r += e.U.et; + } + } + t = e; + } + return r; + } + equals(t) { + return this.I === t.I; } } -exports.default = TreeIterator; + +var _default = TreeIterator; + +exports.default = _default; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/TreeNode.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/TreeNode.js index 89994a60dbc7b0..c59ca746f693e1 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/TreeNode.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/TreeNode.js @@ -1,122 +1,113 @@ "use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); + +Object.defineProperty(exports, "t", { + value: true +}); + +exports.TreeNodeEnableIndex = exports.TreeNode = void 0; + class TreeNode { - constructor(key, value) { - this.color = true; - this.key = undefined; - this.value = undefined; - this.left = undefined; - this.right = undefined; - this.parent = undefined; - this.key = key; - this.value = value; + constructor(e, t) { + this.se = 1; + this.T = undefined; + this.L = undefined; + this.U = undefined; + this.J = undefined; + this.tt = undefined; + this.T = e; + this.L = t; } - /** - * @description Get the pre node. - * @return TreeNode about the pre node. - */ pre() { - let preNode = this; - if (preNode.color === TreeNode.RED && - preNode.parent.parent === preNode) { - preNode = preNode.right; - } - else if (preNode.left) { - preNode = preNode.left; - while (preNode.right) { - preNode = preNode.right; + let e = this; + if (e.se === 1 && e.tt.tt === e) { + e = e.J; + } else if (e.U) { + e = e.U; + while (e.J) { + e = e.J; } - } - else { - let pre = preNode.parent; - while (pre.left === preNode) { - preNode = pre; - pre = preNode.parent; + } else { + let t = e.tt; + while (t.U === e) { + e = t; + t = e.tt; } - preNode = pre; + e = t; } - return preNode; + return e; } - /** - * @description Get the next node. - * @return TreeNode about the next node. - */ next() { - let nextNode = this; - if (nextNode.right) { - nextNode = nextNode.right; - while (nextNode.left) { - nextNode = nextNode.left; - } - } - else { - let pre = nextNode.parent; - while (pre.right === nextNode) { - nextNode = pre; - pre = nextNode.parent; + let e = this; + if (e.J) { + e = e.J; + while (e.U) { + e = e.U; } - if (nextNode.right !== pre) { - nextNode = pre; + return e; + } else { + let t = e.tt; + while (t.J === e) { + e = t; + t = e.tt; } + if (e.J !== t) { + return t; + } else return e; } - return nextNode; } - /** - * @description Rotate left. - * @return TreeNode about moved to original position after rotation. - */ rotateLeft() { - const PP = this.parent; - const V = this.right; - const R = V.left; - if (PP.parent === this) - PP.parent = V; - else if (PP.left === this) - PP.left = V; - else - PP.right = V; - V.parent = PP; - V.left = this; - this.parent = V; - this.right = R; - if (R) - R.parent = this; - return V; + const e = this.tt; + const t = this.J; + const s = t.U; + if (e.tt === this) e.tt = t; else if (e.U === this) e.U = t; else e.J = t; + t.tt = e; + t.U = this; + this.tt = t; + this.J = s; + if (s) s.tt = this; + return t; } - /** - * @description Rotate left. - * @return TreeNode about moved to original position after rotation. - */ rotateRight() { - const PP = this.parent; - const F = this.left; - const K = F.right; - if (PP.parent === this) - PP.parent = F; - else if (PP.left === this) - PP.left = F; - else - PP.right = F; - F.parent = PP; - F.right = this; - this.parent = F; - this.left = K; - if (K) - K.parent = this; - return F; + const e = this.tt; + const t = this.U; + const s = t.J; + if (e.tt === this) e.tt = t; else if (e.U === this) e.U = t; else e.J = t; + t.tt = e; + t.J = this; + this.tt = t; + this.U = s; + if (s) s.tt = this; + return t; } - /** - * @description Remove this. - */ - remove() { - const parent = this.parent; - if (this === parent.left) { - parent.left = undefined; - } - else - parent.right = undefined; +} + +exports.TreeNode = TreeNode; + +class TreeNodeEnableIndex extends TreeNode { + constructor() { + super(...arguments); + this.U = undefined; + this.J = undefined; + this.tt = undefined; + this.et = 1; + } + rotateLeft() { + const e = super.rotateLeft(); + this.recount(); + e.recount(); + return e; + } + rotateRight() { + const e = super.rotateRight(); + this.recount(); + e.recount(); + return e; + } + recount() { + this.et = 1; + if (this.U) this.et += this.U.et; + if (this.J) this.et += this.J.et; } } -TreeNode.RED = true; -TreeNode.BLACK = false; -exports.default = TreeNode; + +exports.TreeNodeEnableIndex = TreeNodeEnableIndex; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/index.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/index.js index b79f2762dbd5f0..d2646c6f540d03 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/index.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/Base/index.js @@ -1,569 +1,483 @@ "use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -const TreeNode_1 = __importDefault(require("./TreeNode")); -const index_1 = require("../../ContainerBase/index"); -const checkParams_1 = require("../../../utils/checkParams"); -class TreeContainer extends index_1.Container { - constructor(cmp = (x, y) => { - if (x < y) - return -1; - if (x > y) - return 1; + +Object.defineProperty(exports, "t", { + value: true +}); + +exports.default = void 0; + +var _ContainerBase = require("../../ContainerBase"); + +var _TreeNode = require("./TreeNode"); + +class TreeContainer extends _ContainerBase.Container { + constructor(e = ((e, t) => { + if (e < t) return -1; + if (e > t) return 1; return 0; - }) { + }), t = false) { super(); - this.root = undefined; - this.header = new TreeNode_1.default(); - /** - * @description InOrder traversal the tree. - * @protected - */ - this.inOrderTraversal = (curNode, callback) => { - if (curNode === undefined) - return false; - const ifReturn = this.inOrderTraversal(curNode.left, callback); - if (ifReturn) - return true; - if (callback(curNode)) - return true; - return this.inOrderTraversal(curNode.right, callback); + this.X = undefined; + this.ie = (e, t) => { + if (e === undefined) return false; + const i = this.ie(e.U, t); + if (i) return true; + if (t(e)) return true; + return this.ie(e.J, t); }; - this.cmp = cmp; + this.p = e; + if (t) { + this.ne = _TreeNode.TreeNodeEnableIndex; + this.ee = function(e, t, i) { + const s = this.he(e, t, i); + if (s) { + let e = s.tt; + while (e !== this.S) { + e.et += 1; + e = e.tt; + } + const t = this.fe(s); + if (t) { + const {parentNode: e, grandParent: i, curNode: s} = t; + e.recount(); + i.recount(); + s.recount(); + } + } + }; + this.ue = function(e) { + let t = this.le(e); + while (t !== this.S) { + t.et -= 1; + t = t.tt; + } + }; + } else { + this.ne = _TreeNode.TreeNode; + this.ee = function(e, t, i) { + const s = this.he(e, t, i); + if (s) this.fe(s); + }; + this.ue = this.le; + } + this.S = new this.ne; } - /** - * @param curNode The starting node of the search. - * @param key The key you want to search. - * @return TreeNode which key is greater than or equals to the given key. - * @protected - */ - _lowerBound(curNode, key) { - let resNode; - while (curNode) { - const cmpResult = this.cmp(curNode.key, key); - if (cmpResult < 0) { - curNode = curNode.right; - } - else if (cmpResult > 0) { - resNode = curNode; - curNode = curNode.left; - } - else - return curNode; + W(e, t) { + let i; + while (e) { + const s = this.p(e.T, t); + if (s < 0) { + e = e.J; + } else if (s > 0) { + i = e; + e = e.U; + } else return e; } - return resNode === undefined ? this.header : resNode; + return i === undefined ? this.S : i; } - /** - * @param curNode The starting node of the search. - * @param key The key you want to search. - * @return TreeNode which key is greater than the given key. - * @protected - */ - _upperBound(curNode, key) { - let resNode; - while (curNode) { - const cmpResult = this.cmp(curNode.key, key); - if (cmpResult <= 0) { - curNode = curNode.right; - } - else if (cmpResult > 0) { - resNode = curNode; - curNode = curNode.left; + Y(e, t) { + let i; + while (e) { + const s = this.p(e.T, t); + if (s <= 0) { + e = e.J; + } else { + i = e; + e = e.U; } } - return resNode === undefined ? this.header : resNode; + return i === undefined ? this.S : i; } - /** - * @param curNode The starting node of the search. - * @param key The key you want to search. - * @return TreeNode which key is less than or equals to the given key. - * @protected - */ - _reverseLowerBound(curNode, key) { - let resNode; - while (curNode) { - const cmpResult = this.cmp(curNode.key, key); - if (cmpResult < 0) { - resNode = curNode; - curNode = curNode.right; - } - else if (cmpResult > 0) { - curNode = curNode.left; - } - else - return curNode; + Z(e, t) { + let i; + while (e) { + const s = this.p(e.T, t); + if (s < 0) { + i = e; + e = e.J; + } else if (s > 0) { + e = e.U; + } else return e; } - return resNode === undefined ? this.header : resNode; + return i === undefined ? this.S : i; } - /** - * @param curNode The starting node of the search. - * @param key The key you want to search. - * @return TreeNode which key is less than the given key. - * @protected - */ - _reverseUpperBound(curNode, key) { - let resNode; - while (curNode) { - const cmpResult = this.cmp(curNode.key, key); - if (cmpResult < 0) { - resNode = curNode; - curNode = curNode.right; - } - else if (cmpResult >= 0) { - curNode = curNode.left; + $(e, t) { + let i; + while (e) { + const s = this.p(e.T, t); + if (s < 0) { + i = e; + e = e.J; + } else { + e = e.U; } } - return resNode === undefined ? this.header : resNode; + return i === undefined ? this.S : i; } - /** - * @description Make self balance after erase a node. - * @param curNode The node want to remove. - * @protected - */ - eraseNodeSelfBalance(curNode) { + oe(e) { while (true) { - const parentNode = curNode.parent; - if (parentNode === this.header) - return; - if (curNode.color === TreeNode_1.default.RED) { - curNode.color = TreeNode_1.default.BLACK; + const t = e.tt; + if (t === this.S) return; + if (e.se === 1) { + e.se = 0; return; } - if (curNode === parentNode.left) { - const brother = parentNode.right; - if (brother.color === TreeNode_1.default.RED) { - brother.color = TreeNode_1.default.BLACK; - parentNode.color = TreeNode_1.default.RED; - if (parentNode === this.root) { - this.root = parentNode.rotateLeft(); - } - else - parentNode.rotateLeft(); - } - else if (brother.color === TreeNode_1.default.BLACK) { - if (brother.right && brother.right.color === TreeNode_1.default.RED) { - brother.color = parentNode.color; - parentNode.color = TreeNode_1.default.BLACK; - brother.right.color = TreeNode_1.default.BLACK; - if (parentNode === this.root) { - this.root = parentNode.rotateLeft(); - } - else - parentNode.rotateLeft(); + if (e === t.U) { + const i = t.J; + if (i.se === 1) { + i.se = 0; + t.se = 1; + if (t === this.X) { + this.X = t.rotateLeft(); + } else t.rotateLeft(); + } else { + if (i.J && i.J.se === 1) { + i.se = t.se; + t.se = 0; + i.J.se = 0; + if (t === this.X) { + this.X = t.rotateLeft(); + } else t.rotateLeft(); return; + } else if (i.U && i.U.se === 1) { + i.se = 1; + i.U.se = 0; + i.rotateRight(); + } else { + i.se = 1; + e = t; } - else if (brother.left && brother.left.color === TreeNode_1.default.RED) { - brother.color = TreeNode_1.default.RED; - brother.left.color = TreeNode_1.default.BLACK; - brother.rotateRight(); - } - else { - brother.color = TreeNode_1.default.RED; - curNode = parentNode; - } - } - } - else { - const brother = parentNode.left; - if (brother.color === TreeNode_1.default.RED) { - brother.color = TreeNode_1.default.BLACK; - parentNode.color = TreeNode_1.default.RED; - if (parentNode === this.root) { - this.root = parentNode.rotateRight(); - } - else - parentNode.rotateRight(); } - else { - if (brother.left && brother.left.color === TreeNode_1.default.RED) { - brother.color = parentNode.color; - parentNode.color = TreeNode_1.default.BLACK; - brother.left.color = TreeNode_1.default.BLACK; - if (parentNode === this.root) { - this.root = parentNode.rotateRight(); - } - else - parentNode.rotateRight(); + } else { + const i = t.U; + if (i.se === 1) { + i.se = 0; + t.se = 1; + if (t === this.X) { + this.X = t.rotateRight(); + } else t.rotateRight(); + } else { + if (i.U && i.U.se === 1) { + i.se = t.se; + t.se = 0; + i.U.se = 0; + if (t === this.X) { + this.X = t.rotateRight(); + } else t.rotateRight(); return; - } - else if (brother.right && brother.right.color === TreeNode_1.default.RED) { - brother.color = TreeNode_1.default.RED; - brother.right.color = TreeNode_1.default.BLACK; - brother.rotateLeft(); - } - else { - brother.color = TreeNode_1.default.RED; - curNode = parentNode; + } else if (i.J && i.J.se === 1) { + i.se = 1; + i.J.se = 0; + i.rotateLeft(); + } else { + i.se = 1; + e = t; } } } } } - /** - * @description Remove a node. - * @param curNode The node you want to remove. - * @protected - */ - eraseNode(curNode) { - if (this.length === 1) { + le(e) { + if (this.o === 1) { this.clear(); - return; + return this.S; } - let swapNode = curNode; - while (swapNode.left || swapNode.right) { - if (swapNode.right) { - swapNode = swapNode.right; - while (swapNode.left) - swapNode = swapNode.left; + let t = e; + while (t.U || t.J) { + if (t.J) { + t = t.J; + while (t.U) t = t.U; + } else { + t = t.U; } - else if (swapNode.left) { - swapNode = swapNode.left; - } - [curNode.key, swapNode.key] = [swapNode.key, curNode.key]; - [curNode.value, swapNode.value] = [swapNode.value, curNode.value]; - curNode = swapNode; - } - if (this.header.left === swapNode) { - this.header.left = swapNode.parent; + [e.T, t.T] = [ t.T, e.T ]; + [e.L, t.L] = [ t.L, e.L ]; + e = t; } - else if (this.header.right === swapNode) { - this.header.right = swapNode.parent; + if (this.S.U === t) { + this.S.U = t.tt; + } else if (this.S.J === t) { + this.S.J = t.tt; } - this.eraseNodeSelfBalance(swapNode); - swapNode.remove(); - this.length -= 1; - this.root.color = TreeNode_1.default.BLACK; + this.oe(t); + const i = t.tt; + if (t === i.U) { + i.U = undefined; + } else i.J = undefined; + this.o -= 1; + this.X.se = 0; + return i; } - /** - * @description Make self balance after insert a node. - * @param curNode The node want to insert. - * @protected - */ - insertNodeSelfBalance(curNode) { + fe(e) { while (true) { - const parentNode = curNode.parent; - if (parentNode.color === TreeNode_1.default.BLACK) - return; - const grandParent = parentNode.parent; - if (parentNode === grandParent.left) { - const uncle = grandParent.right; - if (uncle && uncle.color === TreeNode_1.default.RED) { - uncle.color = parentNode.color = TreeNode_1.default.BLACK; - if (grandParent === this.root) - return; - grandParent.color = TreeNode_1.default.RED; - curNode = grandParent; + const t = e.tt; + if (t.se === 0) return; + const i = t.tt; + if (t === i.U) { + const s = i.J; + if (s && s.se === 1) { + s.se = t.se = 0; + if (i === this.X) return; + i.se = 1; + e = i; continue; - } - else if (curNode === parentNode.right) { - curNode.color = TreeNode_1.default.BLACK; - if (curNode.left) - curNode.left.parent = parentNode; - if (curNode.right) - curNode.right.parent = grandParent; - parentNode.right = curNode.left; - grandParent.left = curNode.right; - curNode.left = parentNode; - curNode.right = grandParent; - if (grandParent === this.root) { - this.root = curNode; - this.header.parent = curNode; + } else if (e === t.J) { + e.se = 0; + if (e.U) e.U.tt = t; + if (e.J) e.J.tt = i; + t.J = e.U; + i.U = e.J; + e.U = t; + e.J = i; + if (i === this.X) { + this.X = e; + this.S.tt = e; + } else { + const t = i.tt; + if (t.U === i) { + t.U = e; + } else t.J = e; } - else { - const GP = grandParent.parent; - if (GP.left === grandParent) { - GP.left = curNode; - } - else - GP.right = curNode; - } - curNode.parent = grandParent.parent; - parentNode.parent = curNode; - grandParent.parent = curNode; - } - else { - parentNode.color = TreeNode_1.default.BLACK; - if (grandParent === this.root) { - this.root = grandParent.rotateRight(); - } - else - grandParent.rotateRight(); + e.tt = i.tt; + t.tt = e; + i.tt = e; + i.se = 1; + return { + parentNode: t, + grandParent: i, + curNode: e + }; + } else { + t.se = 0; + if (i === this.X) { + this.X = i.rotateRight(); + } else i.rotateRight(); + i.se = 1; } - grandParent.color = TreeNode_1.default.RED; - } - else { - const uncle = grandParent.left; - if (uncle && uncle.color === TreeNode_1.default.RED) { - uncle.color = parentNode.color = TreeNode_1.default.BLACK; - if (grandParent === this.root) - return; - grandParent.color = TreeNode_1.default.RED; - curNode = grandParent; + } else { + const s = i.U; + if (s && s.se === 1) { + s.se = t.se = 0; + if (i === this.X) return; + i.se = 1; + e = i; continue; - } - else if (curNode === parentNode.left) { - curNode.color = TreeNode_1.default.BLACK; - if (curNode.left) - curNode.left.parent = grandParent; - if (curNode.right) - curNode.right.parent = parentNode; - grandParent.right = curNode.left; - parentNode.left = curNode.right; - curNode.left = grandParent; - curNode.right = parentNode; - if (grandParent === this.root) { - this.root = curNode; - this.header.parent = curNode; - } - else { - const GP = grandParent.parent; - if (GP.left === grandParent) { - GP.left = curNode; - } - else - GP.right = curNode; - } - curNode.parent = grandParent.parent; - parentNode.parent = curNode; - grandParent.parent = curNode; - } - else { - parentNode.color = TreeNode_1.default.BLACK; - if (grandParent === this.root) { - this.root = grandParent.rotateLeft(); + } else if (e === t.U) { + e.se = 0; + if (e.U) e.U.tt = i; + if (e.J) e.J.tt = t; + i.J = e.U; + t.U = e.J; + e.U = i; + e.J = t; + if (i === this.X) { + this.X = e; + this.S.tt = e; + } else { + const t = i.tt; + if (t.U === i) { + t.U = e; + } else t.J = e; } - else - grandParent.rotateLeft(); + e.tt = i.tt; + t.tt = e; + i.tt = e; + i.se = 1; + return { + parentNode: t, + grandParent: i, + curNode: e + }; + } else { + t.se = 0; + if (i === this.X) { + this.X = i.rotateLeft(); + } else i.rotateLeft(); + i.se = 1; } - grandParent.color = TreeNode_1.default.RED; } return; } } - /** - * @description Find node which key is equals to the given key. - * @param curNode The starting node of the search. - * @param key The key you want to search. - * @protected - */ - findElementNode(curNode, key) { - while (curNode) { - const cmpResult = this.cmp(curNode.key, key); - if (cmpResult < 0) { - curNode = curNode.right; - } - else if (cmpResult > 0) { - curNode = curNode.left; - } - else - return curNode; - } - return curNode; - } - /** - * @description Insert a key-value pair or set value by the given key. - * @param key The key want to insert. - * @param value The value want to set. - * @param hint You can give an iterator hint to improve insertion efficiency. - * @protected - */ - set(key, value, hint) { - if (this.root === undefined) { - this.length += 1; - this.root = new TreeNode_1.default(key, value); - this.root.color = TreeNode_1.default.BLACK; - this.root.parent = this.header; - this.header.parent = this.root; - this.header.left = this.root; - this.header.right = this.root; + he(e, t, i) { + if (this.X === undefined) { + this.o += 1; + this.X = new this.ne(e, t); + this.X.se = 0; + this.X.tt = this.S; + this.S.tt = this.X; + this.S.U = this.X; + this.S.J = this.X; return; } - let curNode; - const minNode = this.header.left; - const compareToMin = this.cmp(minNode.key, key); - if (compareToMin === 0) { - minNode.value = value; + let s; + const r = this.S.U; + const n = this.p(r.T, e); + if (n === 0) { + r.L = t; return; - } - else if (compareToMin > 0) { - minNode.left = new TreeNode_1.default(key, value); - minNode.left.parent = minNode; - curNode = minNode.left; - this.header.left = curNode; - } - else { - const maxNode = this.header.right; - const compareToMax = this.cmp(maxNode.key, key); - if (compareToMax === 0) { - maxNode.value = value; + } else if (n > 0) { + r.U = new this.ne(e, t); + r.U.tt = r; + s = r.U; + this.S.U = s; + } else { + const r = this.S.J; + const n = this.p(r.T, e); + if (n === 0) { + r.L = t; return; - } - else if (compareToMax < 0) { - maxNode.right = new TreeNode_1.default(key, value); - maxNode.right.parent = maxNode; - curNode = maxNode.right; - this.header.right = curNode; - } - else { - if (hint !== undefined) { - // @ts-ignore - const iterNode = hint.node; - if (iterNode !== this.header) { - const iterCmpRes = this.cmp(iterNode.key, key); - if (iterCmpRes === 0) { - iterNode.value = value; + } else if (n < 0) { + r.J = new this.ne(e, t); + r.J.tt = r; + s = r.J; + this.S.J = s; + } else { + if (i !== undefined) { + const r = i.I; + if (r !== this.S) { + const i = this.p(r.T, e); + if (i === 0) { + r.L = t; return; - } - else if (iterCmpRes > 0) { - const preNode = iterNode.pre(); - const preCmpRes = this.cmp(preNode.key, key); - if (preCmpRes === 0) { - preNode.value = value; + } else if (i > 0) { + const i = r.pre(); + const n = this.p(i.T, e); + if (n === 0) { + i.L = t; return; - } - else if (preCmpRes < 0) { - curNode = new TreeNode_1.default(key, value); - if (preNode.right === undefined) { - preNode.right = curNode; - curNode.parent = preNode; - } - else { - iterNode.left = curNode; - curNode.parent = iterNode; + } else if (n < 0) { + s = new this.ne(e, t); + if (i.J === undefined) { + i.J = s; + s.tt = i; + } else { + r.U = s; + s.tt = r; } } } } } - if (curNode === undefined) { - curNode = this.root; + if (s === undefined) { + s = this.X; while (true) { - const cmpResult = this.cmp(curNode.key, key); - if (cmpResult > 0) { - if (curNode.left === undefined) { - curNode.left = new TreeNode_1.default(key, value); - curNode.left.parent = curNode; - curNode = curNode.left; + const i = this.p(s.T, e); + if (i > 0) { + if (s.U === undefined) { + s.U = new this.ne(e, t); + s.U.tt = s; + s = s.U; break; } - curNode = curNode.left; - } - else if (cmpResult < 0) { - if (curNode.right === undefined) { - curNode.right = new TreeNode_1.default(key, value); - curNode.right.parent = curNode; - curNode = curNode.right; + s = s.U; + } else if (i < 0) { + if (s.J === undefined) { + s.J = new this.ne(e, t); + s.J.tt = s; + s = s.J; break; } - curNode = curNode.right; - } - else { - curNode.value = value; + s = s.J; + } else { + s.L = t; return; } } } } } - this.length += 1; - this.insertNodeSelfBalance(curNode); + this.o += 1; + return s; } clear() { - this.length = 0; - this.root = undefined; - this.header.parent = undefined; - this.header.left = this.header.right = undefined; + this.o = 0; + this.X = undefined; + this.S.tt = undefined; + this.S.U = this.S.J = undefined; } - /** - * @description Update node's key by iterator. - * @param iter The iterator you want to change. - * @param key The key you want to update. - * @return Boolean about if the modification is successful. - */ - updateKeyByIterator(iter, key) { - // @ts-ignore - const node = iter.node; - if (node === this.header) { - throw new TypeError('Invalid iterator!'); + updateKeyByIterator(e, t) { + const i = e.I; + if (i === this.S) { + throw new TypeError("Invalid iterator!"); } - if (this.length === 1) { - node.key = key; + if (this.o === 1) { + i.T = t; return true; } - if (node === this.header.left) { - if (this.cmp(node.next().key, key) > 0) { - node.key = key; + if (i === this.S.U) { + if (this.p(i.next().T, t) > 0) { + i.T = t; return true; } return false; } - if (node === this.header.right) { - if (this.cmp(node.pre().key, key) < 0) { - node.key = key; + if (i === this.S.J) { + if (this.p(i.pre().T, t) < 0) { + i.T = t; return true; } return false; } - const preKey = node.pre().key; - if (this.cmp(preKey, key) >= 0) - return false; - const nextKey = node.next().key; - if (this.cmp(nextKey, key) <= 0) - return false; - node.key = key; + const s = i.pre().T; + if (this.p(s, t) >= 0) return false; + const r = i.next().T; + if (this.p(r, t) <= 0) return false; + i.T = t; return true; } - eraseElementByPos(pos) { - (0, checkParams_1.checkWithinAccessParams)(pos, 0, this.length - 1); - let index = 0; - this.inOrderTraversal(this.root, curNode => { - if (pos === index) { - this.eraseNode(curNode); + eraseElementByPos(e) { + if (e < 0 || e > this.o - 1) { + throw new RangeError; + } + let t = 0; + this.ie(this.X, (i => { + if (e === t) { + this.ue(i); return true; } - index += 1; + t += 1; return false; - }); + })); } - /** - * @description Remove the element of the specified key. - * @param key The key you want to remove. - */ - eraseElementByKey(key) { - if (!this.length) - return; - const curNode = this.findElementNode(this.root, key); - if (curNode === undefined) - return; - this.eraseNode(curNode); + re(e, t) { + while (e) { + const i = this.p(e.T, t); + if (i < 0) { + e = e.J; + } else if (i > 0) { + e = e.U; + } else return e; + } + return e; + } + eraseElementByKey(e) { + if (!this.o) return; + const t = this.re(this.X, e); + if (t === undefined) return; + this.ue(t); } - eraseElementByIterator(iter) { - // @ts-ignore - const node = iter.node; - if (node === this.header) { - throw new RangeError('Invalid iterator'); + eraseElementByIterator(e) { + const t = e.I; + if (t === this.S) { + throw new RangeError("Invalid iterator"); } - if (node.right === undefined) { - iter = iter.next(); + if (t.J === undefined) { + e = e.next(); } - this.eraseNode(node); - return iter; + this.ue(t); + return e; } - /** - * @description Get the height of the tree. - * @return Number about the height of the RB-tree. - */ getHeight() { - if (!this.length) - return 0; - const traversal = (curNode) => { - if (!curNode) - return 0; - return Math.max(traversal(curNode.left), traversal(curNode.right)) + 1; + if (!this.o) return 0; + const traversal = e => { + if (!e) return 0; + return Math.max(traversal(e.U), traversal(e.J)) + 1; }; - return traversal(this.root); + return traversal(this.X); } } -exports.default = TreeContainer; + +var _default = TreeContainer; + +exports.default = _default; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/OrderedMap.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/OrderedMap.js index dd797c7c71681e..ed6eacbff50e6b 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/OrderedMap.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/OrderedMap.js @@ -1,138 +1,136 @@ "use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.OrderedMapIterator = void 0; -const index_1 = require("../ContainerBase/index"); -const checkParams_1 = require("../../utils/checkParams"); -const index_2 = __importDefault(require("./Base/index")); -const TreeIterator_1 = __importDefault(require("./Base/TreeIterator")); -class OrderedMapIterator extends TreeIterator_1.default { + +Object.defineProperty(exports, "t", { + value: true +}); + +exports.default = exports.OrderedMapIterator = void 0; + +var _Base = _interopRequireDefault(require("./Base")); + +var _TreeIterator = _interopRequireDefault(require("./Base/TreeIterator")); + +function _interopRequireDefault(e) { + return e && e.t ? e : { + default: e + }; +} + +class OrderedMapIterator extends _TreeIterator.default { get pointer() { - if (this.node === this.header) { - throw new RangeError('OrderedMap iterator access denied'); + if (this.I === this.S) { + throw new RangeError("OrderedMap iterator access denied"); } return new Proxy([], { - get: (_, props) => { - if (props === '0') - return this.node.key; - else if (props === '1') - return this.node.value; + get: (e, r) => { + if (r === "0") return this.I.T; else if (r === "1") return this.I.L; }, - set: (_, props, newValue) => { - if (props !== '1') { - throw new TypeError('props must be 1'); + set: (e, r, t) => { + if (r !== "1") { + throw new TypeError("props must be 1"); } - this.node.value = newValue; + this.I.L = t; return true; } }); } copy() { - return new OrderedMapIterator(this.node, this.header, this.iteratorType); + return new OrderedMapIterator(this.I, this.S, this.iteratorType); } } + exports.OrderedMapIterator = OrderedMapIterator; -class OrderedMap extends index_2.default { - constructor(container = [], cmp) { - super(cmp); - this.iterationFunc = function* (curNode) { - if (curNode === undefined) - return; - yield* this.iterationFunc(curNode.left); - yield [curNode.key, curNode.value]; - yield* this.iterationFunc(curNode.right); + +class OrderedMap extends _Base.default { + constructor(e = [], r, t) { + super(r, t); + this.K = function*(e) { + if (e === undefined) return; + yield* this.K(e.U); + yield [ e.T, e.L ]; + yield* this.K(e.J); }; - this.iterationFunc = this.iterationFunc.bind(this); - container.forEach(([key, value]) => this.setElement(key, value)); + e.forEach((([e, r]) => this.setElement(e, r))); } begin() { - return new OrderedMapIterator(this.header.left || this.header, this.header); + return new OrderedMapIterator(this.S.U || this.S, this.S); } end() { - return new OrderedMapIterator(this.header, this.header); + return new OrderedMapIterator(this.S, this.S); } rBegin() { - return new OrderedMapIterator(this.header.right || this.header, this.header, index_1.ContainerIterator.REVERSE); + return new OrderedMapIterator(this.S.J || this.S, this.S, 1); } rEnd() { - return new OrderedMapIterator(this.header, this.header, index_1.ContainerIterator.REVERSE); + return new OrderedMapIterator(this.S, this.S, 1); } front() { - if (!this.length) - return undefined; - const minNode = this.header.left; - return [minNode.key, minNode.value]; + if (!this.o) return undefined; + const e = this.S.U; + return [ e.T, e.L ]; } back() { - if (!this.length) - return undefined; - const maxNode = this.header.right; - return [maxNode.key, maxNode.value]; - } - forEach(callback) { - let index = 0; - for (const pair of this) - callback(pair, index++); - } - lowerBound(key) { - const resNode = this._lowerBound(this.root, key); - return new OrderedMapIterator(resNode, this.header); - } - upperBound(key) { - const resNode = this._upperBound(this.root, key); - return new OrderedMapIterator(resNode, this.header); - } - reverseLowerBound(key) { - const resNode = this._reverseLowerBound(this.root, key); - return new OrderedMapIterator(resNode, this.header); - } - reverseUpperBound(key) { - const resNode = this._reverseUpperBound(this.root, key); - return new OrderedMapIterator(resNode, this.header); - } - /** - * @description Insert a key-value pair or set value by the given key. - * @param key The key want to insert. - * @param value The value want to set. - * @param hint You can give an iterator hint to improve insertion efficiency. - */ - setElement(key, value, hint) { - this.set(key, value, hint); - } - find(key) { - const curNode = this.findElementNode(this.root, key); - if (curNode !== undefined) { - return new OrderedMapIterator(curNode, this.header); + if (!this.o) return undefined; + const e = this.S.J; + return [ e.T, e.L ]; + } + forEach(e) { + let r = 0; + for (const t of this) e(t, r++); + } + lowerBound(e) { + const r = this.W(this.X, e); + return new OrderedMapIterator(r, this.S); + } + upperBound(e) { + const r = this.Y(this.X, e); + return new OrderedMapIterator(r, this.S); + } + reverseLowerBound(e) { + const r = this.Z(this.X, e); + return new OrderedMapIterator(r, this.S); + } + reverseUpperBound(e) { + const r = this.$(this.X, e); + return new OrderedMapIterator(r, this.S); + } + setElement(e, r, t) { + this.ee(e, r, t); + } + find(e) { + const r = this.re(this.X, e); + if (r !== undefined) { + return new OrderedMapIterator(r, this.S); } return this.end(); } - /** - * @description Get the value of the element of the specified key. - */ - getElementByKey(key) { - const curNode = this.findElementNode(this.root, key); - return curNode ? curNode.value : undefined; - } - getElementByPos(pos) { - (0, checkParams_1.checkWithinAccessParams)(pos, 0, this.length - 1); - let res; - let index = 0; - for (const pair of this) { - if (index === pos) { - res = pair; + getElementByKey(e) { + const r = this.re(this.X, e); + return r ? r.L : undefined; + } + getElementByPos(e) { + if (e < 0 || e > this.o - 1) { + throw new RangeError; + } + let r; + let t = 0; + for (const s of this) { + if (t === e) { + r = s; break; } - index += 1; + t += 1; } - return res; + return r; } - union(other) { - other.forEach(([key, value]) => this.setElement(key, value)); + union(e) { + e.forEach((([e, r]) => this.setElement(e, r))); } [Symbol.iterator]() { - return this.iterationFunc(this.root); + return this.K(this.X); } } -exports.default = OrderedMap; + +var _default = OrderedMap; + +exports.default = _default; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/OrderedSet.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/OrderedSet.js index facac71ce144c1..012d11ea9af68d 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/OrderedSet.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/container/TreeContainer/OrderedSet.js @@ -1,109 +1,117 @@ "use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.OrderedSetIterator = void 0; -const index_1 = __importDefault(require("./Base/index")); -const index_2 = require("../ContainerBase/index"); -const checkParams_1 = require("../../utils/checkParams"); -const TreeIterator_1 = __importDefault(require("./Base/TreeIterator")); -class OrderedSetIterator extends TreeIterator_1.default { + +Object.defineProperty(exports, "t", { + value: true +}); + +exports.default = exports.OrderedSetIterator = void 0; + +var _Base = _interopRequireDefault(require("./Base")); + +var _TreeIterator = _interopRequireDefault(require("./Base/TreeIterator")); + +function _interopRequireDefault(e) { + return e && e.t ? e : { + default: e + }; +} + +class OrderedSetIterator extends _TreeIterator.default { get pointer() { - if (this.node === this.header) { - throw new RangeError('OrderedSet iterator access denied!'); + if (this.I === this.S) { + throw new RangeError("OrderedSet iterator access denied!"); } - return this.node.key; + return this.I.T; } copy() { - return new OrderedSetIterator(this.node, this.header, this.iteratorType); + return new OrderedSetIterator(this.I, this.S, this.iteratorType); } } + exports.OrderedSetIterator = OrderedSetIterator; -class OrderedSet extends index_1.default { - constructor(container = [], cmp) { - super(cmp); - this.iterationFunc = function* (curNode) { - if (curNode === undefined) - return; - yield* this.iterationFunc(curNode.left); - yield curNode.key; - yield* this.iterationFunc(curNode.right); + +class OrderedSet extends _Base.default { + constructor(e = [], t, r) { + super(t, r); + this.K = function*(e) { + if (e === undefined) return; + yield* this.K(e.U); + yield e.T; + yield* this.K(e.J); }; - container.forEach((element) => this.insert(element)); - this.iterationFunc = this.iterationFunc.bind(this); + e.forEach((e => this.insert(e))); } begin() { - return new OrderedSetIterator(this.header.left || this.header, this.header); + return new OrderedSetIterator(this.S.U || this.S, this.S); } end() { - return new OrderedSetIterator(this.header, this.header); + return new OrderedSetIterator(this.S, this.S); } rBegin() { - return new OrderedSetIterator(this.header.right || this.header, this.header, index_2.ContainerIterator.REVERSE); + return new OrderedSetIterator(this.S.J || this.S, this.S, 1); } rEnd() { - return new OrderedSetIterator(this.header, this.header, index_2.ContainerIterator.REVERSE); + return new OrderedSetIterator(this.S, this.S, 1); } front() { - return this.header.left ? this.header.left.key : undefined; + return this.S.U ? this.S.U.T : undefined; } back() { - return this.header.right ? this.header.right.key : undefined; - } - forEach(callback) { - let index = 0; - for (const element of this) - callback(element, index++); - } - getElementByPos(pos) { - (0, checkParams_1.checkWithinAccessParams)(pos, 0, this.length - 1); - let res; - let index = 0; - for (const element of this) { - if (index === pos) { - res = element; + return this.S.J ? this.S.J.T : undefined; + } + forEach(e) { + let t = 0; + for (const r of this) e(r, t++); + } + getElementByPos(e) { + if (e < 0 || e > this.o - 1) { + throw new RangeError; + } + let t; + let r = 0; + for (const i of this) { + if (r === e) { + t = i; + break; } - index += 1; + r += 1; } - return res; - } - /** - * @description Insert element to set. - * @param key The key want to insert. - * @param hint You can give an iterator hint to improve insertion efficiency. - */ - insert(key, hint) { - this.set(key, undefined, hint); - } - find(element) { - const curNode = this.findElementNode(this.root, element); - if (curNode !== undefined) { - return new OrderedSetIterator(curNode, this.header); + return t; + } + insert(e, t) { + this.ee(e, undefined, t); + } + find(e) { + const t = this.re(this.X, e); + if (t !== undefined) { + return new OrderedSetIterator(t, this.S); } return this.end(); } - lowerBound(key) { - const resNode = this._lowerBound(this.root, key); - return new OrderedSetIterator(resNode, this.header); + lowerBound(e) { + const t = this.W(this.X, e); + return new OrderedSetIterator(t, this.S); } - upperBound(key) { - const resNode = this._upperBound(this.root, key); - return new OrderedSetIterator(resNode, this.header); + upperBound(e) { + const t = this.Y(this.X, e); + return new OrderedSetIterator(t, this.S); } - reverseLowerBound(key) { - const resNode = this._reverseLowerBound(this.root, key); - return new OrderedSetIterator(resNode, this.header); + reverseLowerBound(e) { + const t = this.Z(this.X, e); + return new OrderedSetIterator(t, this.S); } - reverseUpperBound(key) { - const resNode = this._reverseUpperBound(this.root, key); - return new OrderedSetIterator(resNode, this.header); + reverseUpperBound(e) { + const t = this.$(this.X, e); + return new OrderedSetIterator(t, this.S); } - union(other) { - other.forEach((element) => this.insert(element)); + union(e) { + e.forEach((e => this.insert(e))); } [Symbol.iterator]() { - return this.iterationFunc(this.root); + return this.K(this.X); } } -exports.default = OrderedSet; + +var _default = OrderedSet; + +exports.default = _default; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/index.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/index.js index 60cca6184d3931..70e798a792c8a5 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/index.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/index.js @@ -1,40 +1,101 @@ "use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.HashContainer = exports.TreeContainer = exports.SequentialContainer = exports.ContainerIterator = exports.Container = exports.HashMap = exports.HashSet = exports.OrderedMapIterator = exports.OrderedMap = exports.OrderedSetIterator = exports.OrderedSet = exports.DequeIterator = exports.Deque = exports.LinkListIterator = exports.LinkList = exports.VectorIterator = exports.Vector = exports.PriorityQueue = exports.Queue = exports.Stack = void 0; -var Stack_1 = require("./container/OtherContainer/Stack"); -Object.defineProperty(exports, "Stack", { enumerable: true, get: function () { return __importDefault(Stack_1).default; } }); -var Queue_1 = require("./container/OtherContainer/Queue"); -Object.defineProperty(exports, "Queue", { enumerable: true, get: function () { return __importDefault(Queue_1).default; } }); -var PriorityQueue_1 = require("./container/OtherContainer/PriorityQueue"); -Object.defineProperty(exports, "PriorityQueue", { enumerable: true, get: function () { return __importDefault(PriorityQueue_1).default; } }); -var Vector_1 = require("./container/SequentialContainer/Vector"); -Object.defineProperty(exports, "Vector", { enumerable: true, get: function () { return __importDefault(Vector_1).default; } }); -Object.defineProperty(exports, "VectorIterator", { enumerable: true, get: function () { return Vector_1.VectorIterator; } }); -var LinkList_1 = require("./container/SequentialContainer/LinkList"); -Object.defineProperty(exports, "LinkList", { enumerable: true, get: function () { return __importDefault(LinkList_1).default; } }); -Object.defineProperty(exports, "LinkListIterator", { enumerable: true, get: function () { return LinkList_1.LinkListIterator; } }); -var Deque_1 = require("./container/SequentialContainer/Deque"); -Object.defineProperty(exports, "Deque", { enumerable: true, get: function () { return __importDefault(Deque_1).default; } }); -Object.defineProperty(exports, "DequeIterator", { enumerable: true, get: function () { return Deque_1.DequeIterator; } }); -var OrderedSet_1 = require("./container/TreeContainer/OrderedSet"); -Object.defineProperty(exports, "OrderedSet", { enumerable: true, get: function () { return __importDefault(OrderedSet_1).default; } }); -Object.defineProperty(exports, "OrderedSetIterator", { enumerable: true, get: function () { return OrderedSet_1.OrderedSetIterator; } }); -var OrderedMap_1 = require("./container/TreeContainer/OrderedMap"); -Object.defineProperty(exports, "OrderedMap", { enumerable: true, get: function () { return __importDefault(OrderedMap_1).default; } }); -Object.defineProperty(exports, "OrderedMapIterator", { enumerable: true, get: function () { return OrderedMap_1.OrderedMapIterator; } }); -var HashSet_1 = require("./container/HashContainer/HashSet"); -Object.defineProperty(exports, "HashSet", { enumerable: true, get: function () { return __importDefault(HashSet_1).default; } }); -var HashMap_1 = require("./container/HashContainer/HashMap"); -Object.defineProperty(exports, "HashMap", { enumerable: true, get: function () { return __importDefault(HashMap_1).default; } }); -var index_1 = require("./container/ContainerBase/index"); -Object.defineProperty(exports, "Container", { enumerable: true, get: function () { return index_1.Container; } }); -Object.defineProperty(exports, "ContainerIterator", { enumerable: true, get: function () { return index_1.ContainerIterator; } }); -var index_2 = require("./container/SequentialContainer/Base/index"); -Object.defineProperty(exports, "SequentialContainer", { enumerable: true, get: function () { return __importDefault(index_2).default; } }); -var index_3 = require("./container/TreeContainer/Base/index"); -Object.defineProperty(exports, "TreeContainer", { enumerable: true, get: function () { return __importDefault(index_3).default; } }); -var index_4 = require("./container/HashContainer/Base/index"); -Object.defineProperty(exports, "HashContainer", { enumerable: true, get: function () { return __importDefault(index_4).default; } }); + +Object.defineProperty(exports, "t", { + value: true +}); + +Object.defineProperty(exports, "Deque", { + enumerable: true, + get: function() { + return _Deque.default; + } +}); + +Object.defineProperty(exports, "HashMap", { + enumerable: true, + get: function() { + return _HashMap.default; + } +}); + +Object.defineProperty(exports, "HashSet", { + enumerable: true, + get: function() { + return _HashSet.default; + } +}); + +Object.defineProperty(exports, "LinkList", { + enumerable: true, + get: function() { + return _LinkList.default; + } +}); + +Object.defineProperty(exports, "OrderedMap", { + enumerable: true, + get: function() { + return _OrderedMap.default; + } +}); + +Object.defineProperty(exports, "OrderedSet", { + enumerable: true, + get: function() { + return _OrderedSet.default; + } +}); + +Object.defineProperty(exports, "PriorityQueue", { + enumerable: true, + get: function() { + return _PriorityQueue.default; + } +}); + +Object.defineProperty(exports, "Queue", { + enumerable: true, + get: function() { + return _Queue.default; + } +}); + +Object.defineProperty(exports, "Stack", { + enumerable: true, + get: function() { + return _Stack.default; + } +}); + +Object.defineProperty(exports, "Vector", { + enumerable: true, + get: function() { + return _Vector.default; + } +}); + +var _Stack = _interopRequireDefault(require("./container/OtherContainer/Stack")); + +var _Queue = _interopRequireDefault(require("./container/OtherContainer/Queue")); + +var _PriorityQueue = _interopRequireDefault(require("./container/OtherContainer/PriorityQueue")); + +var _Vector = _interopRequireDefault(require("./container/SequentialContainer/Vector")); + +var _LinkList = _interopRequireDefault(require("./container/SequentialContainer/LinkList")); + +var _Deque = _interopRequireDefault(require("./container/SequentialContainer/Deque")); + +var _OrderedSet = _interopRequireDefault(require("./container/TreeContainer/OrderedSet")); + +var _OrderedMap = _interopRequireDefault(require("./container/TreeContainer/OrderedMap")); + +var _HashSet = _interopRequireDefault(require("./container/HashContainer/HashSet")); + +var _HashMap = _interopRequireDefault(require("./container/HashContainer/HashMap")); + +function _interopRequireDefault(e) { + return e && e.t ? e : { + default: e + }; +} \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/utils/checkParams.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/utils/checkParams.js deleted file mode 100644 index 5c3e5117be7b8e..00000000000000 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/cjs/utils/checkParams.js +++ /dev/null @@ -1,16 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.checkWithinAccessParams = void 0; -/** - * @description Check if access is out of bounds. - * @param pos The position want to access. - * @param lower The lower bound. - * @param upper The upper bound. - * @return Boolean about if access is out of bounds. - */ -function checkWithinAccessParams(pos, lower, upper) { - if (pos < lower || pos > upper) { - throw new RangeError(); - } -} -exports.checkWithinAccessParams = checkWithinAccessParams; diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/ContainerBase/index.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/ContainerBase/index.js index 248c6a5008331b..93b0746f72a3ee 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/ContainerBase/index.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/ContainerBase/index.js @@ -1,56 +1,57 @@ -var __extends = (this && this.__extends) || (function () { - var extendStatics = function (d, b) { - extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - return extendStatics(d, b); +var __extends = this && this.t || function() { + var extendStatics = function(n, t) { + extendStatics = Object.setPrototypeOf || { + __proto__: [] + } instanceof Array && function(n, t) { + n.__proto__ = t; + } || function(n, t) { + for (var r in t) if (Object.prototype.hasOwnProperty.call(t, r)) n[r] = t[r]; + }; + return extendStatics(n, t); }; - return function (d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + return function(n, t) { + if (typeof t !== "function" && t !== null) throw new TypeError("Class extends value " + String(t) + " is not a constructor or null"); + extendStatics(n, t); + function __() { + this.constructor = n; + } + n.prototype = t === null ? Object.create(t) : (__.prototype = t.prototype, new __); }; -})(); -var ContainerIterator = /** @class */ (function () { - function ContainerIterator(iteratorType) { - if (iteratorType === void 0) { iteratorType = ContainerIterator.NORMAL; } - this.iteratorType = iteratorType; +}(); + +var ContainerIterator = function() { + function ContainerIterator(n) { + if (n === void 0) { + n = 0; + } + this.iteratorType = n; } - ContainerIterator.NORMAL = false; - ContainerIterator.REVERSE = true; return ContainerIterator; -}()); +}(); + export { ContainerIterator }; -var Base = /** @class */ (function () { + +var Base = function() { function Base() { - /** - * @description Container's size. - * @protected - */ - this.length = 0; + this.o = 0; } - /** - * @return The size of the container. - */ - Base.prototype.size = function () { - return this.length; + Base.prototype.size = function() { + return this.o; }; - /** - * @return Boolean about if the container is empty. - */ - Base.prototype.empty = function () { - return this.length === 0; + Base.prototype.empty = function() { + return this.o === 0; }; return Base; -}()); +}(); + export { Base }; -var Container = /** @class */ (function (_super) { - __extends(Container, _super); + +var Container = function(n) { + __extends(Container, n); function Container() { - return _super !== null && _super.apply(this, arguments) || this; + return n !== null && n.apply(this, arguments) || this; } return Container; -}(Base)); -export { Container }; +}(Base); + +export { Container }; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/Base/index.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/Base/index.js index f5e7d0786bdd3f..d364266dd2c8be 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/Base/index.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/Base/index.js @@ -1,57 +1,62 @@ -var __extends = (this && this.__extends) || (function () { - var extendStatics = function (d, b) { - extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - return extendStatics(d, b); +var __extends = this && this.t || function() { + var extendStatics = function(n, t) { + extendStatics = Object.setPrototypeOf || { + __proto__: [] + } instanceof Array && function(n, t) { + n.__proto__ = t; + } || function(n, t) { + for (var r in t) if (Object.prototype.hasOwnProperty.call(t, r)) n[r] = t[r]; + }; + return extendStatics(n, t); }; - return function (d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + return function(n, t) { + if (typeof t !== "function" && t !== null) throw new TypeError("Class extends value " + String(t) + " is not a constructor or null"); + extendStatics(n, t); + function __() { + this.constructor = n; + } + n.prototype = t === null ? Object.create(t) : (__.prototype = t.prototype, new __); }; -})(); -import { Base } from "../../ContainerBase/index"; -var HashContainer = /** @class */ (function (_super) { - __extends(HashContainer, _super); - function HashContainer(initBucketNum, hashFunc) { - if (initBucketNum === void 0) { initBucketNum = 16; } - if (hashFunc === void 0) { hashFunc = function (x) { - var str; - if (typeof x !== 'string') { - str = JSON.stringify(x); - } - else - str = x; - var hashCode = 0; - var strLength = str.length; - for (var i = 0; i < strLength; i++) { - var ch = str.charCodeAt(i); - hashCode = ((hashCode << 5) - hashCode) + ch; - hashCode |= 0; - } - return hashCode >>> 0; - }; } - var _this = _super.call(this) || this; - if (initBucketNum < 16 || (initBucketNum & (initBucketNum - 1)) !== 0) { - throw new RangeError('InitBucketNum range error'); +}(); + +import { Base } from "../../ContainerBase"; + +var HashContainer = function(n) { + __extends(HashContainer, n); + function HashContainer(t, r) { + if (t === void 0) { + t = 16; + } + if (r === void 0) { + r = function(n) { + var t; + if (typeof n !== "string") { + t = JSON.stringify(n); + } else t = n; + var r = 0; + var i = t.length; + for (var e = 0; e < i; e++) { + var o = t.charCodeAt(e); + r = (r << 5) - r + o; + r |= 0; + } + return r >>> 0; + }; + } + var i = n.call(this) || this; + if (t < 16 || (t & t - 1) !== 0) { + throw new RangeError("InitBucketNum range error"); } - _this.bucketNum = _this.initBucketNum = initBucketNum; - _this.hashFunc = hashFunc; - return _this; + i.l = i.nn = t; + i.p = r; + return i; } - HashContainer.prototype.clear = function () { - this.length = 0; - this.bucketNum = this.initBucketNum; - this.hashTable = []; + HashContainer.prototype.clear = function() { + this.o = 0; + this.l = this.nn; + this.h = []; }; - HashContainer.sigma = 0.75; - HashContainer.treeifyThreshold = 8; - HashContainer.untreeifyThreshold = 6; - HashContainer.minTreeifySize = 64; - HashContainer.maxBucketNum = (1 << 30); return HashContainer; -}(Base)); -export default HashContainer; +}(Base); + +export default HashContainer; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/HashMap.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/HashMap.js index bf795d598a760b..3368191242e643 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/HashMap.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/HashMap.js @@ -1,337 +1,410 @@ -var __extends = (this && this.__extends) || (function () { - var extendStatics = function (d, b) { - extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - return extendStatics(d, b); +var __extends = this && this.t || function() { + var extendStatics = function(r, e) { + extendStatics = Object.setPrototypeOf || { + __proto__: [] + } instanceof Array && function(r, e) { + r.__proto__ = e; + } || function(r, e) { + for (var t in e) if (Object.prototype.hasOwnProperty.call(e, t)) r[t] = e[t]; + }; + return extendStatics(r, e); }; - return function (d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + return function(r, e) { + if (typeof e !== "function" && e !== null) throw new TypeError("Class extends value " + String(e) + " is not a constructor or null"); + extendStatics(r, e); + function __() { + this.constructor = r; + } + r.prototype = e === null ? Object.create(e) : (__.prototype = e.prototype, new __); }; -})(); -var __generator = (this && this.__generator) || function (thisArg, body) { - var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; - return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; - function verb(n) { return function (v) { return step([n, v]); }; } - function step(op) { - if (f) throw new TypeError("Generator is already executing."); - while (_) try { - if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; - if (y = 0, t) op = [op[0] & 2, t.value]; - switch (op[0]) { - case 0: case 1: t = op; break; - case 4: _.label++; return { value: op[1], done: false }; - case 5: _.label++; y = op[1]; op = [0]; continue; - case 7: op = _.ops.pop(); _.trys.pop(); continue; - default: - if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } - if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } - if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } - if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } - if (t[2]) _.ops.pop(); - _.trys.pop(); continue; +}(); + +var __generator = this && this.i || function(r, e) { + var t = { + label: 0, + sent: function() { + if (a[0] & 1) throw a[1]; + return a[1]; + }, + trys: [], + ops: [] + }, n, i, a, f; + return f = { + next: verb(0), + throw: verb(1), + return: verb(2) + }, typeof Symbol === "function" && (f[Symbol.iterator] = function() { + return this; + }), f; + function verb(r) { + return function(e) { + return step([ r, e ]); + }; + } + function step(f) { + if (n) throw new TypeError("Generator is already executing."); + while (t) try { + if (n = 1, i && (a = f[0] & 2 ? i["return"] : f[0] ? i["throw"] || ((a = i["return"]) && a.call(i), + 0) : i.next) && !(a = a.call(i, f[1])).done) return a; + if (i = 0, a) f = [ f[0] & 2, a.value ]; + switch (f[0]) { + case 0: + case 1: + a = f; + break; + + case 4: + t.label++; + return { + value: f[1], + done: false + }; + + case 5: + t.label++; + i = f[1]; + f = [ 0 ]; + continue; + + case 7: + f = t.ops.pop(); + t.trys.pop(); + continue; + + default: + if (!(a = t.trys, a = a.length > 0 && a[a.length - 1]) && (f[0] === 6 || f[0] === 2)) { + t = 0; + continue; + } + if (f[0] === 3 && (!a || f[1] > a[0] && f[1] < a[3])) { + t.label = f[1]; + break; + } + if (f[0] === 6 && t.label < a[1]) { + t.label = a[1]; + a = f; + break; + } + if (a && t.label < a[2]) { + t.label = a[2]; + t.ops.push(f); + break; + } + if (a[2]) t.ops.pop(); + t.trys.pop(); + continue; } - op = body.call(thisArg, _); - } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } - if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + f = e.call(r, t); + } catch (r) { + f = [ 6, r ]; + i = 0; + } finally { + n = a = 0; + } + if (f[0] & 5) throw f[1]; + return { + value: f[0] ? f[1] : void 0, + done: true + }; } }; -var __values = (this && this.__values) || function(o) { - var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; - if (m) return m.call(o); - if (o && typeof o.length === "number") return { - next: function () { - if (o && i >= o.length) o = void 0; - return { value: o && o[i++], done: !o }; + +var __values = this && this.u || function(r) { + var e = typeof Symbol === "function" && Symbol.iterator, t = e && r[e], n = 0; + if (t) return t.call(r); + if (r && typeof r.length === "number") return { + next: function() { + if (r && n >= r.length) r = void 0; + return { + value: r && r[n++], + done: !r + }; } }; - throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); + throw new TypeError(e ? "Object is not iterable." : "Symbol.iterator is not defined."); }; -import HashContainer from './Base/index'; -import Vector from '../SequentialContainer/Vector'; -import OrderedMap from '../TreeContainer/OrderedMap'; -var HashMap = /** @class */ (function (_super) { - __extends(HashMap, _super); - function HashMap(container, initBucketNum, hashFunc) { - if (container === void 0) { container = []; } - var _this = _super.call(this, initBucketNum, hashFunc) || this; - _this.hashTable = []; - container.forEach(function (element) { return _this.setElement(element[0], element[1]); }); - return _this; + +import HashContainer from "./Base"; + +import Vector from "../SequentialContainer/Vector"; + +import OrderedMap from "../TreeContainer/OrderedMap"; + +var HashMap = function(r) { + __extends(HashMap, r); + function HashMap(e, t, n) { + if (e === void 0) { + e = []; + } + var i = r.call(this, t, n) || this; + i.h = []; + e.forEach((function(r) { + return i.setElement(r[0], r[1]); + })); + return i; } - HashMap.prototype.reAllocate = function () { - var _this = this; - if (this.bucketNum >= HashContainer.maxBucketNum) - return; - var newHashTable = []; - var originalBucketNum = this.bucketNum; - this.bucketNum <<= 1; - var keys = Object.keys(this.hashTable); - var keyNums = keys.length; - var _loop_1 = function (i) { - var index = parseInt(keys[i]); - var container = this_1.hashTable[index]; - var size = container.size(); - if (size === 0) - return "continue"; - if (size === 1) { - var element = container.front(); - newHashTable[this_1.hashFunc(element[0]) & (this_1.bucketNum - 1)] = new Vector([element], false); + HashMap.prototype.v = function() { + var r = this; + if (this.l >= 1073741824) return; + var e = []; + var t = this.l; + this.l <<= 1; + var n = Object.keys(this.h); + var i = n.length; + var _loop_1 = function(i) { + var f = parseInt(n[i]); + var s = a.h[f]; + var o = s.size(); + if (o === 0) return "continue"; + if (o === 1) { + var u = s.front(); + e[a.p(u[0]) & a.l - 1] = new Vector([ u ], false); return "continue"; } - var lowList = []; - var highList = []; - container.forEach(function (element) { - var hashCode = _this.hashFunc(element[0]); - if ((hashCode & originalBucketNum) === 0) { - lowList.push(element); - } - else - highList.push(element); - }); - if (container instanceof OrderedMap) { - if (lowList.length > HashContainer.untreeifyThreshold) { - newHashTable[index] = new OrderedMap(lowList); - } - else if (lowList.length) { - newHashTable[index] = new Vector(lowList, false); - } - if (highList.length > HashContainer.untreeifyThreshold) { - newHashTable[index + originalBucketNum] = new OrderedMap(highList); - } - else if (highList.length) { - newHashTable[index + originalBucketNum] = new Vector(highList, false); - } - } - else { - if (lowList.length >= HashContainer.treeifyThreshold) { - newHashTable[index] = new OrderedMap(lowList); - } - else if (lowList.length) { - newHashTable[index] = new Vector(lowList, false); - } - if (highList.length >= HashContainer.treeifyThreshold) { - newHashTable[index + originalBucketNum] = new OrderedMap(highList); + var c = []; + var h = []; + s.forEach((function(e) { + var n = r.p(e[0]); + if ((n & t) === 0) { + c.push(e); + } else h.push(e); + })); + if (s instanceof OrderedMap) { + if (c.length > 6) { + e[f] = new OrderedMap(c); + } else { + e[f] = new Vector(c, false); } - else if (highList.length) { - newHashTable[index + originalBucketNum] = new Vector(highList, false); + if (h.length > 6) { + e[f + t] = new OrderedMap(h); + } else { + e[f + t] = new Vector(h, false); } + } else { + e[f] = new Vector(c, false); + e[f + t] = new Vector(h, false); } }; - var this_1 = this; - for (var i = 0; i < keyNums; ++i) { - _loop_1(i); + var a = this; + for (var f = 0; f < i; ++f) { + _loop_1(f); } - this.hashTable = newHashTable; + this.h = e; }; - HashMap.prototype.forEach = function (callback) { - var containers = Object.values(this.hashTable); - var containersNum = containers.length; - var index = 0; - for (var i = 0; i < containersNum; ++i) { - containers[i].forEach(function (element) { return callback(element, index++); }); + HashMap.prototype.forEach = function(r) { + var e = Object.values(this.h); + var t = e.length; + var n = 0; + for (var i = 0; i < t; ++i) { + e[i].forEach((function(e) { + return r(e, n++); + })); } }; - /** - * @description Insert a new key-value pair to hash map or set value by key. - * @param key The key you want to insert. - * @param value The value you want to insert. - * @example HashMap.setElement(1, 2); // insert a key-value pair [1, 2] - */ - HashMap.prototype.setElement = function (key, value) { - var e_1, _a; - var index = this.hashFunc(key) & (this.bucketNum - 1); - var container = this.hashTable[index]; - if (!container) { - this.length += 1; - this.hashTable[index] = new Vector([[key, value]], false); - } - else { - var preSize = container.size(); - if (container instanceof Vector) { + HashMap.prototype.setElement = function(r, e) { + var t, n; + var i = this.p(r) & this.l - 1; + var a = this.h[i]; + if (!a) { + this.o += 1; + this.h[i] = new Vector([ [ r, e ] ], false); + } else { + var f = a.size(); + if (a instanceof Vector) { try { - for (var container_1 = __values(container), container_1_1 = container_1.next(); !container_1_1.done; container_1_1 = container_1.next()) { - var pair = container_1_1.value; - if (pair[0] === key) { - pair[1] = value; + for (var s = __values(a), o = s.next(); !o.done; o = s.next()) { + var u = o.value; + if (u[0] === r) { + u[1] = e; return; } } - } - catch (e_1_1) { e_1 = { error: e_1_1 }; } - finally { + } catch (r) { + t = { + error: r + }; + } finally { try { - if (container_1_1 && !container_1_1.done && (_a = container_1.return)) _a.call(container_1); + if (o && !o.done && (n = s.return)) n.call(s); + } finally { + if (t) throw t.error; } - finally { if (e_1) throw e_1.error; } } - container.pushBack([key, value]); - if (preSize + 1 >= HashMap.treeifyThreshold) { - if (this.bucketNum <= HashMap.minTreeifySize) { - this.length += 1; - this.reAllocate(); + a.pushBack([ r, e ]); + if (f + 1 >= 8) { + if (this.l <= 64) { + this.o += 1; + this.v(); return; } - this.hashTable[index] = new OrderedMap(this.hashTable[index]); + this.h[i] = new OrderedMap(this.h[i]); } - this.length += 1; - } - else { - container.setElement(key, value); - var curSize = container.size(); - this.length += curSize - preSize; + this.o += 1; + } else { + a.setElement(r, e); + var c = a.size(); + this.o += c - f; } } - if (this.length > this.bucketNum * HashMap.sigma) { - this.reAllocate(); + if (this.o > this.l * .75) { + this.v(); } }; - /** - * @description Get the value of the element which has the specified key. - * @param key The key you want to get. - */ - HashMap.prototype.getElementByKey = function (key) { - var e_2, _a; - var index = this.hashFunc(key) & (this.bucketNum - 1); - var container = this.hashTable[index]; - if (!container) - return undefined; - if (container instanceof OrderedMap) { - return container.getElementByKey(key); - } - else { + HashMap.prototype.getElementByKey = function(r) { + var e, t; + var n = this.p(r) & this.l - 1; + var i = this.h[n]; + if (!i) return undefined; + if (i instanceof OrderedMap) { + return i.getElementByKey(r); + } else { try { - for (var container_2 = __values(container), container_2_1 = container_2.next(); !container_2_1.done; container_2_1 = container_2.next()) { - var pair = container_2_1.value; - if (pair[0] === key) - return pair[1]; + for (var a = __values(i), f = a.next(); !f.done; f = a.next()) { + var s = f.value; + if (s[0] === r) return s[1]; } - } - catch (e_2_1) { e_2 = { error: e_2_1 }; } - finally { + } catch (r) { + e = { + error: r + }; + } finally { try { - if (container_2_1 && !container_2_1.done && (_a = container_2.return)) _a.call(container_2); + if (f && !f.done && (t = a.return)) t.call(a); + } finally { + if (e) throw e.error; } - finally { if (e_2) throw e_2.error; } } return undefined; } }; - HashMap.prototype.eraseElementByKey = function (key) { - var e_3, _a; - var index = this.hashFunc(key) & (this.bucketNum - 1); - var container = this.hashTable[index]; - if (!container) - return; - if (container instanceof Vector) { - var pos = 0; + HashMap.prototype.eraseElementByKey = function(r) { + var e, t; + var n = this.p(r) & this.l - 1; + var i = this.h[n]; + if (!i) return; + if (i instanceof Vector) { + var a = 0; try { - for (var container_3 = __values(container), container_3_1 = container_3.next(); !container_3_1.done; container_3_1 = container_3.next()) { - var pair = container_3_1.value; - if (pair[0] === key) { - container.eraseElementByPos(pos); - this.length -= 1; + for (var f = __values(i), s = f.next(); !s.done; s = f.next()) { + var o = s.value; + if (o[0] === r) { + i.eraseElementByPos(a); + this.o -= 1; return; } - pos += 1; + a += 1; } - } - catch (e_3_1) { e_3 = { error: e_3_1 }; } - finally { + } catch (r) { + e = { + error: r + }; + } finally { try { - if (container_3_1 && !container_3_1.done && (_a = container_3.return)) _a.call(container_3); + if (s && !s.done && (t = f.return)) t.call(f); + } finally { + if (e) throw e.error; } - finally { if (e_3) throw e_3.error; } } - } - else { - var preSize = container.size(); - container.eraseElementByKey(key); - var curSize = container.size(); - this.length += curSize - preSize; - if (curSize <= HashContainer.untreeifyThreshold) { - this.hashTable[index] = new Vector(container); + } else { + var u = i.size(); + i.eraseElementByKey(r); + var c = i.size(); + this.o += c - u; + if (c <= 6) { + this.h[n] = new Vector(i); } } }; - HashMap.prototype.find = function (key) { - var e_4, _a; - var index = this.hashFunc(key) & (this.bucketNum - 1); - var container = this.hashTable[index]; - if (!container) - return false; - if (container instanceof OrderedMap) { - return !container.find(key) - .equals(container.end()); + HashMap.prototype.find = function(r) { + var e, t; + var n = this.p(r) & this.l - 1; + var i = this.h[n]; + if (!i) return false; + if (i instanceof OrderedMap) { + return !i.find(r).equals(i.end()); } try { - for (var container_4 = __values(container), container_4_1 = container_4.next(); !container_4_1.done; container_4_1 = container_4.next()) { - var pair = container_4_1.value; - if (pair[0] === key) - return true; + for (var a = __values(i), f = a.next(); !f.done; f = a.next()) { + var s = f.value; + if (s[0] === r) return true; } - } - catch (e_4_1) { e_4 = { error: e_4_1 }; } - finally { + } catch (r) { + e = { + error: r + }; + } finally { try { - if (container_4_1 && !container_4_1.done && (_a = container_4.return)) _a.call(container_4); + if (f && !f.done && (t = a.return)) t.call(a); + } finally { + if (e) throw e.error; } - finally { if (e_4) throw e_4.error; } } return false; }; - HashMap.prototype[Symbol.iterator] = function () { - return function () { - var containers, containersNum, i, container, container_5, container_5_1, element, e_5_1; - var e_5, _a; - return __generator(this, function (_b) { - switch (_b.label) { - case 0: - containers = Object.values(this.hashTable); - containersNum = containers.length; - i = 0; - _b.label = 1; - case 1: - if (!(i < containersNum)) return [3 /*break*/, 10]; - container = containers[i]; - _b.label = 2; - case 2: - _b.trys.push([2, 7, 8, 9]); - container_5 = (e_5 = void 0, __values(container)), container_5_1 = container_5.next(); - _b.label = 3; - case 3: - if (!!container_5_1.done) return [3 /*break*/, 6]; - element = container_5_1.value; - return [4 /*yield*/, element]; - case 4: - _b.sent(); - _b.label = 5; - case 5: - container_5_1 = container_5.next(); - return [3 /*break*/, 3]; - case 6: return [3 /*break*/, 9]; - case 7: - e_5_1 = _b.sent(); - e_5 = { error: e_5_1 }; - return [3 /*break*/, 9]; - case 8: - try { - if (container_5_1 && !container_5_1.done && (_a = container_5.return)) _a.call(container_5); - } - finally { if (e_5) throw e_5.error; } - return [7 /*endfinally*/]; - case 9: - ++i; - return [3 /*break*/, 1]; - case 10: return [2 /*return*/]; + HashMap.prototype[Symbol.iterator] = function() { + return function() { + var r, e, t, n, i, a, f, s; + var o, u; + return __generator(this, (function(c) { + switch (c.label) { + case 0: + r = Object.values(this.h); + e = r.length; + t = 0; + c.label = 1; + + case 1: + if (!(t < e)) return [ 3, 10 ]; + n = r[t]; + c.label = 2; + + case 2: + c.trys.push([ 2, 7, 8, 9 ]); + i = (o = void 0, __values(n)), a = i.next(); + c.label = 3; + + case 3: + if (!!a.done) return [ 3, 6 ]; + f = a.value; + return [ 4, f ]; + + case 4: + c.sent(); + c.label = 5; + + case 5: + a = i.next(); + return [ 3, 3 ]; + + case 6: + return [ 3, 9 ]; + + case 7: + s = c.sent(); + o = { + error: s + }; + return [ 3, 9 ]; + + case 8: + try { + if (a && !a.done && (u = i.return)) u.call(i); + } finally { + if (o) throw o.error; + } + return [ 7 ]; + + case 9: + ++t; + return [ 3, 1 ]; + + case 10: + return [ 2 ]; } - }); + })); }.bind(this)(); }; return HashMap; -}(HashContainer)); -export default HashMap; +}(HashContainer); + +export default HashMap; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/HashSet.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/HashSet.js index 2043718e8cdeef..bd2eaee5d1f369 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/HashSet.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/HashContainer/HashSet.js @@ -1,257 +1,325 @@ -var __extends = (this && this.__extends) || (function () { - var extendStatics = function (d, b) { - extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - return extendStatics(d, b); +var __extends = this && this.t || function() { + var extendStatics = function(e, t) { + extendStatics = Object.setPrototypeOf || { + __proto__: [] + } instanceof Array && function(e, t) { + e.__proto__ = t; + } || function(e, t) { + for (var r in t) if (Object.prototype.hasOwnProperty.call(t, r)) e[r] = t[r]; + }; + return extendStatics(e, t); }; - return function (d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + return function(e, t) { + if (typeof t !== "function" && t !== null) throw new TypeError("Class extends value " + String(t) + " is not a constructor or null"); + extendStatics(e, t); + function __() { + this.constructor = e; + } + e.prototype = t === null ? Object.create(t) : (__.prototype = t.prototype, new __); }; -})(); -var __generator = (this && this.__generator) || function (thisArg, body) { - var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; - return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; - function verb(n) { return function (v) { return step([n, v]); }; } - function step(op) { - if (f) throw new TypeError("Generator is already executing."); - while (_) try { - if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; - if (y = 0, t) op = [op[0] & 2, t.value]; - switch (op[0]) { - case 0: case 1: t = op; break; - case 4: _.label++; return { value: op[1], done: false }; - case 5: _.label++; y = op[1]; op = [0]; continue; - case 7: op = _.ops.pop(); _.trys.pop(); continue; - default: - if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } - if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } - if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } - if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } - if (t[2]) _.ops.pop(); - _.trys.pop(); continue; +}(); + +var __generator = this && this.i || function(e, t) { + var r = { + label: 0, + sent: function() { + if (a[0] & 1) throw a[1]; + return a[1]; + }, + trys: [], + ops: [] + }, n, i, a, s; + return s = { + next: verb(0), + throw: verb(1), + return: verb(2) + }, typeof Symbol === "function" && (s[Symbol.iterator] = function() { + return this; + }), s; + function verb(e) { + return function(t) { + return step([ e, t ]); + }; + } + function step(s) { + if (n) throw new TypeError("Generator is already executing."); + while (r) try { + if (n = 1, i && (a = s[0] & 2 ? i["return"] : s[0] ? i["throw"] || ((a = i["return"]) && a.call(i), + 0) : i.next) && !(a = a.call(i, s[1])).done) return a; + if (i = 0, a) s = [ s[0] & 2, a.value ]; + switch (s[0]) { + case 0: + case 1: + a = s; + break; + + case 4: + r.label++; + return { + value: s[1], + done: false + }; + + case 5: + r.label++; + i = s[1]; + s = [ 0 ]; + continue; + + case 7: + s = r.ops.pop(); + r.trys.pop(); + continue; + + default: + if (!(a = r.trys, a = a.length > 0 && a[a.length - 1]) && (s[0] === 6 || s[0] === 2)) { + r = 0; + continue; + } + if (s[0] === 3 && (!a || s[1] > a[0] && s[1] < a[3])) { + r.label = s[1]; + break; + } + if (s[0] === 6 && r.label < a[1]) { + r.label = a[1]; + a = s; + break; + } + if (a && r.label < a[2]) { + r.label = a[2]; + r.ops.push(s); + break; + } + if (a[2]) r.ops.pop(); + r.trys.pop(); + continue; } - op = body.call(thisArg, _); - } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } - if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + s = t.call(e, r); + } catch (e) { + s = [ 6, e ]; + i = 0; + } finally { + n = a = 0; + } + if (s[0] & 5) throw s[1]; + return { + value: s[0] ? s[1] : void 0, + done: true + }; } }; -var __values = (this && this.__values) || function(o) { - var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; - if (m) return m.call(o); - if (o && typeof o.length === "number") return { - next: function () { - if (o && i >= o.length) o = void 0; - return { value: o && o[i++], done: !o }; + +var __values = this && this.u || function(e) { + var t = typeof Symbol === "function" && Symbol.iterator, r = t && e[t], n = 0; + if (r) return r.call(e); + if (e && typeof e.length === "number") return { + next: function() { + if (e && n >= e.length) e = void 0; + return { + value: e && e[n++], + done: !e + }; } }; - throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); + throw new TypeError(t ? "Object is not iterable." : "Symbol.iterator is not defined."); }; -import HashContainer from './Base/index'; -import Vector from '../SequentialContainer/Vector'; -import OrderedSet from '../TreeContainer/OrderedSet'; -var HashSet = /** @class */ (function (_super) { - __extends(HashSet, _super); - function HashSet(container, initBucketNum, hashFunc) { - if (container === void 0) { container = []; } - var _this = _super.call(this, initBucketNum, hashFunc) || this; - _this.hashTable = []; - container.forEach(function (element) { return _this.insert(element); }); - return _this; + +import HashContainer from "./Base"; + +import Vector from "../SequentialContainer/Vector"; + +import OrderedSet from "../TreeContainer/OrderedSet"; + +var HashSet = function(e) { + __extends(HashSet, e); + function HashSet(t, r, n) { + if (t === void 0) { + t = []; + } + var i = e.call(this, r, n) || this; + i.h = []; + t.forEach((function(e) { + return i.insert(e); + })); + return i; } - HashSet.prototype.reAllocate = function () { - var _this = this; - if (this.bucketNum >= HashContainer.maxBucketNum) - return; - var newHashTable = []; - var originalBucketNum = this.bucketNum; - this.bucketNum <<= 1; - var keys = Object.keys(this.hashTable); - var keyNums = keys.length; - var _loop_1 = function (i) { - var index = parseInt(keys[i]); - var container = this_1.hashTable[index]; - var size = container.size(); - if (size === 0) - return "continue"; - if (size === 1) { - var element = container.front(); - newHashTable[this_1.hashFunc(element) & (this_1.bucketNum - 1)] = new Vector([element], false); + HashSet.prototype.v = function() { + var e = this; + if (this.l >= 1073741824) return; + var t = []; + var r = this.l; + this.l <<= 1; + var n = Object.keys(this.h); + var i = n.length; + var _loop_1 = function(i) { + var s = parseInt(n[i]); + var o = a.h[s]; + var f = o.size(); + if (f === 0) return "continue"; + if (f === 1) { + var u = o.front(); + t[a.p(u) & a.l - 1] = new Vector([ u ], false); return "continue"; } - var lowList = []; - var highList = []; - container.forEach(function (element) { - var hashCode = _this.hashFunc(element); - if ((hashCode & originalBucketNum) === 0) { - lowList.push(element); + var c = []; + var h = []; + o.forEach((function(t) { + var n = e.p(t); + if ((n & r) === 0) { + c.push(t); + } else h.push(t); + })); + if (o instanceof OrderedSet) { + if (c.length > 6) { + t[s] = new OrderedSet(c); + } else { + t[s] = new Vector(c, false); } - else - highList.push(element); - }); - if (container instanceof OrderedSet) { - if (lowList.length > HashContainer.untreeifyThreshold) { - newHashTable[index] = new OrderedSet(lowList); - } - else if (lowList.length) { - newHashTable[index] = new Vector(lowList, false); - } - if (highList.length > HashContainer.untreeifyThreshold) { - newHashTable[index + originalBucketNum] = new OrderedSet(highList); - } - else if (highList.length) { - newHashTable[index + originalBucketNum] = new Vector(highList, false); - } - } - else { - if (lowList.length >= HashContainer.treeifyThreshold) { - newHashTable[index] = new OrderedSet(lowList); - } - else if (lowList.length) { - newHashTable[index] = new Vector(lowList, false); - } - if (highList.length >= HashContainer.treeifyThreshold) { - newHashTable[index + originalBucketNum] = new OrderedSet(highList); - } - else if (highList.length) { - newHashTable[index + originalBucketNum] = new Vector(highList, false); + if (h.length > 6) { + t[s + r] = new OrderedSet(h); + } else { + t[s + r] = new Vector(h, false); } + } else { + t[s] = new Vector(c, false); + t[s + r] = new Vector(h, false); } }; - var this_1 = this; - for (var i = 0; i < keyNums; ++i) { - _loop_1(i); + var a = this; + for (var s = 0; s < i; ++s) { + _loop_1(s); } - this.hashTable = newHashTable; + this.h = t; }; - HashSet.prototype.forEach = function (callback) { - var containers = Object.values(this.hashTable); - var containersNum = containers.length; - var index = 0; - for (var i = 0; i < containersNum; ++i) { - containers[i].forEach(function (element) { return callback(element, index++); }); + HashSet.prototype.forEach = function(e) { + var t = Object.values(this.h); + var r = t.length; + var n = 0; + for (var i = 0; i < r; ++i) { + t[i].forEach((function(t) { + return e(t, n++); + })); } }; - /** - * @description Insert element to hash set. - * @param element The element you want to insert. - */ - HashSet.prototype.insert = function (element) { - var index = this.hashFunc(element) & (this.bucketNum - 1); - var container = this.hashTable[index]; - if (!container) { - this.hashTable[index] = new Vector([element], false); - this.length += 1; - } - else { - var preSize = container.size(); - if (container instanceof Vector) { - if (!container.find(element) - .equals(container.end())) - return; - container.pushBack(element); - if (preSize + 1 >= HashContainer.treeifyThreshold) { - if (this.bucketNum <= HashContainer.minTreeifySize) { - this.length += 1; - this.reAllocate(); + HashSet.prototype.insert = function(e) { + var t = this.p(e) & this.l - 1; + var r = this.h[t]; + if (!r) { + this.h[t] = new Vector([ e ], false); + this.o += 1; + } else { + var n = r.size(); + if (r instanceof Vector) { + if (!r.find(e).equals(r.end())) return; + r.pushBack(e); + if (n + 1 >= 8) { + if (this.l <= 64) { + this.o += 1; + this.v(); return; } - this.hashTable[index] = new OrderedSet(container); + this.h[t] = new OrderedSet(r); } - this.length += 1; - } - else { - container.insert(element); - var curSize = container.size(); - this.length += curSize - preSize; + this.o += 1; + } else { + r.insert(e); + var i = r.size(); + this.o += i - n; } } - if (this.length > this.bucketNum * HashContainer.sigma) { - this.reAllocate(); + if (this.o > this.l * .75) { + this.v(); } }; - HashSet.prototype.eraseElementByKey = function (key) { - var index = this.hashFunc(key) & (this.bucketNum - 1); - var container = this.hashTable[index]; - if (!container) - return; - var preSize = container.size(); - if (preSize === 0) - return; - if (container instanceof Vector) { - container.eraseElementByValue(key); - var curSize = container.size(); - this.length += curSize - preSize; - } - else { - container.eraseElementByKey(key); - var curSize = container.size(); - this.length += curSize - preSize; - if (curSize <= HashContainer.untreeifyThreshold) { - this.hashTable[index] = new Vector(container); + HashSet.prototype.eraseElementByKey = function(e) { + var t = this.p(e) & this.l - 1; + var r = this.h[t]; + if (!r) return; + var n = r.size(); + if (n === 0) return; + if (r instanceof Vector) { + r.eraseElementByValue(e); + var i = r.size(); + this.o += i - n; + } else { + r.eraseElementByKey(e); + var i = r.size(); + this.o += i - n; + if (i <= 6) { + this.h[t] = new Vector(r); } } }; - HashSet.prototype.find = function (element) { - var index = this.hashFunc(element) & (this.bucketNum - 1); - var container = this.hashTable[index]; - if (!container) - return false; - return !container.find(element) - .equals(container.end()); + HashSet.prototype.find = function(e) { + var t = this.p(e) & this.l - 1; + var r = this.h[t]; + if (!r) return false; + return !r.find(e).equals(r.end()); }; - HashSet.prototype[Symbol.iterator] = function () { - return function () { - var containers, containersNum, i, container, container_1, container_1_1, element, e_1_1; - var e_1, _a; - return __generator(this, function (_b) { - switch (_b.label) { - case 0: - containers = Object.values(this.hashTable); - containersNum = containers.length; - i = 0; - _b.label = 1; - case 1: - if (!(i < containersNum)) return [3 /*break*/, 10]; - container = containers[i]; - _b.label = 2; - case 2: - _b.trys.push([2, 7, 8, 9]); - container_1 = (e_1 = void 0, __values(container)), container_1_1 = container_1.next(); - _b.label = 3; - case 3: - if (!!container_1_1.done) return [3 /*break*/, 6]; - element = container_1_1.value; - return [4 /*yield*/, element]; - case 4: - _b.sent(); - _b.label = 5; - case 5: - container_1_1 = container_1.next(); - return [3 /*break*/, 3]; - case 6: return [3 /*break*/, 9]; - case 7: - e_1_1 = _b.sent(); - e_1 = { error: e_1_1 }; - return [3 /*break*/, 9]; - case 8: - try { - if (container_1_1 && !container_1_1.done && (_a = container_1.return)) _a.call(container_1); - } - finally { if (e_1) throw e_1.error; } - return [7 /*endfinally*/]; - case 9: - ++i; - return [3 /*break*/, 1]; - case 10: return [2 /*return*/]; + HashSet.prototype[Symbol.iterator] = function() { + return function() { + var e, t, r, n, i, a, s, o; + var f, u; + return __generator(this, (function(c) { + switch (c.label) { + case 0: + e = Object.values(this.h); + t = e.length; + r = 0; + c.label = 1; + + case 1: + if (!(r < t)) return [ 3, 10 ]; + n = e[r]; + c.label = 2; + + case 2: + c.trys.push([ 2, 7, 8, 9 ]); + i = (f = void 0, __values(n)), a = i.next(); + c.label = 3; + + case 3: + if (!!a.done) return [ 3, 6 ]; + s = a.value; + return [ 4, s ]; + + case 4: + c.sent(); + c.label = 5; + + case 5: + a = i.next(); + return [ 3, 3 ]; + + case 6: + return [ 3, 9 ]; + + case 7: + o = c.sent(); + f = { + error: o + }; + return [ 3, 9 ]; + + case 8: + try { + if (a && !a.done && (u = i.return)) u.call(i); + } finally { + if (f) throw f.error; + } + return [ 7 ]; + + case 9: + ++r; + return [ 3, 1 ]; + + case 10: + return [ 2 ]; } - }); + })); }.bind(this)(); }; return HashSet; -}(HashContainer)); -export default HashSet; +}(HashContainer); + +export default HashSet; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/PriorityQueue.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/PriorityQueue.js index f38a83e9ec93f0..7c2c3c5e72801a 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/PriorityQueue.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/PriorityQueue.js @@ -1,167 +1,167 @@ -var __extends = (this && this.__extends) || (function () { - var extendStatics = function (d, b) { - extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - return extendStatics(d, b); +var __extends = this && this.t || function() { + var extendStatics = function(i, t) { + extendStatics = Object.setPrototypeOf || { + __proto__: [] + } instanceof Array && function(i, t) { + i.__proto__ = t; + } || function(i, t) { + for (var r in t) if (Object.prototype.hasOwnProperty.call(t, r)) i[r] = t[r]; + }; + return extendStatics(i, t); }; - return function (d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + return function(i, t) { + if (typeof t !== "function" && t !== null) throw new TypeError("Class extends value " + String(t) + " is not a constructor or null"); + extendStatics(i, t); + function __() { + this.constructor = i; + } + i.prototype = t === null ? Object.create(t) : (__.prototype = t.prototype, new __); }; -})(); -var __read = (this && this.__read) || function (o, n) { - var m = typeof Symbol === "function" && o[Symbol.iterator]; - if (!m) return o; - var i = m.call(o), r, ar = [], e; +}(); + +var __read = this && this._ || function(i, t) { + var r = typeof Symbol === "function" && i[Symbol.iterator]; + if (!r) return i; + var e = r.call(i), n, u = [], s; try { - while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value); - } - catch (error) { e = { error: error }; } - finally { + while ((t === void 0 || t-- > 0) && !(n = e.next()).done) u.push(n.value); + } catch (i) { + s = { + error: i + }; + } finally { try { - if (r && !r.done && (m = i["return"])) m.call(i); + if (n && !n.done && (r = e["return"])) r.call(e); + } finally { + if (s) throw s.error; } - finally { if (e) throw e.error; } } - return ar; + return u; }; -var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) { - if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) { - if (ar || !(i in from)) { - if (!ar) ar = Array.prototype.slice.call(from, 0, i); - ar[i] = from[i]; + +var __spreadArray = this && this.P || function(i, t, r) { + if (r || arguments.length === 2) for (var e = 0, n = t.length, u; e < n; e++) { + if (u || !(e in t)) { + if (!u) u = Array.prototype.slice.call(t, 0, e); + u[e] = t[e]; } } - return to.concat(ar || Array.prototype.slice.call(from)); + return i.concat(u || Array.prototype.slice.call(t)); }; -import { Base } from "../ContainerBase/index"; -var PriorityQueue = /** @class */ (function (_super) { - __extends(PriorityQueue, _super); - /** - * @description PriorityQueue's constructor. - * @param container Initialize container, must have a forEach function. - * @param cmp Compare function. - * @param copy When the container is an array, you can choose to directly operate on the original object of - * the array or perform a shallow copy. The default is shallow copy. - */ - function PriorityQueue(container, cmp, copy) { - var _a; - if (container === void 0) { container = []; } - if (cmp === void 0) { cmp = function (x, y) { - if (x > y) - return -1; - if (x < y) - return 1; - return 0; - }; } - if (copy === void 0) { copy = true; } - var _this = _super.call(this) || this; - _this.cmp = cmp; - if (Array.isArray(container)) { - _this.priorityQueue = copy ? __spreadArray([], __read(container), false) : container; + +import { Base } from "../ContainerBase"; + +var PriorityQueue = function(i) { + __extends(PriorityQueue, i); + function PriorityQueue(t, r, e) { + if (t === void 0) { + t = []; } - else { - _this.priorityQueue = []; - container.forEach(function (element) { return _this.priorityQueue.push(element); }); + if (r === void 0) { + r = function(i, t) { + if (i > t) return -1; + if (i < t) return 1; + return 0; + }; } - _this.length = _this.priorityQueue.length; - for (var parent_1 = (_this.length - 1) >> 1; parent_1 >= 0; --parent_1) { - var curParent = parent_1; - var curChild = (curParent << 1) | 1; - while (curChild < _this.length) { - var left = curChild; - var right = left + 1; - var minChild = left; - if (right < _this.length && - _this.cmp(_this.priorityQueue[left], _this.priorityQueue[right]) > 0) { - minChild = right; - } - if (_this.cmp(_this.priorityQueue[curParent], _this.priorityQueue[minChild]) <= 0) - break; - _a = __read([_this.priorityQueue[minChild], _this.priorityQueue[curParent]], 2), _this.priorityQueue[curParent] = _a[0], _this.priorityQueue[minChild] = _a[1]; - curParent = minChild; - curChild = (curParent << 1) | 1; - } + if (e === void 0) { + e = true; } - return _this; + var n = i.call(this) || this; + n.A = r; + if (Array.isArray(t)) { + n.m = e ? __spreadArray([], __read(t), false) : t; + } else { + n.m = []; + t.forEach((function(i) { + return n.m.push(i); + })); + } + n.o = n.m.length; + var u = n.o >> 1; + for (var s = n.o - 1 >> 1; s >= 0; --s) { + n.j(s, u); + } + return n; } - /** - * @description Adjusting parent's children to suit the nature of the heap. - * @param parent Parent's index. - * @private - */ - PriorityQueue.prototype.adjust = function (parent) { - var _a, _b; - var left = (parent << 1) | 1; - var right = (parent << 1) + 2; - if (left < this.length && - this.cmp(this.priorityQueue[parent], this.priorityQueue[left]) > 0) { - _a = __read([this.priorityQueue[left], this.priorityQueue[parent]], 2), this.priorityQueue[parent] = _a[0], this.priorityQueue[left] = _a[1]; + PriorityQueue.prototype.B = function(i) { + var t = this.m[i]; + while (i > 0) { + var r = i - 1 >> 1; + var e = this.m[r]; + if (this.A(e, t) <= 0) break; + this.m[i] = e; + i = r; } - if (right < this.length && - this.cmp(this.priorityQueue[parent], this.priorityQueue[right]) > 0) { - _b = __read([this.priorityQueue[right], this.priorityQueue[parent]], 2), this.priorityQueue[parent] = _b[0], this.priorityQueue[right] = _b[1]; + this.m[i] = t; + }; + PriorityQueue.prototype.j = function(i, t) { + var r = this.m[i]; + while (i < t) { + var e = i << 1 | 1; + var n = e + 1; + var u = this.m[e]; + if (n < this.o && this.A(u, this.m[n]) > 0) { + e = n; + u = this.m[n]; + } + if (this.A(u, r) >= 0) break; + this.m[i] = u; + i = e; } + this.m[i] = r; + }; + PriorityQueue.prototype.clear = function() { + this.o = 0; + this.m.length = 0; }; - PriorityQueue.prototype.clear = function () { - this.length = 0; - this.priorityQueue.length = 0; + PriorityQueue.prototype.push = function(i) { + this.m.push(i); + this.B(this.o); + this.o += 1; }; - /** - * @description Push element into a container in order. - * @param element The element you want to push. - */ - PriorityQueue.prototype.push = function (element) { - this.priorityQueue.push(element); - this.length += 1; - if (this.length === 1) - return; - var curNode = this.length - 1; - while (curNode > 0) { - var parent_2 = (curNode - 1) >> 1; - if (this.cmp(this.priorityQueue[parent_2], element) <= 0) - break; - this.adjust(parent_2); - curNode = parent_2; + PriorityQueue.prototype.pop = function() { + if (!this.o) return; + var i = this.m.pop(); + this.o -= 1; + if (this.o) { + this.m[0] = i; + this.j(0, this.o >> 1); } }; - /** - * @description Removes the top element. - */ - PriorityQueue.prototype.pop = function () { - if (!this.length) - return; - var last = this.priorityQueue[this.length - 1]; - this.length -= 1; - var parent = 0; - while (parent < this.length) { - var left = (parent << 1) | 1; - var right = (parent << 1) + 2; - if (left >= this.length) - break; - var minChild = left; - if (right < this.length && - this.cmp(this.priorityQueue[left], this.priorityQueue[right]) > 0) { - minChild = right; - } - if (this.cmp(this.priorityQueue[minChild], last) >= 0) - break; - this.priorityQueue[parent] = this.priorityQueue[minChild]; - parent = minChild; + PriorityQueue.prototype.top = function() { + return this.m[0]; + }; + PriorityQueue.prototype.find = function(i) { + return this.m.indexOf(i) >= 0; + }; + PriorityQueue.prototype.remove = function(i) { + var t = this.m.indexOf(i); + if (t < 0) return false; + if (t === 0) { + this.pop(); + } else if (t === this.o - 1) { + this.m.pop(); + this.o -= 1; + } else { + this.m.splice(t, 1, this.m.pop()); + this.o -= 1; + this.B(t); + this.j(t, this.o >> 1); } - this.priorityQueue[parent] = last; - this.priorityQueue.pop(); + return true; + }; + PriorityQueue.prototype.updateItem = function(i) { + var t = this.m.indexOf(i); + if (t < 0) return false; + this.B(t); + this.j(t, this.o >> 1); + return true; }; - /** - * @description Accesses the top element. - */ - PriorityQueue.prototype.top = function () { - return this.priorityQueue[0]; + PriorityQueue.prototype.toArray = function() { + return __spreadArray([], __read(this.m), false); }; return PriorityQueue; -}(Base)); -export default PriorityQueue; +}(Base); + +export default PriorityQueue; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/Queue.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/Queue.js index 539aaa9e558426..51977867a98034 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/Queue.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/Queue.js @@ -1,54 +1,55 @@ -var __extends = (this && this.__extends) || (function () { - var extendStatics = function (d, b) { - extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - return extendStatics(d, b); +var __extends = this && this.t || function() { + var extendStatics = function(e, t) { + extendStatics = Object.setPrototypeOf || { + __proto__: [] + } instanceof Array && function(e, t) { + e.__proto__ = t; + } || function(e, t) { + for (var n in t) if (Object.prototype.hasOwnProperty.call(t, n)) e[n] = t[n]; + }; + return extendStatics(e, t); }; - return function (d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + return function(e, t) { + if (typeof t !== "function" && t !== null) throw new TypeError("Class extends value " + String(t) + " is not a constructor or null"); + extendStatics(e, t); + function __() { + this.constructor = e; + } + e.prototype = t === null ? Object.create(t) : (__.prototype = t.prototype, new __); }; -})(); -import Deque from '../SequentialContainer/Deque'; -import { Base } from "../ContainerBase/index"; -var Queue = /** @class */ (function (_super) { - __extends(Queue, _super); - function Queue(container) { - if (container === void 0) { container = []; } - var _this = _super.call(this) || this; - _this.queue = new Deque(container); - _this.length = _this.queue.size(); - return _this; +}(); + +import Deque from "../SequentialContainer/Deque"; + +import { Base } from "../ContainerBase"; + +var Queue = function(e) { + __extends(Queue, e); + function Queue(t) { + if (t === void 0) { + t = []; + } + var n = e.call(this) || this; + n.q = new Deque(t); + n.o = n.q.size(); + return n; } - Queue.prototype.clear = function () { - this.queue.clear(); - this.length = 0; + Queue.prototype.clear = function() { + this.q.clear(); + this.o = 0; }; - /** - * @description Inserts element to queue's end. - */ - Queue.prototype.push = function (element) { - this.queue.pushBack(element); - this.length += 1; + Queue.prototype.push = function(e) { + this.q.pushBack(e); + this.o += 1; }; - /** - * @description Removes the first element. - */ - Queue.prototype.pop = function () { - this.queue.popFront(); - if (this.length) - this.length -= 1; + Queue.prototype.pop = function() { + this.q.popFront(); + if (this.o) this.o -= 1; }; - /** - * @description Access the first element. - */ - Queue.prototype.front = function () { - return this.queue.front(); + Queue.prototype.front = function() { + return this.q.front(); }; return Queue; -}(Base)); -export default Queue; +}(Base); + +export default Queue; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/Stack.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/Stack.js index 11b1a8f208197f..7f9b224684df75 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/Stack.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/OtherContainer/Stack.js @@ -1,53 +1,55 @@ -var __extends = (this && this.__extends) || (function () { - var extendStatics = function (d, b) { - extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - return extendStatics(d, b); +var __extends = this && this.t || function() { + var extendStatics = function(t, n) { + extendStatics = Object.setPrototypeOf || { + __proto__: [] + } instanceof Array && function(t, n) { + t.__proto__ = n; + } || function(t, n) { + for (var i in n) if (Object.prototype.hasOwnProperty.call(n, i)) t[i] = n[i]; + }; + return extendStatics(t, n); }; - return function (d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + return function(t, n) { + if (typeof n !== "function" && n !== null) throw new TypeError("Class extends value " + String(n) + " is not a constructor or null"); + extendStatics(t, n); + function __() { + this.constructor = t; + } + t.prototype = n === null ? Object.create(n) : (__.prototype = n.prototype, new __); }; -})(); -import { Base } from "../ContainerBase/index"; -var Stack = /** @class */ (function (_super) { - __extends(Stack, _super); - function Stack(container) { - if (container === void 0) { container = []; } - var _this = _super.call(this) || this; - _this.stack = []; - container.forEach(function (element) { return _this.push(element); }); - return _this; +}(); + +import { Base } from "../ContainerBase"; + +var Stack = function(t) { + __extends(Stack, t); + function Stack(n) { + if (n === void 0) { + n = []; + } + var i = t.call(this) || this; + i.S = []; + n.forEach((function(t) { + return i.push(t); + })); + return i; } - Stack.prototype.clear = function () { - this.length = 0; - this.stack.length = 0; + Stack.prototype.clear = function() { + this.o = 0; + this.S.length = 0; }; - /** - * @description Insert element to stack's end. - */ - Stack.prototype.push = function (element) { - this.stack.push(element); - this.length += 1; + Stack.prototype.push = function(t) { + this.S.push(t); + this.o += 1; }; - /** - * @description Removes the end element. - */ - Stack.prototype.pop = function () { - this.stack.pop(); - if (this.length > 0) - this.length -= 1; + Stack.prototype.pop = function() { + this.S.pop(); + if (this.o > 0) this.o -= 1; }; - /** - * @description Accesses the end element. - */ - Stack.prototype.top = function () { - return this.stack[this.length - 1]; + Stack.prototype.top = function() { + return this.S[this.o - 1]; }; return Stack; -}(Base)); -export default Stack; +}(Base); + +export default Stack; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Base/RandomIterator.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Base/RandomIterator.js index 90826e30d123fa..7cbf3b1b8533a6 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Base/RandomIterator.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Base/RandomIterator.js @@ -1,77 +1,87 @@ -var __extends = (this && this.__extends) || (function () { - var extendStatics = function (d, b) { - extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - return extendStatics(d, b); +var __extends = this && this.t || function() { + var extendStatics = function(t, r) { + extendStatics = Object.setPrototypeOf || { + __proto__: [] + } instanceof Array && function(t, r) { + t.__proto__ = r; + } || function(t, r) { + for (var n in r) if (Object.prototype.hasOwnProperty.call(r, n)) t[n] = r[n]; + }; + return extendStatics(t, r); }; - return function (d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + return function(t, r) { + if (typeof r !== "function" && r !== null) throw new TypeError("Class extends value " + String(r) + " is not a constructor or null"); + extendStatics(t, r); + function __() { + this.constructor = t; + } + t.prototype = r === null ? Object.create(r) : (__.prototype = r.prototype, new __); }; -})(); -import { checkWithinAccessParams } from "../../../utils/checkParams"; -import { ContainerIterator } from "../../ContainerBase/index"; -var RandomIterator = /** @class */ (function (_super) { - __extends(RandomIterator, _super); - function RandomIterator(index, size, getElementByPos, setElementByPos, iteratorType) { - var _this = _super.call(this, iteratorType) || this; - _this.node = index; - _this.size = size; - _this.getElementByPos = getElementByPos; - _this.setElementByPos = setElementByPos; - if (_this.iteratorType === ContainerIterator.NORMAL) { - _this.pre = function () { - if (this.node === 0) { - throw new RangeError('Deque iterator access denied!'); +}(); + +import { ContainerIterator } from "../../ContainerBase"; + +var RandomIterator = function(t) { + __extends(RandomIterator, t); + function RandomIterator(r, n, e, i, o) { + var a = t.call(this, o) || this; + a.D = r; + a.I = n; + a.g = e; + a.R = i; + if (a.iteratorType === 0) { + a.pre = function() { + if (this.D === 0) { + throw new RangeError("Random iterator access denied!"); } - this.node -= 1; + this.D -= 1; return this; }; - _this.next = function () { - if (this.node === this.size()) { - throw new RangeError('Deque Iterator access denied!'); + a.next = function() { + if (this.D === this.I()) { + throw new RangeError("Random Iterator access denied!"); } - this.node += 1; + this.D += 1; return this; }; - } - else { - _this.pre = function () { - if (this.node === this.size() - 1) { - throw new RangeError('Deque iterator access denied!'); + } else { + a.pre = function() { + if (this.D === this.I() - 1) { + throw new RangeError("Random iterator access denied!"); } - this.node += 1; + this.D += 1; return this; }; - _this.next = function () { - if (this.node === -1) { - throw new RangeError('Deque iterator access denied!'); + a.next = function() { + if (this.D === -1) { + throw new RangeError("Random iterator access denied!"); } - this.node -= 1; + this.D -= 1; return this; }; } - return _this; + return a; } Object.defineProperty(RandomIterator.prototype, "pointer", { - get: function () { - checkWithinAccessParams(this.node, 0, this.size() - 1); - return this.getElementByPos(this.node); + get: function() { + if (this.D < 0 || this.D > this.I() - 1) { + throw new RangeError; + } + return this.g(this.D); }, - set: function (newValue) { - checkWithinAccessParams(this.node, 0, this.size() - 1); - this.setElementByPos(this.node, newValue); + set: function(t) { + if (this.D < 0 || this.D > this.I() - 1) { + throw new RangeError; + } + this.R(this.D, t); }, enumerable: false, configurable: true }); - RandomIterator.prototype.equals = function (obj) { - return this.node === obj.node; + RandomIterator.prototype.equals = function(t) { + return this.D === t.D; }; return RandomIterator; -}(ContainerIterator)); -export { RandomIterator }; +}(ContainerIterator); + +export { RandomIterator }; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Base/index.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Base/index.js index 07e36f9e11f9bc..538eed9bfc3626 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Base/index.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Base/index.js @@ -1,24 +1,32 @@ -var __extends = (this && this.__extends) || (function () { - var extendStatics = function (d, b) { - extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - return extendStatics(d, b); +var __extends = this && this.t || function() { + var extendStatics = function(n, t) { + extendStatics = Object.setPrototypeOf || { + __proto__: [] + } instanceof Array && function(n, t) { + n.__proto__ = t; + } || function(n, t) { + for (var e in t) if (Object.prototype.hasOwnProperty.call(t, e)) n[e] = t[e]; + }; + return extendStatics(n, t); }; - return function (d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + return function(n, t) { + if (typeof t !== "function" && t !== null) throw new TypeError("Class extends value " + String(t) + " is not a constructor or null"); + extendStatics(n, t); + function __() { + this.constructor = n; + } + n.prototype = t === null ? Object.create(t) : (__.prototype = t.prototype, new __); }; -})(); -import { Container } from "../../ContainerBase/index"; -var SequentialContainer = /** @class */ (function (_super) { - __extends(SequentialContainer, _super); +}(); + +import { Container } from "../../ContainerBase"; + +var SequentialContainer = function(n) { + __extends(SequentialContainer, n); function SequentialContainer() { - return _super !== null && _super.apply(this, arguments) || this; + return n !== null && n.apply(this, arguments) || this; } return SequentialContainer; -}(Container)); -export default SequentialContainer; +}(Container); + +export default SequentialContainer; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Deque.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Deque.js index bfafa4efd789f8..1101ef09632a75 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Deque.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Deque.js @@ -1,450 +1,493 @@ -var __extends = (this && this.__extends) || (function () { - var extendStatics = function (d, b) { - extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - return extendStatics(d, b); +var __extends = this && this.t || function() { + var extendStatics = function(t, i) { + extendStatics = Object.setPrototypeOf || { + __proto__: [] + } instanceof Array && function(t, i) { + t.__proto__ = i; + } || function(t, i) { + for (var e in i) if (Object.prototype.hasOwnProperty.call(i, e)) t[e] = i[e]; + }; + return extendStatics(t, i); }; - return function (d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + return function(t, i) { + if (typeof i !== "function" && i !== null) throw new TypeError("Class extends value " + String(i) + " is not a constructor or null"); + extendStatics(t, i); + function __() { + this.constructor = t; + } + t.prototype = i === null ? Object.create(i) : (__.prototype = i.prototype, new __); }; -})(); -var __generator = (this && this.__generator) || function (thisArg, body) { - var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; - return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; - function verb(n) { return function (v) { return step([n, v]); }; } - function step(op) { - if (f) throw new TypeError("Generator is already executing."); - while (_) try { - if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; - if (y = 0, t) op = [op[0] & 2, t.value]; - switch (op[0]) { - case 0: case 1: t = op; break; - case 4: _.label++; return { value: op[1], done: false }; - case 5: _.label++; y = op[1]; op = [0]; continue; - case 7: op = _.ops.pop(); _.trys.pop(); continue; - default: - if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } - if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } - if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } - if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } - if (t[2]) _.ops.pop(); - _.trys.pop(); continue; +}(); + +var __generator = this && this.i || function(t, i) { + var e = { + label: 0, + sent: function() { + if (h[0] & 1) throw h[1]; + return h[1]; + }, + trys: [], + ops: [] + }, r, s, h, n; + return n = { + next: verb(0), + throw: verb(1), + return: verb(2) + }, typeof Symbol === "function" && (n[Symbol.iterator] = function() { + return this; + }), n; + function verb(t) { + return function(i) { + return step([ t, i ]); + }; + } + function step(n) { + if (r) throw new TypeError("Generator is already executing."); + while (e) try { + if (r = 1, s && (h = n[0] & 2 ? s["return"] : n[0] ? s["throw"] || ((h = s["return"]) && h.call(s), + 0) : s.next) && !(h = h.call(s, n[1])).done) return h; + if (s = 0, h) n = [ n[0] & 2, h.value ]; + switch (n[0]) { + case 0: + case 1: + h = n; + break; + + case 4: + e.label++; + return { + value: n[1], + done: false + }; + + case 5: + e.label++; + s = n[1]; + n = [ 0 ]; + continue; + + case 7: + n = e.ops.pop(); + e.trys.pop(); + continue; + + default: + if (!(h = e.trys, h = h.length > 0 && h[h.length - 1]) && (n[0] === 6 || n[0] === 2)) { + e = 0; + continue; + } + if (n[0] === 3 && (!h || n[1] > h[0] && n[1] < h[3])) { + e.label = n[1]; + break; + } + if (n[0] === 6 && e.label < h[1]) { + e.label = h[1]; + h = n; + break; + } + if (h && e.label < h[2]) { + e.label = h[2]; + e.ops.push(n); + break; + } + if (h[2]) e.ops.pop(); + e.trys.pop(); + continue; } - op = body.call(thisArg, _); - } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } - if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + n = i.call(t, e); + } catch (t) { + n = [ 6, t ]; + s = 0; + } finally { + r = h = 0; + } + if (n[0] & 5) throw n[1]; + return { + value: n[0] ? n[1] : void 0, + done: true + }; } }; -var __read = (this && this.__read) || function (o, n) { - var m = typeof Symbol === "function" && o[Symbol.iterator]; - if (!m) return o; - var i = m.call(o), r, ar = [], e; + +var __read = this && this._ || function(t, i) { + var e = typeof Symbol === "function" && t[Symbol.iterator]; + if (!e) return t; + var r = e.call(t), s, h = [], n; try { - while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value); - } - catch (error) { e = { error: error }; } - finally { + while ((i === void 0 || i-- > 0) && !(s = r.next()).done) h.push(s.value); + } catch (t) { + n = { + error: t + }; + } finally { try { - if (r && !r.done && (m = i["return"])) m.call(i); + if (s && !s.done && (e = r["return"])) e.call(r); + } finally { + if (n) throw n.error; } - finally { if (e) throw e.error; } } - return ar; + return h; }; -var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) { - if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) { - if (ar || !(i in from)) { - if (!ar) ar = Array.prototype.slice.call(from, 0, i); - ar[i] = from[i]; + +var __spreadArray = this && this.P || function(t, i, e) { + if (e || arguments.length === 2) for (var r = 0, s = i.length, h; r < s; r++) { + if (h || !(r in i)) { + if (!h) h = Array.prototype.slice.call(i, 0, r); + h[r] = i[r]; } } - return to.concat(ar || Array.prototype.slice.call(from)); + return t.concat(h || Array.prototype.slice.call(i)); }; -import SequentialContainer from './Base/index'; -import { checkWithinAccessParams } from "../../utils/checkParams"; -import { ContainerIterator } from "../ContainerBase/index"; + +import SequentialContainer from "./Base"; + import { RandomIterator } from "./Base/RandomIterator"; -var DequeIterator = /** @class */ (function (_super) { - __extends(DequeIterator, _super); + +var DequeIterator = function(t) { + __extends(DequeIterator, t); function DequeIterator() { - return _super !== null && _super.apply(this, arguments) || this; + return t !== null && t.apply(this, arguments) || this; } - DequeIterator.prototype.copy = function () { - return new DequeIterator(this.node, this.size, this.getElementByPos, this.setElementByPos, this.iteratorType); + DequeIterator.prototype.copy = function() { + return new DequeIterator(this.D, this.I, this.g, this.R, this.iteratorType); }; return DequeIterator; -}(RandomIterator)); +}(RandomIterator); + export { DequeIterator }; -var Deque = /** @class */ (function (_super) { - __extends(Deque, _super); - function Deque(container, bucketSize) { - if (container === void 0) { container = []; } - if (bucketSize === void 0) { bucketSize = (1 << 12); } - var _this = _super.call(this) || this; - _this.first = 0; - _this.curFirst = 0; - _this.last = 0; - _this.curLast = 0; - _this.bucketNum = 0; - _this.map = []; - var _length; - if ('size' in container) { - if (typeof container.size === 'number') { - _length = container.size; - } - else { - _length = container.size(); - } + +var Deque = function(t) { + __extends(Deque, t); + function Deque(i, e) { + if (i === void 0) { + i = []; } - else if ('length' in container) { - _length = container.length; + if (e === void 0) { + e = 1 << 12; } - else { - throw new RangeError('Can\'t get container\'s size!'); + var r = t.call(this) || this; + r.M = 0; + r.k = 0; + r.C = 0; + r.O = 0; + r.l = 0; + r.N = []; + var s; + if ("size" in i) { + if (typeof i.size === "number") { + s = i.size; + } else { + s = i.size(); + } + } else if ("length" in i) { + s = i.length; + } else { + throw new RangeError("Can't get container's size!"); } - _this.bucketSize = bucketSize; - _this.bucketNum = Math.max(Math.ceil(_length / _this.bucketSize), 1); - for (var i = 0; i < _this.bucketNum; ++i) { - _this.map.push(new Array(_this.bucketSize)); + r.T = e; + r.l = Math.max(Math.ceil(s / r.T), 1); + for (var h = 0; h < r.l; ++h) { + r.N.push(new Array(r.T)); } - var needBucketNum = Math.ceil(_length / _this.bucketSize); - _this.first = _this.last = (_this.bucketNum >> 1) - (needBucketNum >> 1); - _this.curFirst = _this.curLast = (_this.bucketSize - _length % _this.bucketSize) >> 1; - container.forEach(function (element) { return _this.pushBack(element); }); - _this.size = _this.size.bind(_this); - _this.getElementByPos = _this.getElementByPos.bind(_this); - _this.setElementByPos = _this.setElementByPos.bind(_this); - return _this; + var n = Math.ceil(s / r.T); + r.M = r.C = (r.l >> 1) - (n >> 1); + r.k = r.O = r.T - s % r.T >> 1; + i.forEach((function(t) { + return r.pushBack(t); + })); + r.size = r.size.bind(r); + r.getElementByPos = r.getElementByPos.bind(r); + r.setElementByPos = r.setElementByPos.bind(r); + return r; } - /** - * @description Growth the Deque. - * @private - */ - Deque.prototype.reAllocate = function () { - var newMap = []; - var addBucketNum = Math.max(this.bucketNum >> 1, 1); - for (var i = 0; i < addBucketNum; ++i) { - newMap[i] = new Array(this.bucketSize); + Deque.prototype.v = function() { + var t = []; + var i = Math.max(this.l >> 1, 1); + for (var e = 0; e < i; ++e) { + t[e] = new Array(this.T); } - for (var i = this.first; i < this.bucketNum; ++i) { - newMap[newMap.length] = this.map[i]; + for (var e = this.M; e < this.l; ++e) { + t[t.length] = this.N[e]; } - for (var i = 0; i < this.last; ++i) { - newMap[newMap.length] = this.map[i]; + for (var e = 0; e < this.C; ++e) { + t[t.length] = this.N[e]; } - newMap[newMap.length] = __spreadArray([], __read(this.map[this.last]), false); - this.first = addBucketNum; - this.last = newMap.length - 1; - for (var i = 0; i < addBucketNum; ++i) { - newMap[newMap.length] = new Array(this.bucketSize); + t[t.length] = __spreadArray([], __read(this.N[this.C]), false); + this.M = i; + this.C = t.length - 1; + for (var e = 0; e < i; ++e) { + t[t.length] = new Array(this.T); } - this.map = newMap; - this.bucketNum = newMap.length; + this.N = t; + this.l = t.length; }; - /** - * @description Get the bucket position of the element and the pointer position by index. - * @param pos The element's index. - * @private - */ - Deque.prototype.getElementIndex = function (pos) { - var offset = this.curFirst + pos + 1; - var offsetRemainder = offset % this.bucketSize; - var curNodePointerIndex = offsetRemainder - 1; - var curNodeBucketIndex = this.first + (offset - offsetRemainder) / this.bucketSize; - if (offsetRemainder === 0) - curNodeBucketIndex -= 1; - curNodeBucketIndex %= this.bucketNum; - if (curNodePointerIndex < 0) - curNodePointerIndex += this.bucketSize; - return { curNodeBucketIndex: curNodeBucketIndex, curNodePointerIndex: curNodePointerIndex }; + Deque.prototype.G = function(t) { + var i = this.k + t + 1; + var e = i % this.T; + var r = e - 1; + var s = this.M + (i - e) / this.T; + if (e === 0) s -= 1; + s %= this.l; + if (r < 0) r += this.T; + return { + curNodeBucketIndex: s, + curNodePointerIndex: r + }; }; - Deque.prototype.clear = function () { - this.map = [[]]; - this.bucketNum = 1; - this.first = this.last = this.length = 0; - this.curFirst = this.curLast = this.bucketSize >> 1; + Deque.prototype.clear = function() { + this.N = [ [] ]; + this.l = 1; + this.M = this.C = this.o = 0; + this.k = this.O = this.T >> 1; }; - Deque.prototype.front = function () { - return this.map[this.first][this.curFirst]; + Deque.prototype.front = function() { + return this.N[this.M][this.k]; }; - Deque.prototype.back = function () { - return this.map[this.last][this.curLast]; + Deque.prototype.back = function() { + return this.N[this.C][this.O]; }; - Deque.prototype.begin = function () { + Deque.prototype.begin = function() { return new DequeIterator(0, this.size, this.getElementByPos, this.setElementByPos); }; - Deque.prototype.end = function () { - return new DequeIterator(this.length, this.size, this.getElementByPos, this.setElementByPos); + Deque.prototype.end = function() { + return new DequeIterator(this.o, this.size, this.getElementByPos, this.setElementByPos); }; - Deque.prototype.rBegin = function () { - return new DequeIterator(this.length - 1, this.size, this.getElementByPos, this.setElementByPos, ContainerIterator.REVERSE); + Deque.prototype.rBegin = function() { + return new DequeIterator(this.o - 1, this.size, this.getElementByPos, this.setElementByPos, 1); }; - Deque.prototype.rEnd = function () { - return new DequeIterator(-1, this.size, this.getElementByPos, this.setElementByPos, ContainerIterator.REVERSE); + Deque.prototype.rEnd = function() { + return new DequeIterator(-1, this.size, this.getElementByPos, this.setElementByPos, 1); }; - Deque.prototype.pushBack = function (element) { - if (this.length) { - if (this.curLast < this.bucketSize - 1) { - this.curLast += 1; - } - else if (this.last < this.bucketNum - 1) { - this.last += 1; - this.curLast = 0; + Deque.prototype.pushBack = function(t) { + if (this.o) { + if (this.O < this.T - 1) { + this.O += 1; + } else if (this.C < this.l - 1) { + this.C += 1; + this.O = 0; + } else { + this.C = 0; + this.O = 0; } - else { - this.last = 0; - this.curLast = 0; - } - if (this.last === this.first && - this.curLast === this.curFirst) - this.reAllocate(); + if (this.C === this.M && this.O === this.k) this.v(); } - this.length += 1; - this.map[this.last][this.curLast] = element; + this.o += 1; + this.N[this.C][this.O] = t; }; - Deque.prototype.popBack = function () { - if (!this.length) - return; - this.map[this.last][this.curLast] = undefined; - if (this.length !== 1) { - if (this.curLast > 0) { - this.curLast -= 1; - } - else if (this.last > 0) { - this.last -= 1; - this.curLast = this.bucketSize - 1; - } - else { - this.last = this.bucketNum - 1; - this.curLast = this.bucketSize - 1; + Deque.prototype.popBack = function() { + if (!this.o) return; + this.N[this.C][this.O] = undefined; + if (this.o !== 1) { + if (this.O > 0) { + this.O -= 1; + } else if (this.C > 0) { + this.C -= 1; + this.O = this.T - 1; + } else { + this.C = this.l - 1; + this.O = this.T - 1; } } - this.length -= 1; + this.o -= 1; }; - /** - * @description Push the element to the front. - * @param element The element you want to push. - */ - Deque.prototype.pushFront = function (element) { - if (this.length) { - if (this.curFirst > 0) { - this.curFirst -= 1; - } - else if (this.first > 0) { - this.first -= 1; - this.curFirst = this.bucketSize - 1; + Deque.prototype.pushFront = function(t) { + if (this.o) { + if (this.k > 0) { + this.k -= 1; + } else if (this.M > 0) { + this.M -= 1; + this.k = this.T - 1; + } else { + this.M = this.l - 1; + this.k = this.T - 1; } - else { - this.first = this.bucketNum - 1; - this.curFirst = this.bucketSize - 1; - } - if (this.first === this.last && - this.curFirst === this.curLast) - this.reAllocate(); + if (this.M === this.C && this.k === this.O) this.v(); } - this.length += 1; - this.map[this.first][this.curFirst] = element; + this.o += 1; + this.N[this.M][this.k] = t; }; - /** - * @description Remove the first element. - */ - Deque.prototype.popFront = function () { - if (!this.length) - return; - this.map[this.first][this.curFirst] = undefined; - if (this.length !== 1) { - if (this.curFirst < this.bucketSize - 1) { - this.curFirst += 1; - } - else if (this.first < this.bucketNum - 1) { - this.first += 1; - this.curFirst = 0; - } - else { - this.first = 0; - this.curFirst = 0; + Deque.prototype.popFront = function() { + if (!this.o) return; + this.N[this.M][this.k] = undefined; + if (this.o !== 1) { + if (this.k < this.T - 1) { + this.k += 1; + } else if (this.M < this.l - 1) { + this.M += 1; + this.k = 0; + } else { + this.M = 0; + this.k = 0; } } - this.length -= 1; + this.o -= 1; }; - Deque.prototype.forEach = function (callback) { - for (var i = 0; i < this.length; ++i) { - callback(this.getElementByPos(i), i); + Deque.prototype.forEach = function(t) { + for (var i = 0; i < this.o; ++i) { + t(this.getElementByPos(i), i); } }; - Deque.prototype.getElementByPos = function (pos) { - checkWithinAccessParams(pos, 0, this.length - 1); - var _a = this.getElementIndex(pos), curNodeBucketIndex = _a.curNodeBucketIndex, curNodePointerIndex = _a.curNodePointerIndex; - return this.map[curNodeBucketIndex][curNodePointerIndex]; + Deque.prototype.getElementByPos = function(t) { + if (t < 0 || t > this.o - 1) { + throw new RangeError; + } + var i = this.G(t), e = i.curNodeBucketIndex, r = i.curNodePointerIndex; + return this.N[e][r]; }; - Deque.prototype.setElementByPos = function (pos, element) { - checkWithinAccessParams(pos, 0, this.length - 1); - var _a = this.getElementIndex(pos), curNodeBucketIndex = _a.curNodeBucketIndex, curNodePointerIndex = _a.curNodePointerIndex; - this.map[curNodeBucketIndex][curNodePointerIndex] = element; + Deque.prototype.setElementByPos = function(t, i) { + if (t < 0 || t > this.o - 1) { + throw new RangeError; + } + var e = this.G(t), r = e.curNodeBucketIndex, s = e.curNodePointerIndex; + this.N[r][s] = i; }; - Deque.prototype.insert = function (pos, element, num) { - if (num === void 0) { num = 1; } - checkWithinAccessParams(pos, 0, this.length); - if (pos === 0) { - while (num--) - this.pushFront(element); + Deque.prototype.insert = function(t, i, e) { + if (e === void 0) { + e = 1; } - else if (pos === this.length) { - while (num--) - this.pushBack(element); + if (t < 0 || t > this.o) { + throw new RangeError; } - else { - var arr = []; - for (var i = pos; i < this.length; ++i) { - arr.push(this.getElementByPos(i)); + if (t === 0) { + while (e--) this.pushFront(i); + } else if (t === this.o) { + while (e--) this.pushBack(i); + } else { + var r = []; + for (var s = t; s < this.o; ++s) { + r.push(this.getElementByPos(s)); } - this.cut(pos - 1); - for (var i = 0; i < num; ++i) - this.pushBack(element); - for (var i = 0; i < arr.length; ++i) - this.pushBack(arr[i]); + this.cut(t - 1); + for (var s = 0; s < e; ++s) this.pushBack(i); + for (var s = 0; s < r.length; ++s) this.pushBack(r[s]); } }; - /** - * @description Remove all elements after the specified position (excluding the specified position). - * @param pos The previous position of the first removed element. - * @example deque.cut(1); // Then deque's size will be 2. deque -> [0, 1] - */ - Deque.prototype.cut = function (pos) { - if (pos < 0) { + Deque.prototype.cut = function(t) { + if (t < 0) { this.clear(); return; } - var _a = this.getElementIndex(pos), curNodeBucketIndex = _a.curNodeBucketIndex, curNodePointerIndex = _a.curNodePointerIndex; - this.last = curNodeBucketIndex; - this.curLast = curNodePointerIndex; - this.length = pos + 1; + var i = this.G(t), e = i.curNodeBucketIndex, r = i.curNodePointerIndex; + this.C = e; + this.O = r; + this.o = t + 1; }; - Deque.prototype.eraseElementByPos = function (pos) { - var _this = this; - checkWithinAccessParams(pos, 0, this.length - 1); - if (pos === 0) - this.popFront(); - else if (pos === this.length - 1) - this.popBack(); - else { - var arr = []; - for (var i = pos + 1; i < this.length; ++i) { - arr.push(this.getElementByPos(i)); + Deque.prototype.eraseElementByPos = function(t) { + var i = this; + if (t < 0 || t > this.o - 1) { + throw new RangeError; + } + if (t === 0) this.popFront(); else if (t === this.o - 1) this.popBack(); else { + var e = []; + for (var r = t + 1; r < this.o; ++r) { + e.push(this.getElementByPos(r)); } - this.cut(pos); + this.cut(t); this.popBack(); - arr.forEach(function (element) { return _this.pushBack(element); }); + e.forEach((function(t) { + return i.pushBack(t); + })); } }; - Deque.prototype.eraseElementByValue = function (value) { - if (!this.length) - return; - var arr = []; - for (var i = 0; i < this.length; ++i) { - var element = this.getElementByPos(i); - if (element !== value) - arr.push(element); + Deque.prototype.eraseElementByValue = function(t) { + if (!this.o) return; + var i = []; + for (var e = 0; e < this.o; ++e) { + var r = this.getElementByPos(e); + if (r !== t) i.push(r); } - var _length = arr.length; - for (var i = 0; i < _length; ++i) - this.setElementByPos(i, arr[i]); - this.cut(_length - 1); + var s = i.length; + for (var e = 0; e < s; ++e) this.setElementByPos(e, i[e]); + this.cut(s - 1); }; - Deque.prototype.eraseElementByIterator = function (iter) { - // @ts-ignore - var node = iter.node; - this.eraseElementByPos(node); - iter = iter.next(); - return iter; + Deque.prototype.eraseElementByIterator = function(t) { + var i = t.D; + this.eraseElementByPos(i); + t = t.next(); + return t; }; - Deque.prototype.find = function (element) { - for (var i = 0; i < this.length; ++i) { - if (this.getElementByPos(i) === element) { + Deque.prototype.find = function(t) { + for (var i = 0; i < this.o; ++i) { + if (this.getElementByPos(i) === t) { return new DequeIterator(i, this.size, this.getElementByPos, this.setElementByPos); } } return this.end(); }; - Deque.prototype.reverse = function () { - var l = 0; - var r = this.length - 1; - while (l < r) { - var tmp = this.getElementByPos(l); - this.setElementByPos(l, this.getElementByPos(r)); - this.setElementByPos(r, tmp); - l += 1; - r -= 1; + Deque.prototype.reverse = function() { + var t = 0; + var i = this.o - 1; + while (t < i) { + var e = this.getElementByPos(t); + this.setElementByPos(t, this.getElementByPos(i)); + this.setElementByPos(i, e); + t += 1; + i -= 1; } }; - Deque.prototype.unique = function () { - if (this.length <= 1) - return; - var index = 1; - var pre = this.getElementByPos(0); - for (var i = 1; i < this.length; ++i) { - var cur = this.getElementByPos(i); - if (cur !== pre) { - pre = cur; - this.setElementByPos(index++, cur); + Deque.prototype.unique = function() { + if (this.o <= 1) return; + var t = 1; + var i = this.getElementByPos(0); + for (var e = 1; e < this.o; ++e) { + var r = this.getElementByPos(e); + if (r !== i) { + i = r; + this.setElementByPos(t++, r); } } - while (this.length > index) - this.popBack(); + while (this.o > t) this.popBack(); }; - Deque.prototype.sort = function (cmp) { - var arr = []; - for (var i = 0; i < this.length; ++i) { - arr.push(this.getElementByPos(i)); + Deque.prototype.sort = function(t) { + var i = []; + for (var e = 0; e < this.o; ++e) { + i.push(this.getElementByPos(e)); } - arr.sort(cmp); - for (var i = 0; i < this.length; ++i) - this.setElementByPos(i, arr[i]); + i.sort(t); + for (var e = 0; e < this.o; ++e) this.setElementByPos(e, i[e]); }; - /** - * @description Remove as much useless space as possible. - */ - Deque.prototype.shrinkToFit = function () { - if (!this.length) - return; - var arr = []; - this.forEach(function (element) { return arr.push(element); }); - this.bucketNum = Math.max(Math.ceil(this.length / this.bucketSize), 1); - this.length = this.first = this.last = this.curFirst = this.curLast = 0; - this.map = []; - for (var i = 0; i < this.bucketNum; ++i) { - this.map.push(new Array(this.bucketSize)); + Deque.prototype.shrinkToFit = function() { + if (!this.o) return; + var t = []; + this.forEach((function(i) { + return t.push(i); + })); + this.l = Math.max(Math.ceil(this.o / this.T), 1); + this.o = this.M = this.C = this.k = this.O = 0; + this.N = []; + for (var i = 0; i < this.l; ++i) { + this.N.push(new Array(this.T)); } - for (var i = 0; i < arr.length; ++i) - this.pushBack(arr[i]); + for (var i = 0; i < t.length; ++i) this.pushBack(t[i]); }; - Deque.prototype[Symbol.iterator] = function () { - return function () { - var i; - return __generator(this, function (_a) { - switch (_a.label) { - case 0: - i = 0; - _a.label = 1; - case 1: - if (!(i < this.length)) return [3 /*break*/, 4]; - return [4 /*yield*/, this.getElementByPos(i)]; - case 2: - _a.sent(); - _a.label = 3; - case 3: - ++i; - return [3 /*break*/, 1]; - case 4: return [2 /*return*/]; + Deque.prototype[Symbol.iterator] = function() { + return function() { + var t; + return __generator(this, (function(i) { + switch (i.label) { + case 0: + t = 0; + i.label = 1; + + case 1: + if (!(t < this.o)) return [ 3, 4 ]; + return [ 4, this.getElementByPos(t) ]; + + case 2: + i.sent(); + i.label = 3; + + case 3: + ++t; + return [ 3, 1 ]; + + case 4: + return [ 2 ]; } - }); + })); }.bind(this)(); }; return Deque; -}(SequentialContainer)); -export default Deque; +}(SequentialContainer); + +export default Deque; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/LinkList.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/LinkList.js index 5e57085d1fc0f0..d1b0c1c07cd91a 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/LinkList.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/LinkList.js @@ -1,458 +1,500 @@ -var __extends = (this && this.__extends) || (function () { - var extendStatics = function (d, b) { - extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - return extendStatics(d, b); +var __extends = this && this.t || function() { + var extendStatics = function(i, t) { + extendStatics = Object.setPrototypeOf || { + __proto__: [] + } instanceof Array && function(i, t) { + i.__proto__ = t; + } || function(i, t) { + for (var n in t) if (Object.prototype.hasOwnProperty.call(t, n)) i[n] = t[n]; + }; + return extendStatics(i, t); }; - return function (d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + return function(i, t) { + if (typeof t !== "function" && t !== null) throw new TypeError("Class extends value " + String(t) + " is not a constructor or null"); + extendStatics(i, t); + function __() { + this.constructor = i; + } + i.prototype = t === null ? Object.create(t) : (__.prototype = t.prototype, new __); }; -})(); -var __generator = (this && this.__generator) || function (thisArg, body) { - var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; - return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; - function verb(n) { return function (v) { return step([n, v]); }; } - function step(op) { - if (f) throw new TypeError("Generator is already executing."); - while (_) try { - if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; - if (y = 0, t) op = [op[0] & 2, t.value]; - switch (op[0]) { - case 0: case 1: t = op; break; - case 4: _.label++; return { value: op[1], done: false }; - case 5: _.label++; y = op[1]; op = [0]; continue; - case 7: op = _.ops.pop(); _.trys.pop(); continue; - default: - if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } - if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } - if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } - if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } - if (t[2]) _.ops.pop(); - _.trys.pop(); continue; +}(); + +var __generator = this && this.i || function(i, t) { + var n = { + label: 0, + sent: function() { + if (s[0] & 1) throw s[1]; + return s[1]; + }, + trys: [], + ops: [] + }, r, e, s, h; + return h = { + next: verb(0), + throw: verb(1), + return: verb(2) + }, typeof Symbol === "function" && (h[Symbol.iterator] = function() { + return this; + }), h; + function verb(i) { + return function(t) { + return step([ i, t ]); + }; + } + function step(h) { + if (r) throw new TypeError("Generator is already executing."); + while (n) try { + if (r = 1, e && (s = h[0] & 2 ? e["return"] : h[0] ? e["throw"] || ((s = e["return"]) && s.call(e), + 0) : e.next) && !(s = s.call(e, h[1])).done) return s; + if (e = 0, s) h = [ h[0] & 2, s.value ]; + switch (h[0]) { + case 0: + case 1: + s = h; + break; + + case 4: + n.label++; + return { + value: h[1], + done: false + }; + + case 5: + n.label++; + e = h[1]; + h = [ 0 ]; + continue; + + case 7: + h = n.ops.pop(); + n.trys.pop(); + continue; + + default: + if (!(s = n.trys, s = s.length > 0 && s[s.length - 1]) && (h[0] === 6 || h[0] === 2)) { + n = 0; + continue; + } + if (h[0] === 3 && (!s || h[1] > s[0] && h[1] < s[3])) { + n.label = h[1]; + break; + } + if (h[0] === 6 && n.label < s[1]) { + n.label = s[1]; + s = h; + break; + } + if (s && n.label < s[2]) { + n.label = s[2]; + n.ops.push(h); + break; + } + if (s[2]) n.ops.pop(); + n.trys.pop(); + continue; } - op = body.call(thisArg, _); - } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } - if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + h = t.call(i, n); + } catch (i) { + h = [ 6, i ]; + e = 0; + } finally { + r = s = 0; + } + if (h[0] & 5) throw h[1]; + return { + value: h[0] ? h[1] : void 0, + done: true + }; } }; -import SequentialContainer from './Base/index'; -import { checkWithinAccessParams } from "../../utils/checkParams"; -import { ContainerIterator } from "../ContainerBase/index"; -var LinkNode = /** @class */ (function () { - function LinkNode(element) { - this.value = undefined; - this.pre = undefined; - this.next = undefined; - this.value = element; + +import SequentialContainer from "./Base"; + +import { ContainerIterator } from "../ContainerBase"; + +var LinkNode = function() { + function LinkNode(i) { + this.L = undefined; + this.F = undefined; + this.H = undefined; + this.L = i; } return LinkNode; -}()); +}(); + export { LinkNode }; -var LinkListIterator = /** @class */ (function (_super) { - __extends(LinkListIterator, _super); - function LinkListIterator(node, header, iteratorType) { - var _this = _super.call(this, iteratorType) || this; - _this.node = node; - _this.header = header; - if (_this.iteratorType === ContainerIterator.NORMAL) { - _this.pre = function () { - if (this.node.pre === this.header) { - throw new RangeError('LinkList iterator access denied!'); + +var LinkListIterator = function(i) { + __extends(LinkListIterator, i); + function LinkListIterator(t, n, r) { + var e = i.call(this, r) || this; + e.D = t; + e.J = n; + if (e.iteratorType === 0) { + e.pre = function() { + if (this.D.F === this.J) { + throw new RangeError("LinkList iterator access denied!"); } - this.node = this.node.pre; + this.D = this.D.F; return this; }; - _this.next = function () { - if (this.node === this.header) { - throw new RangeError('LinkList iterator access denied!'); + e.next = function() { + if (this.D === this.J) { + throw new RangeError("LinkList iterator access denied!"); } - this.node = this.node.next; + this.D = this.D.H; return this; }; - } - else { - _this.pre = function () { - if (this.node.next === this.header) { - throw new RangeError('LinkList iterator access denied!'); + } else { + e.pre = function() { + if (this.D.H === this.J) { + throw new RangeError("LinkList iterator access denied!"); } - this.node = this.node.next; + this.D = this.D.H; return this; }; - _this.next = function () { - if (this.node === this.header) { - throw new RangeError('LinkList iterator access denied!'); + e.next = function() { + if (this.D === this.J) { + throw new RangeError("LinkList iterator access denied!"); } - this.node = this.node.pre; + this.D = this.D.F; return this; }; } - return _this; + return e; } Object.defineProperty(LinkListIterator.prototype, "pointer", { - get: function () { - if (this.node === this.header) { - throw new RangeError('LinkList iterator access denied!'); + get: function() { + if (this.D === this.J) { + throw new RangeError("LinkList iterator access denied!"); } - return this.node.value; + return this.D.L; }, - set: function (newValue) { - if (this.node === this.header) { - throw new RangeError('LinkList iterator access denied!'); + set: function(i) { + if (this.D === this.J) { + throw new RangeError("LinkList iterator access denied!"); } - this.node.value = newValue; + this.D.L = i; }, enumerable: false, configurable: true }); - LinkListIterator.prototype.equals = function (obj) { - return this.node === obj.node; + LinkListIterator.prototype.equals = function(i) { + return this.D === i.D; }; - LinkListIterator.prototype.copy = function () { - return new LinkListIterator(this.node, this.header, this.iteratorType); + LinkListIterator.prototype.copy = function() { + return new LinkListIterator(this.D, this.J, this.iteratorType); }; return LinkListIterator; -}(ContainerIterator)); +}(ContainerIterator); + export { LinkListIterator }; -var LinkList = /** @class */ (function (_super) { - __extends(LinkList, _super); - function LinkList(container) { - if (container === void 0) { container = []; } - var _this = _super.call(this) || this; - _this.header = new LinkNode(); - _this.head = undefined; - _this.tail = undefined; - container.forEach(function (element) { return _this.pushBack(element); }); - return _this; + +var LinkList = function(i) { + __extends(LinkList, i); + function LinkList(t) { + if (t === void 0) { + t = []; + } + var n = i.call(this) || this; + n.J = new LinkNode; + n.K = undefined; + n.U = undefined; + t.forEach((function(i) { + return n.pushBack(i); + })); + return n; } - LinkList.prototype.clear = function () { - this.length = 0; - this.head = this.tail = undefined; - this.header.pre = this.header.next = undefined; + LinkList.prototype.clear = function() { + this.o = 0; + this.K = this.U = undefined; + this.J.F = this.J.H = undefined; }; - LinkList.prototype.begin = function () { - return new LinkListIterator(this.head || this.header, this.header); + LinkList.prototype.begin = function() { + return new LinkListIterator(this.K || this.J, this.J); }; - LinkList.prototype.end = function () { - return new LinkListIterator(this.header, this.header); + LinkList.prototype.end = function() { + return new LinkListIterator(this.J, this.J); }; - LinkList.prototype.rBegin = function () { - return new LinkListIterator(this.tail || this.header, this.header, ContainerIterator.REVERSE); + LinkList.prototype.rBegin = function() { + return new LinkListIterator(this.U || this.J, this.J, 1); }; - LinkList.prototype.rEnd = function () { - return new LinkListIterator(this.header, this.header, ContainerIterator.REVERSE); + LinkList.prototype.rEnd = function() { + return new LinkListIterator(this.J, this.J, 1); }; - LinkList.prototype.front = function () { - return this.head ? this.head.value : undefined; + LinkList.prototype.front = function() { + return this.K ? this.K.L : undefined; }; - LinkList.prototype.back = function () { - return this.tail ? this.tail.value : undefined; + LinkList.prototype.back = function() { + return this.U ? this.U.L : undefined; }; - LinkList.prototype.forEach = function (callback) { - if (!this.length) - return; - var curNode = this.head; - var index = 0; - while (curNode !== this.header) { - callback(curNode.value, index++); - curNode = curNode.next; + LinkList.prototype.forEach = function(i) { + if (!this.o) return; + var t = this.K; + var n = 0; + while (t !== this.J) { + i(t.L, n++); + t = t.H; } }; - LinkList.prototype.getElementByPos = function (pos) { - checkWithinAccessParams(pos, 0, this.length - 1); - var curNode = this.head; - while (pos--) { - curNode = curNode.next; + LinkList.prototype.getElementByPos = function(i) { + if (i < 0 || i > this.o - 1) { + throw new RangeError; } - return curNode.value; + var t = this.K; + while (i--) { + t = t.H; + } + return t.L; }; - LinkList.prototype.eraseElementByPos = function (pos) { - checkWithinAccessParams(pos, 0, this.length - 1); - if (pos === 0) - this.popFront(); - else if (pos === this.length - 1) - this.popBack(); - else { - var curNode = this.head; - while (pos--) { - curNode = curNode.next; + LinkList.prototype.eraseElementByPos = function(i) { + if (i < 0 || i > this.o - 1) { + throw new RangeError; + } + if (i === 0) this.popFront(); else if (i === this.o - 1) this.popBack(); else { + var t = this.K; + while (i--) { + t = t.H; } - curNode = curNode; - var pre = curNode.pre; - var next = curNode.next; - next.pre = pre; - pre.next = next; - this.length -= 1; + t = t; + var n = t.F; + var r = t.H; + r.F = n; + n.H = r; + this.o -= 1; } }; - LinkList.prototype.eraseElementByValue = function (value) { - while (this.head && this.head.value === value) - this.popFront(); - while (this.tail && this.tail.value === value) - this.popBack(); - if (!this.head) - return; - var curNode = this.head; - while (curNode !== this.header) { - if (curNode.value === value) { - var pre = curNode.pre; - var next = curNode.next; - if (next) - next.pre = pre; - if (pre) - pre.next = next; - this.length -= 1; + LinkList.prototype.eraseElementByValue = function(i) { + while (this.K && this.K.L === i) this.popFront(); + while (this.U && this.U.L === i) this.popBack(); + if (!this.K) return; + var t = this.K; + while (t !== this.J) { + if (t.L === i) { + var n = t.F; + var r = t.H; + r.F = n; + n.H = r; + this.o -= 1; } - curNode = curNode.next; + t = t.H; } }; - LinkList.prototype.eraseElementByIterator = function (iter) { - // @ts-ignore - var node = iter.node; - if (node === this.header) { - throw new RangeError('Invalid iterator'); + LinkList.prototype.eraseElementByIterator = function(i) { + var t = i.D; + if (t === this.J) { + throw new RangeError("Invalid iterator"); } - iter = iter.next(); - if (this.head === node) - this.popFront(); - else if (this.tail === node) - this.popBack(); - else { - var pre = node.pre; - var next = node.next; - if (next) - next.pre = pre; - if (pre) - pre.next = next; - this.length -= 1; + i = i.next(); + if (this.K === t) this.popFront(); else if (this.U === t) this.popBack(); else { + var n = t.F; + var r = t.H; + r.F = n; + n.H = r; + this.o -= 1; } - return iter; + return i; }; - LinkList.prototype.pushBack = function (element) { - this.length += 1; - var newTail = new LinkNode(element); - if (!this.tail) { - this.head = this.tail = newTail; - this.header.next = this.head; - this.head.pre = this.header; + LinkList.prototype.pushBack = function(i) { + this.o += 1; + var t = new LinkNode(i); + if (!this.U) { + this.K = this.U = t; + this.J.H = this.K; + this.K.F = this.J; + } else { + this.U.H = t; + t.F = this.U; + this.U = t; } - else { - this.tail.next = newTail; - newTail.pre = this.tail; - this.tail = newTail; + this.U.H = this.J; + this.J.F = this.U; + }; + LinkList.prototype.popBack = function() { + if (!this.U) return; + this.o -= 1; + if (this.K === this.U) { + this.K = this.U = undefined; + this.J.H = undefined; + } else { + this.U = this.U.F; + this.U.H = this.J; } - this.tail.next = this.header; - this.header.pre = this.tail; + this.J.F = this.U; }; - LinkList.prototype.popBack = function () { - if (!this.tail) - return; - this.length -= 1; - if (this.head === this.tail) { - this.head = this.tail = undefined; - this.header.next = undefined; + LinkList.prototype.setElementByPos = function(i, t) { + if (i < 0 || i > this.o - 1) { + throw new RangeError; } - else { - this.tail = this.tail.pre; - if (this.tail) - this.tail.next = undefined; + var n = this.K; + while (i--) { + n = n.H; } - this.header.pre = this.tail; - if (this.tail) - this.tail.next = this.header; + n.L = t; }; - LinkList.prototype.setElementByPos = function (pos, element) { - checkWithinAccessParams(pos, 0, this.length - 1); - var curNode = this.head; - while (pos--) { - curNode = curNode.next; + LinkList.prototype.insert = function(i, t, n) { + if (n === void 0) { + n = 1; } - curNode.value = element; - }; - LinkList.prototype.insert = function (pos, element, num) { - if (num === void 0) { num = 1; } - checkWithinAccessParams(pos, 0, this.length); - if (num <= 0) - return; - if (pos === 0) { - while (num--) - this.pushFront(element); + if (i < 0 || i > this.o) { + throw new RangeError; } - else if (pos === this.length) { - while (num--) - this.pushBack(element); - } - else { - var curNode = this.head; - for (var i = 1; i < pos; ++i) { - curNode = curNode.next; + if (n <= 0) return; + if (i === 0) { + while (n--) this.pushFront(t); + } else if (i === this.o) { + while (n--) this.pushBack(t); + } else { + var r = this.K; + for (var e = 1; e < i; ++e) { + r = r.H; } - var next = curNode.next; - this.length += num; - while (num--) { - curNode.next = new LinkNode(element); - curNode.next.pre = curNode; - curNode = curNode.next; + var s = r.H; + this.o += n; + while (n--) { + r.H = new LinkNode(t); + r.H.F = r; + r = r.H; } - curNode.next = next; - if (next) - next.pre = curNode; + r.H = s; + s.F = r; } }; - LinkList.prototype.find = function (element) { - if (!this.head) - return this.end(); - var curNode = this.head; - while (curNode !== this.header) { - if (curNode.value === element) { - return new LinkListIterator(curNode, this.header); + LinkList.prototype.find = function(i) { + if (!this.K) return this.end(); + var t = this.K; + while (t !== this.J) { + if (t.L === i) { + return new LinkListIterator(t, this.J); } - curNode = curNode.next; + t = t.H; } return this.end(); }; - LinkList.prototype.reverse = function () { - if (this.length <= 1) - return; - var pHead = this.head; - var pTail = this.tail; - var cnt = 0; - while ((cnt << 1) < this.length) { - var tmp = pHead.value; - pHead.value = pTail.value; - pTail.value = tmp; - pHead = pHead.next; - pTail = pTail.pre; - cnt += 1; + LinkList.prototype.reverse = function() { + if (this.o <= 1) return; + var i = this.K; + var t = this.U; + var n = 0; + while (n << 1 < this.o) { + var r = i.L; + i.L = t.L; + t.L = r; + i = i.H; + t = t.F; + n += 1; } }; - LinkList.prototype.unique = function () { - if (this.length <= 1) - return; - var curNode = this.head; - while (curNode !== this.header) { - var tmpNode = curNode; - while (tmpNode.next && tmpNode.value === tmpNode.next.value) { - tmpNode = tmpNode.next; - this.length -= 1; + LinkList.prototype.unique = function() { + if (this.o <= 1) return; + var i = this.K; + while (i !== this.J) { + var t = i; + while (t.H && t.L === t.H.L) { + t = t.H; + this.o -= 1; } - curNode.next = tmpNode.next; - if (curNode.next) - curNode.next.pre = curNode; - curNode = curNode.next; + i.H = t.H; + i.H.F = i; + i = i.H; } }; - LinkList.prototype.sort = function (cmp) { - if (this.length <= 1) - return; - var arr = []; - this.forEach(function (element) { return arr.push(element); }); - arr.sort(cmp); - var curNode = this.head; - arr.forEach(function (element) { - curNode.value = element; - curNode = curNode.next; - }); + LinkList.prototype.sort = function(i) { + if (this.o <= 1) return; + var t = []; + this.forEach((function(i) { + return t.push(i); + })); + t.sort(i); + var n = this.K; + t.forEach((function(i) { + n.L = i; + n = n.H; + })); }; - /** - * @description Push an element to the front. - * @param element The element you want to push. - */ - LinkList.prototype.pushFront = function (element) { - this.length += 1; - var newHead = new LinkNode(element); - if (!this.head) { - this.head = this.tail = newHead; - this.tail.next = this.header; - this.header.pre = this.tail; - } - else { - newHead.next = this.head; - this.head.pre = newHead; - this.head = newHead; + LinkList.prototype.pushFront = function(i) { + this.o += 1; + var t = new LinkNode(i); + if (!this.K) { + this.K = this.U = t; + this.U.H = this.J; + this.J.F = this.U; + } else { + t.H = this.K; + this.K.F = t; + this.K = t; } - this.header.next = this.head; - this.head.pre = this.header; + this.J.H = this.K; + this.K.F = this.J; }; - /** - * @description Removes the first element. - */ - LinkList.prototype.popFront = function () { - if (!this.head) - return; - this.length -= 1; - if (this.head === this.tail) { - this.head = this.tail = undefined; - this.header.pre = this.tail; + LinkList.prototype.popFront = function() { + if (!this.K) return; + this.o -= 1; + if (this.K === this.U) { + this.K = this.U = undefined; + this.J.F = this.U; + } else { + this.K = this.K.H; + this.K.F = this.J; } - else { - this.head = this.head.next; - if (this.head) - this.head.pre = this.header; - } - this.header.next = this.head; + this.J.H = this.K; }; - /** - * @description Merges two sorted lists. - * @param list The other list you want to merge (must be sorted). - */ - LinkList.prototype.merge = function (list) { - var _this = this; - if (!this.head) { - list.forEach(function (element) { return _this.pushBack(element); }); + LinkList.prototype.merge = function(i) { + var t = this; + if (!this.K) { + i.forEach((function(i) { + return t.pushBack(i); + })); return; } - var curNode = this.head; - list.forEach(function (element) { - while (curNode && - curNode !== _this.header && - curNode.value <= element) { - curNode = curNode.next; - } - if (curNode === _this.header) { - _this.pushBack(element); - curNode = _this.tail; - } - else if (curNode === _this.head) { - _this.pushFront(element); - curNode = _this.head; + var n = this.K; + i.forEach((function(i) { + while (n && n !== t.J && n.L <= i) { + n = n.H; } - else { - _this.length += 1; - var pre = curNode.pre; - pre.next = new LinkNode(element); - pre.next.pre = pre; - pre.next.next = curNode; - curNode.pre = pre.next; + if (n === t.J) { + t.pushBack(i); + n = t.U; + } else if (n === t.K) { + t.pushFront(i); + n = t.K; + } else { + t.o += 1; + var r = n.F; + r.H = new LinkNode(i); + r.H.F = r; + r.H.H = n; + n.F = r.H; } - }); + })); }; - LinkList.prototype[Symbol.iterator] = function () { - return function () { - var curNode; - return __generator(this, function (_a) { - switch (_a.label) { - case 0: - if (!this.head) - return [2 /*return*/]; - curNode = this.head; - _a.label = 1; - case 1: - if (!(curNode !== this.header)) return [3 /*break*/, 3]; - return [4 /*yield*/, curNode.value]; - case 2: - _a.sent(); - curNode = curNode.next; - return [3 /*break*/, 1]; - case 3: return [2 /*return*/]; + LinkList.prototype[Symbol.iterator] = function() { + return function() { + var i; + return __generator(this, (function(t) { + switch (t.label) { + case 0: + if (!this.K) return [ 2 ]; + i = this.K; + t.label = 1; + + case 1: + if (!(i !== this.J)) return [ 3, 3 ]; + return [ 4, i.L ]; + + case 2: + t.sent(); + i = i.H; + return [ 3, 1 ]; + + case 3: + return [ 2 ]; } - }); + })); }.bind(this)(); }; return LinkList; -}(SequentialContainer)); -export default LinkList; +}(SequentialContainer); + +export default LinkList; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Vector.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Vector.js index 5b92ab97e4b182..6073027a2ae287 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Vector.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/SequentialContainer/Vector.js @@ -1,227 +1,318 @@ -var __extends = (this && this.__extends) || (function () { - var extendStatics = function (d, b) { - extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - return extendStatics(d, b); - }; - return function (d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); - }; -})(); -var __generator = (this && this.__generator) || function (thisArg, body) { - var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; - return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; - function verb(n) { return function (v) { return step([n, v]); }; } - function step(op) { - if (f) throw new TypeError("Generator is already executing."); - while (_) try { - if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; - if (y = 0, t) op = [op[0] & 2, t.value]; - switch (op[0]) { - case 0: case 1: t = op; break; - case 4: _.label++; return { value: op[1], done: false }; - case 5: _.label++; y = op[1]; op = [0]; continue; - case 7: op = _.ops.pop(); _.trys.pop(); continue; - default: - if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } - if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } - if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } - if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } - if (t[2]) _.ops.pop(); - _.trys.pop(); continue; +var __extends = this && this.t || function() { + var extendStatics = function(t, r) { + extendStatics = Object.setPrototypeOf || { + __proto__: [] + } instanceof Array && function(t, r) { + t.__proto__ = r; + } || function(t, r) { + for (var e in r) if (Object.prototype.hasOwnProperty.call(r, e)) t[e] = r[e]; + }; + return extendStatics(t, r); + }; + return function(t, r) { + if (typeof r !== "function" && r !== null) throw new TypeError("Class extends value " + String(r) + " is not a constructor or null"); + extendStatics(t, r); + function __() { + this.constructor = t; + } + t.prototype = r === null ? Object.create(r) : (__.prototype = r.prototype, new __); + }; +}(); + +var __generator = this && this.i || function(t, r) { + var e = { + label: 0, + sent: function() { + if (o[0] & 1) throw o[1]; + return o[1]; + }, + trys: [], + ops: [] + }, n, i, o, s; + return s = { + next: verb(0), + throw: verb(1), + return: verb(2) + }, typeof Symbol === "function" && (s[Symbol.iterator] = function() { + return this; + }), s; + function verb(t) { + return function(r) { + return step([ t, r ]); + }; + } + function step(s) { + if (n) throw new TypeError("Generator is already executing."); + while (e) try { + if (n = 1, i && (o = s[0] & 2 ? i["return"] : s[0] ? i["throw"] || ((o = i["return"]) && o.call(i), + 0) : i.next) && !(o = o.call(i, s[1])).done) return o; + if (i = 0, o) s = [ s[0] & 2, o.value ]; + switch (s[0]) { + case 0: + case 1: + o = s; + break; + + case 4: + e.label++; + return { + value: s[1], + done: false + }; + + case 5: + e.label++; + i = s[1]; + s = [ 0 ]; + continue; + + case 7: + s = e.ops.pop(); + e.trys.pop(); + continue; + + default: + if (!(o = e.trys, o = o.length > 0 && o[o.length - 1]) && (s[0] === 6 || s[0] === 2)) { + e = 0; + continue; + } + if (s[0] === 3 && (!o || s[1] > o[0] && s[1] < o[3])) { + e.label = s[1]; + break; + } + if (s[0] === 6 && e.label < o[1]) { + e.label = o[1]; + o = s; + break; + } + if (o && e.label < o[2]) { + e.label = o[2]; + e.ops.push(s); + break; + } + if (o[2]) e.ops.pop(); + e.trys.pop(); + continue; } - op = body.call(thisArg, _); - } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } - if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + s = r.call(t, e); + } catch (t) { + s = [ 6, t ]; + i = 0; + } finally { + n = o = 0; + } + if (s[0] & 5) throw s[1]; + return { + value: s[0] ? s[1] : void 0, + done: true + }; } }; -var __read = (this && this.__read) || function (o, n) { - var m = typeof Symbol === "function" && o[Symbol.iterator]; - if (!m) return o; - var i = m.call(o), r, ar = [], e; + +var __read = this && this._ || function(t, r) { + var e = typeof Symbol === "function" && t[Symbol.iterator]; + if (!e) return t; + var n = e.call(t), i, o = [], s; try { - while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value); - } - catch (error) { e = { error: error }; } - finally { + while ((r === void 0 || r-- > 0) && !(i = n.next()).done) o.push(i.value); + } catch (t) { + s = { + error: t + }; + } finally { try { - if (r && !r.done && (m = i["return"])) m.call(i); + if (i && !i.done && (e = n["return"])) e.call(n); + } finally { + if (s) throw s.error; } - finally { if (e) throw e.error; } } - return ar; + return o; }; -var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) { - if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) { - if (ar || !(i in from)) { - if (!ar) ar = Array.prototype.slice.call(from, 0, i); - ar[i] = from[i]; + +var __spreadArray = this && this.P || function(t, r, e) { + if (e || arguments.length === 2) for (var n = 0, i = r.length, o; n < i; n++) { + if (o || !(n in r)) { + if (!o) o = Array.prototype.slice.call(r, 0, n); + o[n] = r[n]; } } - return to.concat(ar || Array.prototype.slice.call(from)); + return t.concat(o || Array.prototype.slice.call(r)); }; -var __values = (this && this.__values) || function(o) { - var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; - if (m) return m.call(o); - if (o && typeof o.length === "number") return { - next: function () { - if (o && i >= o.length) o = void 0; - return { value: o && o[i++], done: !o }; + +var __values = this && this.u || function(t) { + var r = typeof Symbol === "function" && Symbol.iterator, e = r && t[r], n = 0; + if (e) return e.call(t); + if (t && typeof t.length === "number") return { + next: function() { + if (t && n >= t.length) t = void 0; + return { + value: t && t[n++], + done: !t + }; } }; - throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); + throw new TypeError(r ? "Object is not iterable." : "Symbol.iterator is not defined."); }; -import SequentialContainer from './Base/index'; -import { checkWithinAccessParams } from "../../utils/checkParams"; -import { ContainerIterator } from "../ContainerBase/index"; + +import SequentialContainer from "./Base"; + import { RandomIterator } from "./Base/RandomIterator"; -var VectorIterator = /** @class */ (function (_super) { - __extends(VectorIterator, _super); + +var VectorIterator = function(t) { + __extends(VectorIterator, t); function VectorIterator() { - return _super !== null && _super.apply(this, arguments) || this; + return t !== null && t.apply(this, arguments) || this; } - VectorIterator.prototype.copy = function () { - return new VectorIterator(this.node, this.size, this.getElementByPos, this.setElementByPos, this.iteratorType); + VectorIterator.prototype.copy = function() { + return new VectorIterator(this.D, this.I, this.g, this.R, this.iteratorType); }; return VectorIterator; -}(RandomIterator)); +}(RandomIterator); + export { VectorIterator }; -var Vector = /** @class */ (function (_super) { - __extends(Vector, _super); - /** - * @description Vector's constructor. - * @param container Initialize container, must have a forEach function. - * @param copy When the container is an array, you can choose to directly operate on the original object of - * the array or perform a shallow copy. The default is shallow copy. - */ - function Vector(container, copy) { - if (container === void 0) { container = []; } - if (copy === void 0) { copy = true; } - var _this = _super.call(this) || this; - if (Array.isArray(container)) { - _this.vector = copy ? __spreadArray([], __read(container), false) : container; - _this.length = container.length; - } - else { - _this.vector = []; - container.forEach(function (element) { return _this.pushBack(element); }); - } - _this.size = _this.size.bind(_this); - _this.getElementByPos = _this.getElementByPos.bind(_this); - _this.setElementByPos = _this.setElementByPos.bind(_this); - return _this; + +var Vector = function(t) { + __extends(Vector, t); + function Vector(r, e) { + if (r === void 0) { + r = []; + } + if (e === void 0) { + e = true; + } + var n = t.call(this) || this; + if (Array.isArray(r)) { + n.V = e ? __spreadArray([], __read(r), false) : r; + n.o = r.length; + } else { + n.V = []; + r.forEach((function(t) { + return n.pushBack(t); + })); + } + n.size = n.size.bind(n); + n.getElementByPos = n.getElementByPos.bind(n); + n.setElementByPos = n.setElementByPos.bind(n); + return n; } - Vector.prototype.clear = function () { - this.length = 0; - this.vector.length = 0; + Vector.prototype.clear = function() { + this.o = 0; + this.V.length = 0; }; - Vector.prototype.begin = function () { + Vector.prototype.begin = function() { return new VectorIterator(0, this.size, this.getElementByPos, this.setElementByPos); }; - Vector.prototype.end = function () { - return new VectorIterator(this.length, this.size, this.getElementByPos, this.setElementByPos); + Vector.prototype.end = function() { + return new VectorIterator(this.o, this.size, this.getElementByPos, this.setElementByPos); }; - Vector.prototype.rBegin = function () { - return new VectorIterator(this.length - 1, this.size, this.getElementByPos, this.setElementByPos, ContainerIterator.REVERSE); + Vector.prototype.rBegin = function() { + return new VectorIterator(this.o - 1, this.size, this.getElementByPos, this.setElementByPos, 1); }; - Vector.prototype.rEnd = function () { - return new VectorIterator(-1, this.size, this.getElementByPos, this.setElementByPos, ContainerIterator.REVERSE); + Vector.prototype.rEnd = function() { + return new VectorIterator(-1, this.size, this.getElementByPos, this.setElementByPos, 1); }; - Vector.prototype.front = function () { - return this.vector[0]; + Vector.prototype.front = function() { + return this.V[0]; }; - Vector.prototype.back = function () { - return this.vector[this.length - 1]; + Vector.prototype.back = function() { + return this.V[this.o - 1]; }; - Vector.prototype.forEach = function (callback) { - for (var i = 0; i < this.length; ++i) { - callback(this.vector[i], i); + Vector.prototype.forEach = function(t) { + for (var r = 0; r < this.o; ++r) { + t(this.V[r], r); } }; - Vector.prototype.getElementByPos = function (pos) { - checkWithinAccessParams(pos, 0, this.length - 1); - return this.vector[pos]; + Vector.prototype.getElementByPos = function(t) { + if (t < 0 || t > this.o - 1) { + throw new RangeError; + } + return this.V[t]; }; - Vector.prototype.eraseElementByPos = function (pos) { - checkWithinAccessParams(pos, 0, this.length - 1); - this.vector.splice(pos, 1); - this.length -= 1; + Vector.prototype.eraseElementByPos = function(t) { + if (t < 0 || t > this.o - 1) { + throw new RangeError; + } + this.V.splice(t, 1); + this.o -= 1; }; - Vector.prototype.eraseElementByValue = function (value) { - var index = 0; - for (var i = 0; i < this.length; ++i) { - if (this.vector[i] !== value) { - this.vector[index++] = this.vector[i]; + Vector.prototype.eraseElementByValue = function(t) { + var r = 0; + for (var e = 0; e < this.o; ++e) { + if (this.V[e] !== t) { + this.V[r++] = this.V[e]; } } - this.length = this.vector.length = index; - }; - Vector.prototype.eraseElementByIterator = function (iter) { - // @ts-ignore - var node = iter.node; - iter = iter.next(); - this.eraseElementByPos(node); - return iter; - }; - Vector.prototype.pushBack = function (element) { - this.vector.push(element); - this.length += 1; - }; - Vector.prototype.popBack = function () { - if (!this.length) - return; - this.vector.pop(); - this.length -= 1; - }; - Vector.prototype.setElementByPos = function (pos, element) { - checkWithinAccessParams(pos, 0, this.length - 1); - this.vector[pos] = element; - }; - Vector.prototype.insert = function (pos, element, num) { - var _a; - if (num === void 0) { num = 1; } - checkWithinAccessParams(pos, 0, this.length); - (_a = this.vector).splice.apply(_a, __spreadArray([pos, 0], __read(new Array(num).fill(element)), false)); - this.length += num; - }; - Vector.prototype.find = function (element) { - for (var i = 0; i < this.length; ++i) { - if (this.vector[i] === element) { - return new VectorIterator(i, this.size, this.getElementByPos, this.getElementByPos); + this.o = this.V.length = r; + }; + Vector.prototype.eraseElementByIterator = function(t) { + var r = t.D; + t = t.next(); + this.eraseElementByPos(r); + return t; + }; + Vector.prototype.pushBack = function(t) { + this.V.push(t); + this.o += 1; + }; + Vector.prototype.popBack = function() { + if (!this.o) return; + this.V.pop(); + this.o -= 1; + }; + Vector.prototype.setElementByPos = function(t, r) { + if (t < 0 || t > this.o - 1) { + throw new RangeError; + } + this.V[t] = r; + }; + Vector.prototype.insert = function(t, r, e) { + var n; + if (e === void 0) { + e = 1; + } + if (t < 0 || t > this.o) { + throw new RangeError; + } + (n = this.V).splice.apply(n, __spreadArray([ t, 0 ], __read(new Array(e).fill(r)), false)); + this.o += e; + }; + Vector.prototype.find = function(t) { + for (var r = 0; r < this.o; ++r) { + if (this.V[r] === t) { + return new VectorIterator(r, this.size, this.getElementByPos, this.getElementByPos); } } return this.end(); }; - Vector.prototype.reverse = function () { - this.vector.reverse(); + Vector.prototype.reverse = function() { + this.V.reverse(); }; - Vector.prototype.unique = function () { - var index = 1; - for (var i = 1; i < this.length; ++i) { - if (this.vector[i] !== this.vector[i - 1]) { - this.vector[index++] = this.vector[i]; + Vector.prototype.unique = function() { + var t = 1; + for (var r = 1; r < this.o; ++r) { + if (this.V[r] !== this.V[r - 1]) { + this.V[t++] = this.V[r]; } } - this.length = this.vector.length = index; + this.o = this.V.length = t; }; - Vector.prototype.sort = function (cmp) { - this.vector.sort(cmp); + Vector.prototype.sort = function(t) { + this.V.sort(t); }; - Vector.prototype[Symbol.iterator] = function () { - return function () { - return __generator(this, function (_a) { - switch (_a.label) { - case 0: return [5 /*yield**/, __values(this.vector)]; - case 1: return [2 /*return*/, _a.sent()]; + Vector.prototype[Symbol.iterator] = function() { + return function() { + return __generator(this, (function(t) { + switch (t.label) { + case 0: + return [ 5, __values(this.V) ]; + + case 1: + return [ 2, t.sent() ]; } - }); + })); }.bind(this)(); }; return Vector; -}(SequentialContainer)); -export default Vector; +}(SequentialContainer); + +export default Vector; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/TreeIterator.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/TreeIterator.js index 0d5761a4803bca..a587c687051a86 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/TreeIterator.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/TreeIterator.js @@ -1,62 +1,98 @@ -var __extends = (this && this.__extends) || (function () { - var extendStatics = function (d, b) { - extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - return extendStatics(d, b); +var __extends = this && this.t || function() { + var extendStatics = function(t, r) { + extendStatics = Object.setPrototypeOf || { + __proto__: [] + } instanceof Array && function(t, r) { + t.__proto__ = r; + } || function(t, r) { + for (var e in r) if (Object.prototype.hasOwnProperty.call(r, e)) t[e] = r[e]; + }; + return extendStatics(t, r); }; - return function (d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + return function(t, r) { + if (typeof r !== "function" && r !== null) throw new TypeError("Class extends value " + String(r) + " is not a constructor or null"); + extendStatics(t, r); + function __() { + this.constructor = t; + } + t.prototype = r === null ? Object.create(r) : (__.prototype = r.prototype, new __); }; -})(); -import { ContainerIterator } from "../../ContainerBase/index"; -var TreeIterator = /** @class */ (function (_super) { - __extends(TreeIterator, _super); - function TreeIterator(node, header, iteratorType) { - var _this = _super.call(this, iteratorType) || this; - _this.node = node; - _this.header = header; - if (_this.iteratorType === ContainerIterator.NORMAL) { - _this.pre = function () { - if (this.node === this.header.left) { - throw new RangeError('LinkList iterator access denied!'); +}(); + +import { ContainerIterator } from "../../ContainerBase"; + +var TreeIterator = function(t) { + __extends(TreeIterator, t); + function TreeIterator(r, e, n) { + var i = t.call(this, n) || this; + i.D = r; + i.J = e; + if (i.iteratorType === 0) { + i.pre = function() { + if (this.D === this.J.Y) { + throw new RangeError("Tree iterator access denied!"); } - this.node = this.node.pre(); + this.D = this.D.pre(); return this; }; - _this.next = function () { - if (this.node === this.header) { - throw new RangeError('LinkList iterator access denied!'); + i.next = function() { + if (this.D === this.J) { + throw new RangeError("Tree iterator access denied!"); } - this.node = this.node.next(); + this.D = this.D.next(); return this; }; - } - else { - _this.pre = function () { - if (this.node === this.header.right) { - throw new RangeError('LinkList iterator access denied!'); + } else { + i.pre = function() { + if (this.D === this.J.Z) { + throw new RangeError("Tree iterator access denied!"); } - this.node = this.node.next(); + this.D = this.D.next(); return this; }; - _this.next = function () { - if (this.node === this.header) { - throw new RangeError('LinkList iterator access denied!'); + i.next = function() { + if (this.D === this.J) { + throw new RangeError("Tree iterator access denied!"); } - this.node = this.node.pre(); + this.D = this.D.pre(); return this; }; } - return _this; + return i; } - TreeIterator.prototype.equals = function (obj) { - return this.node === obj.node; + Object.defineProperty(TreeIterator.prototype, "index", { + get: function() { + var t = this.D; + var r = this.J.tt; + if (t === this.J) { + if (r) { + return r.rt - 1; + } + return 0; + } + var e = 0; + if (t.Y) { + e += t.Y.rt; + } + while (t !== r) { + var n = t.tt; + if (t === n.Z) { + e += 1; + if (n.Y) { + e += n.Y.rt; + } + } + t = n; + } + return e; + }, + enumerable: false, + configurable: true + }); + TreeIterator.prototype.equals = function(t) { + return this.D === t.D; }; return TreeIterator; -}(ContainerIterator)); -export default TreeIterator; +}(ContainerIterator); + +export default TreeIterator; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/TreeNode.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/TreeNode.js index 8b828aaeece1b2..6eaf86f4d61788 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/TreeNode.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/TreeNode.js @@ -1,121 +1,130 @@ -var TreeNode = /** @class */ (function () { - function TreeNode(key, value) { - this.color = true; - this.key = undefined; - this.value = undefined; - this.left = undefined; - this.right = undefined; - this.parent = undefined; - this.key = key; - this.value = value; - } - /** - * @description Get the pre node. - * @return TreeNode about the pre node. - */ - TreeNode.prototype.pre = function () { - var preNode = this; - if (preNode.color === TreeNode.RED && - preNode.parent.parent === preNode) { - preNode = preNode.right; +var __extends = this && this.t || function() { + var extendStatics = function(e, n) { + extendStatics = Object.setPrototypeOf || { + __proto__: [] + } instanceof Array && function(e, n) { + e.__proto__ = n; + } || function(e, n) { + for (var i in n) if (Object.prototype.hasOwnProperty.call(n, i)) e[i] = n[i]; + }; + return extendStatics(e, n); + }; + return function(e, n) { + if (typeof n !== "function" && n !== null) throw new TypeError("Class extends value " + String(n) + " is not a constructor or null"); + extendStatics(e, n); + function __() { + this.constructor = e; } - else if (preNode.left) { - preNode = preNode.left; - while (preNode.right) { - preNode = preNode.right; + e.prototype = n === null ? Object.create(n) : (__.prototype = n.prototype, new __); + }; +}(); + +var TreeNode = function() { + function TreeNode(e, n) { + this.ee = 1; + this.W = undefined; + this.L = undefined; + this.Y = undefined; + this.Z = undefined; + this.tt = undefined; + this.W = e; + this.L = n; + } + TreeNode.prototype.pre = function() { + var e = this; + if (e.ee === 1 && e.tt.tt === e) { + e = e.Z; + } else if (e.Y) { + e = e.Y; + while (e.Z) { + e = e.Z; } - } - else { - var pre = preNode.parent; - while (pre.left === preNode) { - preNode = pre; - pre = preNode.parent; + } else { + var n = e.tt; + while (n.Y === e) { + e = n; + n = e.tt; } - preNode = pre; + e = n; } - return preNode; + return e; }; - /** - * @description Get the next node. - * @return TreeNode about the next node. - */ - TreeNode.prototype.next = function () { - var nextNode = this; - if (nextNode.right) { - nextNode = nextNode.right; - while (nextNode.left) { - nextNode = nextNode.left; - } - } - else { - var pre = nextNode.parent; - while (pre.right === nextNode) { - nextNode = pre; - pre = nextNode.parent; + TreeNode.prototype.next = function() { + var e = this; + if (e.Z) { + e = e.Z; + while (e.Y) { + e = e.Y; } - if (nextNode.right !== pre) { - nextNode = pre; + return e; + } else { + var n = e.tt; + while (n.Z === e) { + e = n; + n = e.tt; } + if (e.Z !== n) { + return n; + } else return e; } - return nextNode; }; - /** - * @description Rotate left. - * @return TreeNode about moved to original position after rotation. - */ - TreeNode.prototype.rotateLeft = function () { - var PP = this.parent; - var V = this.right; - var R = V.left; - if (PP.parent === this) - PP.parent = V; - else if (PP.left === this) - PP.left = V; - else - PP.right = V; - V.parent = PP; - V.left = this; - this.parent = V; - this.right = R; - if (R) - R.parent = this; - return V; + TreeNode.prototype.rotateLeft = function() { + var e = this.tt; + var n = this.Z; + var i = n.Y; + if (e.tt === this) e.tt = n; else if (e.Y === this) e.Y = n; else e.Z = n; + n.tt = e; + n.Y = this; + this.tt = n; + this.Z = i; + if (i) i.tt = this; + return n; }; - /** - * @description Rotate left. - * @return TreeNode about moved to original position after rotation. - */ - TreeNode.prototype.rotateRight = function () { - var PP = this.parent; - var F = this.left; - var K = F.right; - if (PP.parent === this) - PP.parent = F; - else if (PP.left === this) - PP.left = F; - else - PP.right = F; - F.parent = PP; - F.right = this; - this.parent = F; - this.left = K; - if (K) - K.parent = this; - return F; + TreeNode.prototype.rotateRight = function() { + var e = this.tt; + var n = this.Y; + var i = n.Z; + if (e.tt === this) e.tt = n; else if (e.Y === this) e.Y = n; else e.Z = n; + n.tt = e; + n.Z = this; + this.tt = n; + this.Y = i; + if (i) i.tt = this; + return n; }; - /** - * @description Remove this. - */ - TreeNode.prototype.remove = function () { - var parent = this.parent; - if (this === parent.left) { - parent.left = undefined; - } - else - parent.right = undefined; - }; - TreeNode.RED = true; - TreeNode.BLACK = false; return TreeNode; -}()); -export default TreeNode; +}(); + +export { TreeNode }; + +var TreeNodeEnableIndex = function(e) { + __extends(TreeNodeEnableIndex, e); + function TreeNodeEnableIndex() { + var n = e !== null && e.apply(this, arguments) || this; + n.Y = undefined; + n.Z = undefined; + n.tt = undefined; + n.rt = 1; + return n; + } + TreeNodeEnableIndex.prototype.rotateLeft = function() { + var n = e.prototype.rotateLeft.call(this); + this.recount(); + n.recount(); + return n; + }; + TreeNodeEnableIndex.prototype.rotateRight = function() { + var n = e.prototype.rotateRight.call(this); + this.recount(); + n.recount(); + return n; + }; + TreeNodeEnableIndex.prototype.recount = function() { + this.rt = 1; + if (this.Y) this.rt += this.Y.rt; + if (this.Z) this.rt += this.Z.rt; + }; + return TreeNodeEnableIndex; +}(TreeNode); + +export { TreeNodeEnableIndex }; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/index.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/index.js index 82bd97adc90529..783932b17b5ac8 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/index.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/Base/index.js @@ -1,601 +1,525 @@ -var __extends = (this && this.__extends) || (function () { - var extendStatics = function (d, b) { - extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - return extendStatics(d, b); +var __extends = this && this.t || function() { + var extendStatics = function(e, i) { + extendStatics = Object.setPrototypeOf || { + __proto__: [] + } instanceof Array && function(e, i) { + e.__proto__ = i; + } || function(e, i) { + for (var r in i) if (Object.prototype.hasOwnProperty.call(i, r)) e[r] = i[r]; + }; + return extendStatics(e, i); }; - return function (d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + return function(e, i) { + if (typeof i !== "function" && i !== null) throw new TypeError("Class extends value " + String(i) + " is not a constructor or null"); + extendStatics(e, i); + function __() { + this.constructor = e; + } + e.prototype = i === null ? Object.create(i) : (__.prototype = i.prototype, new __); }; -})(); -var __read = (this && this.__read) || function (o, n) { - var m = typeof Symbol === "function" && o[Symbol.iterator]; - if (!m) return o; - var i = m.call(o), r, ar = [], e; +}(); + +var __read = this && this._ || function(e, i) { + var r = typeof Symbol === "function" && e[Symbol.iterator]; + if (!r) return e; + var t = r.call(e), n, s = [], f; try { - while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value); - } - catch (error) { e = { error: error }; } - finally { + while ((i === void 0 || i-- > 0) && !(n = t.next()).done) s.push(n.value); + } catch (e) { + f = { + error: e + }; + } finally { try { - if (r && !r.done && (m = i["return"])) m.call(i); + if (n && !n.done && (r = t["return"])) r.call(t); + } finally { + if (f) throw f.error; } - finally { if (e) throw e.error; } } - return ar; + return s; }; -import TreeNode from './TreeNode'; -import { Container } from "../../ContainerBase/index"; -import { checkWithinAccessParams } from "../../../utils/checkParams"; -var TreeContainer = /** @class */ (function (_super) { - __extends(TreeContainer, _super); - function TreeContainer(cmp) { - if (cmp === void 0) { cmp = function (x, y) { - if (x < y) - return -1; - if (x > y) - return 1; - return 0; - }; } - var _this = _super.call(this) || this; - _this.root = undefined; - _this.header = new TreeNode(); - /** - * @description InOrder traversal the tree. - * @protected - */ - _this.inOrderTraversal = function (curNode, callback) { - if (curNode === undefined) - return false; - var ifReturn = _this.inOrderTraversal(curNode.left, callback); - if (ifReturn) - return true; - if (callback(curNode)) - return true; - return _this.inOrderTraversal(curNode.right, callback); + +import { Container } from "../../ContainerBase"; + +import { TreeNode, TreeNodeEnableIndex } from "./TreeNode"; + +var TreeContainer = function(e) { + __extends(TreeContainer, e); + function TreeContainer(i, r) { + if (i === void 0) { + i = function(e, i) { + if (e < i) return -1; + if (e > i) return 1; + return 0; + }; + } + if (r === void 0) { + r = false; + } + var t = e.call(this) || this; + t.rr = undefined; + t.ie = function(e, i) { + if (e === undefined) return false; + var r = t.ie(e.Y, i); + if (r) return true; + if (i(e)) return true; + return t.ie(e.Z, i); }; - _this.cmp = cmp; - return _this; + t.A = i; + if (r) { + t.re = TreeNodeEnableIndex; + t.ir = function(e, i, r) { + var t = this.te(e, i, r); + if (t) { + var n = t.tt; + while (n !== this.J) { + n.rt += 1; + n = n.tt; + } + var s = this.ne(t); + if (s) { + var f = s, h = f.parentNode, u = f.grandParent, a = f.curNode; + h.recount(); + u.recount(); + a.recount(); + } + } + }; + t.se = function(e) { + var i = this.fe(e); + while (i !== this.J) { + i.rt -= 1; + i = i.tt; + } + }; + } else { + t.re = TreeNode; + t.ir = function(e, i, r) { + var t = this.te(e, i, r); + if (t) this.ne(t); + }; + t.se = t.fe; + } + t.J = new t.re; + return t; } - /** - * @param curNode The starting node of the search. - * @param key The key you want to search. - * @return TreeNode which key is greater than or equals to the given key. - * @protected - */ - TreeContainer.prototype._lowerBound = function (curNode, key) { - var resNode; - while (curNode) { - var cmpResult = this.cmp(curNode.key, key); - if (cmpResult < 0) { - curNode = curNode.right; - } - else if (cmpResult > 0) { - resNode = curNode; - curNode = curNode.left; - } - else - return curNode; + TreeContainer.prototype.$ = function(e, i) { + var r; + while (e) { + var t = this.A(e.W, i); + if (t < 0) { + e = e.Z; + } else if (t > 0) { + r = e; + e = e.Y; + } else return e; } - return resNode === undefined ? this.header : resNode; + return r === undefined ? this.J : r; }; - /** - * @param curNode The starting node of the search. - * @param key The key you want to search. - * @return TreeNode which key is greater than the given key. - * @protected - */ - TreeContainer.prototype._upperBound = function (curNode, key) { - var resNode; - while (curNode) { - var cmpResult = this.cmp(curNode.key, key); - if (cmpResult <= 0) { - curNode = curNode.right; - } - else if (cmpResult > 0) { - resNode = curNode; - curNode = curNode.left; + TreeContainer.prototype.er = function(e, i) { + var r; + while (e) { + var t = this.A(e.W, i); + if (t <= 0) { + e = e.Z; + } else { + r = e; + e = e.Y; } } - return resNode === undefined ? this.header : resNode; + return r === undefined ? this.J : r; }; - /** - * @param curNode The starting node of the search. - * @param key The key you want to search. - * @return TreeNode which key is less than or equals to the given key. - * @protected - */ - TreeContainer.prototype._reverseLowerBound = function (curNode, key) { - var resNode; - while (curNode) { - var cmpResult = this.cmp(curNode.key, key); - if (cmpResult < 0) { - resNode = curNode; - curNode = curNode.right; - } - else if (cmpResult > 0) { - curNode = curNode.left; - } - else - return curNode; + TreeContainer.prototype.tr = function(e, i) { + var r; + while (e) { + var t = this.A(e.W, i); + if (t < 0) { + r = e; + e = e.Z; + } else if (t > 0) { + e = e.Y; + } else return e; } - return resNode === undefined ? this.header : resNode; + return r === undefined ? this.J : r; }; - /** - * @param curNode The starting node of the search. - * @param key The key you want to search. - * @return TreeNode which key is less than the given key. - * @protected - */ - TreeContainer.prototype._reverseUpperBound = function (curNode, key) { - var resNode; - while (curNode) { - var cmpResult = this.cmp(curNode.key, key); - if (cmpResult < 0) { - resNode = curNode; - curNode = curNode.right; - } - else if (cmpResult >= 0) { - curNode = curNode.left; + TreeContainer.prototype.nr = function(e, i) { + var r; + while (e) { + var t = this.A(e.W, i); + if (t < 0) { + r = e; + e = e.Z; + } else { + e = e.Y; } } - return resNode === undefined ? this.header : resNode; + return r === undefined ? this.J : r; }; - /** - * @description Make self balance after erase a node. - * @param curNode The node want to remove. - * @protected - */ - TreeContainer.prototype.eraseNodeSelfBalance = function (curNode) { + TreeContainer.prototype.he = function(e) { while (true) { - var parentNode = curNode.parent; - if (parentNode === this.header) - return; - if (curNode.color === TreeNode.RED) { - curNode.color = TreeNode.BLACK; + var i = e.tt; + if (i === this.J) return; + if (e.ee === 1) { + e.ee = 0; return; } - if (curNode === parentNode.left) { - var brother = parentNode.right; - if (brother.color === TreeNode.RED) { - brother.color = TreeNode.BLACK; - parentNode.color = TreeNode.RED; - if (parentNode === this.root) { - this.root = parentNode.rotateLeft(); - } - else - parentNode.rotateLeft(); - } - else if (brother.color === TreeNode.BLACK) { - if (brother.right && brother.right.color === TreeNode.RED) { - brother.color = parentNode.color; - parentNode.color = TreeNode.BLACK; - brother.right.color = TreeNode.BLACK; - if (parentNode === this.root) { - this.root = parentNode.rotateLeft(); - } - else - parentNode.rotateLeft(); + if (e === i.Y) { + var r = i.Z; + if (r.ee === 1) { + r.ee = 0; + i.ee = 1; + if (i === this.rr) { + this.rr = i.rotateLeft(); + } else i.rotateLeft(); + } else { + if (r.Z && r.Z.ee === 1) { + r.ee = i.ee; + i.ee = 0; + r.Z.ee = 0; + if (i === this.rr) { + this.rr = i.rotateLeft(); + } else i.rotateLeft(); return; - } - else if (brother.left && brother.left.color === TreeNode.RED) { - brother.color = TreeNode.RED; - brother.left.color = TreeNode.BLACK; - brother.rotateRight(); - } - else { - brother.color = TreeNode.RED; - curNode = parentNode; + } else if (r.Y && r.Y.ee === 1) { + r.ee = 1; + r.Y.ee = 0; + r.rotateRight(); + } else { + r.ee = 1; + e = i; } } - } - else { - var brother = parentNode.left; - if (brother.color === TreeNode.RED) { - brother.color = TreeNode.BLACK; - parentNode.color = TreeNode.RED; - if (parentNode === this.root) { - this.root = parentNode.rotateRight(); - } - else - parentNode.rotateRight(); - } - else { - if (brother.left && brother.left.color === TreeNode.RED) { - brother.color = parentNode.color; - parentNode.color = TreeNode.BLACK; - brother.left.color = TreeNode.BLACK; - if (parentNode === this.root) { - this.root = parentNode.rotateRight(); - } - else - parentNode.rotateRight(); + } else { + var r = i.Y; + if (r.ee === 1) { + r.ee = 0; + i.ee = 1; + if (i === this.rr) { + this.rr = i.rotateRight(); + } else i.rotateRight(); + } else { + if (r.Y && r.Y.ee === 1) { + r.ee = i.ee; + i.ee = 0; + r.Y.ee = 0; + if (i === this.rr) { + this.rr = i.rotateRight(); + } else i.rotateRight(); return; - } - else if (brother.right && brother.right.color === TreeNode.RED) { - brother.color = TreeNode.RED; - brother.right.color = TreeNode.BLACK; - brother.rotateLeft(); - } - else { - brother.color = TreeNode.RED; - curNode = parentNode; + } else if (r.Z && r.Z.ee === 1) { + r.ee = 1; + r.Z.ee = 0; + r.rotateLeft(); + } else { + r.ee = 1; + e = i; } } } } }; - /** - * @description Remove a node. - * @param curNode The node you want to remove. - * @protected - */ - TreeContainer.prototype.eraseNode = function (curNode) { - var _a, _b; - if (this.length === 1) { + TreeContainer.prototype.fe = function(e) { + var i, r; + if (this.o === 1) { this.clear(); - return; + return this.J; } - var swapNode = curNode; - while (swapNode.left || swapNode.right) { - if (swapNode.right) { - swapNode = swapNode.right; - while (swapNode.left) - swapNode = swapNode.left; + var t = e; + while (t.Y || t.Z) { + if (t.Z) { + t = t.Z; + while (t.Y) t = t.Y; + } else { + t = t.Y; } - else if (swapNode.left) { - swapNode = swapNode.left; - } - _a = __read([swapNode.key, curNode.key], 2), curNode.key = _a[0], swapNode.key = _a[1]; - _b = __read([swapNode.value, curNode.value], 2), curNode.value = _b[0], swapNode.value = _b[1]; - curNode = swapNode; - } - if (this.header.left === swapNode) { - this.header.left = swapNode.parent; + i = __read([ t.W, e.W ], 2), e.W = i[0], t.W = i[1]; + r = __read([ t.L, e.L ], 2), e.L = r[0], t.L = r[1]; + e = t; } - else if (this.header.right === swapNode) { - this.header.right = swapNode.parent; + if (this.J.Y === t) { + this.J.Y = t.tt; + } else if (this.J.Z === t) { + this.J.Z = t.tt; } - this.eraseNodeSelfBalance(swapNode); - swapNode.remove(); - this.length -= 1; - this.root.color = TreeNode.BLACK; + this.he(t); + var n = t.tt; + if (t === n.Y) { + n.Y = undefined; + } else n.Z = undefined; + this.o -= 1; + this.rr.ee = 0; + return n; }; - /** - * @description Make self balance after insert a node. - * @param curNode The node want to insert. - * @protected - */ - TreeContainer.prototype.insertNodeSelfBalance = function (curNode) { + TreeContainer.prototype.ne = function(e) { while (true) { - var parentNode = curNode.parent; - if (parentNode.color === TreeNode.BLACK) - return; - var grandParent = parentNode.parent; - if (parentNode === grandParent.left) { - var uncle = grandParent.right; - if (uncle && uncle.color === TreeNode.RED) { - uncle.color = parentNode.color = TreeNode.BLACK; - if (grandParent === this.root) - return; - grandParent.color = TreeNode.RED; - curNode = grandParent; + var i = e.tt; + if (i.ee === 0) return; + var r = i.tt; + if (i === r.Y) { + var t = r.Z; + if (t && t.ee === 1) { + t.ee = i.ee = 0; + if (r === this.rr) return; + r.ee = 1; + e = r; continue; - } - else if (curNode === parentNode.right) { - curNode.color = TreeNode.BLACK; - if (curNode.left) - curNode.left.parent = parentNode; - if (curNode.right) - curNode.right.parent = grandParent; - parentNode.right = curNode.left; - grandParent.left = curNode.right; - curNode.left = parentNode; - curNode.right = grandParent; - if (grandParent === this.root) { - this.root = curNode; - this.header.parent = curNode; - } - else { - var GP = grandParent.parent; - if (GP.left === grandParent) { - GP.left = curNode; - } - else - GP.right = curNode; + } else if (e === i.Z) { + e.ee = 0; + if (e.Y) e.Y.tt = i; + if (e.Z) e.Z.tt = r; + i.Z = e.Y; + r.Y = e.Z; + e.Y = i; + e.Z = r; + if (r === this.rr) { + this.rr = e; + this.J.tt = e; + } else { + var n = r.tt; + if (n.Y === r) { + n.Y = e; + } else n.Z = e; } - curNode.parent = grandParent.parent; - parentNode.parent = curNode; - grandParent.parent = curNode; + e.tt = r.tt; + i.tt = e; + r.tt = e; + r.ee = 1; + return { + parentNode: i, + grandParent: r, + curNode: e + }; + } else { + i.ee = 0; + if (r === this.rr) { + this.rr = r.rotateRight(); + } else r.rotateRight(); + r.ee = 1; } - else { - parentNode.color = TreeNode.BLACK; - if (grandParent === this.root) { - this.root = grandParent.rotateRight(); - } - else - grandParent.rotateRight(); - } - grandParent.color = TreeNode.RED; - } - else { - var uncle = grandParent.left; - if (uncle && uncle.color === TreeNode.RED) { - uncle.color = parentNode.color = TreeNode.BLACK; - if (grandParent === this.root) - return; - grandParent.color = TreeNode.RED; - curNode = grandParent; + } else { + var t = r.Y; + if (t && t.ee === 1) { + t.ee = i.ee = 0; + if (r === this.rr) return; + r.ee = 1; + e = r; continue; - } - else if (curNode === parentNode.left) { - curNode.color = TreeNode.BLACK; - if (curNode.left) - curNode.left.parent = grandParent; - if (curNode.right) - curNode.right.parent = parentNode; - grandParent.right = curNode.left; - parentNode.left = curNode.right; - curNode.left = grandParent; - curNode.right = parentNode; - if (grandParent === this.root) { - this.root = curNode; - this.header.parent = curNode; - } - else { - var GP = grandParent.parent; - if (GP.left === grandParent) { - GP.left = curNode; - } - else - GP.right = curNode; - } - curNode.parent = grandParent.parent; - parentNode.parent = curNode; - grandParent.parent = curNode; - } - else { - parentNode.color = TreeNode.BLACK; - if (grandParent === this.root) { - this.root = grandParent.rotateLeft(); + } else if (e === i.Y) { + e.ee = 0; + if (e.Y) e.Y.tt = r; + if (e.Z) e.Z.tt = i; + r.Z = e.Y; + i.Y = e.Z; + e.Y = r; + e.Z = i; + if (r === this.rr) { + this.rr = e; + this.J.tt = e; + } else { + var n = r.tt; + if (n.Y === r) { + n.Y = e; + } else n.Z = e; } - else - grandParent.rotateLeft(); + e.tt = r.tt; + i.tt = e; + r.tt = e; + r.ee = 1; + return { + parentNode: i, + grandParent: r, + curNode: e + }; + } else { + i.ee = 0; + if (r === this.rr) { + this.rr = r.rotateLeft(); + } else r.rotateLeft(); + r.ee = 1; } - grandParent.color = TreeNode.RED; } return; } }; - /** - * @description Find node which key is equals to the given key. - * @param curNode The starting node of the search. - * @param key The key you want to search. - * @protected - */ - TreeContainer.prototype.findElementNode = function (curNode, key) { - while (curNode) { - var cmpResult = this.cmp(curNode.key, key); - if (cmpResult < 0) { - curNode = curNode.right; - } - else if (cmpResult > 0) { - curNode = curNode.left; - } - else - return curNode; - } - return curNode; - }; - /** - * @description Insert a key-value pair or set value by the given key. - * @param key The key want to insert. - * @param value The value want to set. - * @param hint You can give an iterator hint to improve insertion efficiency. - * @protected - */ - TreeContainer.prototype.set = function (key, value, hint) { - if (this.root === undefined) { - this.length += 1; - this.root = new TreeNode(key, value); - this.root.color = TreeNode.BLACK; - this.root.parent = this.header; - this.header.parent = this.root; - this.header.left = this.root; - this.header.right = this.root; + TreeContainer.prototype.te = function(e, i, r) { + if (this.rr === undefined) { + this.o += 1; + this.rr = new this.re(e, i); + this.rr.ee = 0; + this.rr.tt = this.J; + this.J.tt = this.rr; + this.J.Y = this.rr; + this.J.Z = this.rr; return; } - var curNode; - var minNode = this.header.left; - var compareToMin = this.cmp(minNode.key, key); - if (compareToMin === 0) { - minNode.value = value; + var t; + var n = this.J.Y; + var s = this.A(n.W, e); + if (s === 0) { + n.L = i; return; - } - else if (compareToMin > 0) { - minNode.left = new TreeNode(key, value); - minNode.left.parent = minNode; - curNode = minNode.left; - this.header.left = curNode; - } - else { - var maxNode = this.header.right; - var compareToMax = this.cmp(maxNode.key, key); - if (compareToMax === 0) { - maxNode.value = value; + } else if (s > 0) { + n.Y = new this.re(e, i); + n.Y.tt = n; + t = n.Y; + this.J.Y = t; + } else { + var f = this.J.Z; + var h = this.A(f.W, e); + if (h === 0) { + f.L = i; return; - } - else if (compareToMax < 0) { - maxNode.right = new TreeNode(key, value); - maxNode.right.parent = maxNode; - curNode = maxNode.right; - this.header.right = curNode; - } - else { - if (hint !== undefined) { - // @ts-ignore - var iterNode = hint.node; - if (iterNode !== this.header) { - var iterCmpRes = this.cmp(iterNode.key, key); - if (iterCmpRes === 0) { - iterNode.value = value; + } else if (h < 0) { + f.Z = new this.re(e, i); + f.Z.tt = f; + t = f.Z; + this.J.Z = t; + } else { + if (r !== undefined) { + var u = r.D; + if (u !== this.J) { + var a = this.A(u.W, e); + if (a === 0) { + u.L = i; return; - } - else if (iterCmpRes > 0) { - var preNode = iterNode.pre(); - var preCmpRes = this.cmp(preNode.key, key); - if (preCmpRes === 0) { - preNode.value = value; + } else if (a > 0) { + var o = u.pre(); + var l = this.A(o.W, e); + if (l === 0) { + o.L = i; return; - } - else if (preCmpRes < 0) { - curNode = new TreeNode(key, value); - if (preNode.right === undefined) { - preNode.right = curNode; - curNode.parent = preNode; - } - else { - iterNode.left = curNode; - curNode.parent = iterNode; + } else if (l < 0) { + t = new this.re(e, i); + if (o.Z === undefined) { + o.Z = t; + t.tt = o; + } else { + u.Y = t; + t.tt = u; } } } } } - if (curNode === undefined) { - curNode = this.root; + if (t === undefined) { + t = this.rr; while (true) { - var cmpResult = this.cmp(curNode.key, key); - if (cmpResult > 0) { - if (curNode.left === undefined) { - curNode.left = new TreeNode(key, value); - curNode.left.parent = curNode; - curNode = curNode.left; + var d = this.A(t.W, e); + if (d > 0) { + if (t.Y === undefined) { + t.Y = new this.re(e, i); + t.Y.tt = t; + t = t.Y; break; } - curNode = curNode.left; - } - else if (cmpResult < 0) { - if (curNode.right === undefined) { - curNode.right = new TreeNode(key, value); - curNode.right.parent = curNode; - curNode = curNode.right; + t = t.Y; + } else if (d < 0) { + if (t.Z === undefined) { + t.Z = new this.re(e, i); + t.Z.tt = t; + t = t.Z; break; } - curNode = curNode.right; - } - else { - curNode.value = value; + t = t.Z; + } else { + t.L = i; return; } } } } } - this.length += 1; - this.insertNodeSelfBalance(curNode); + this.o += 1; + return t; }; - TreeContainer.prototype.clear = function () { - this.length = 0; - this.root = undefined; - this.header.parent = undefined; - this.header.left = this.header.right = undefined; + TreeContainer.prototype.clear = function() { + this.o = 0; + this.rr = undefined; + this.J.tt = undefined; + this.J.Y = this.J.Z = undefined; }; - /** - * @description Update node's key by iterator. - * @param iter The iterator you want to change. - * @param key The key you want to update. - * @return Boolean about if the modification is successful. - */ - TreeContainer.prototype.updateKeyByIterator = function (iter, key) { - // @ts-ignore - var node = iter.node; - if (node === this.header) { - throw new TypeError('Invalid iterator!'); + TreeContainer.prototype.updateKeyByIterator = function(e, i) { + var r = e.D; + if (r === this.J) { + throw new TypeError("Invalid iterator!"); } - if (this.length === 1) { - node.key = key; + if (this.o === 1) { + r.W = i; return true; } - if (node === this.header.left) { - if (this.cmp(node.next().key, key) > 0) { - node.key = key; + if (r === this.J.Y) { + if (this.A(r.next().W, i) > 0) { + r.W = i; return true; } return false; } - if (node === this.header.right) { - if (this.cmp(node.pre().key, key) < 0) { - node.key = key; + if (r === this.J.Z) { + if (this.A(r.pre().W, i) < 0) { + r.W = i; return true; } return false; } - var preKey = node.pre().key; - if (this.cmp(preKey, key) >= 0) - return false; - var nextKey = node.next().key; - if (this.cmp(nextKey, key) <= 0) - return false; - node.key = key; + var t = r.pre().W; + if (this.A(t, i) >= 0) return false; + var n = r.next().W; + if (this.A(n, i) <= 0) return false; + r.W = i; return true; }; - TreeContainer.prototype.eraseElementByPos = function (pos) { - var _this = this; - checkWithinAccessParams(pos, 0, this.length - 1); - var index = 0; - this.inOrderTraversal(this.root, function (curNode) { - if (pos === index) { - _this.eraseNode(curNode); + TreeContainer.prototype.eraseElementByPos = function(e) { + var i = this; + if (e < 0 || e > this.o - 1) { + throw new RangeError; + } + var r = 0; + this.ie(this.rr, (function(t) { + if (e === r) { + i.se(t); return true; } - index += 1; + r += 1; return false; - }); + })); }; - /** - * @description Remove the element of the specified key. - * @param key The key you want to remove. - */ - TreeContainer.prototype.eraseElementByKey = function (key) { - if (!this.length) - return; - var curNode = this.findElementNode(this.root, key); - if (curNode === undefined) - return; - this.eraseNode(curNode); + TreeContainer.prototype.ar = function(e, i) { + while (e) { + var r = this.A(e.W, i); + if (r < 0) { + e = e.Z; + } else if (r > 0) { + e = e.Y; + } else return e; + } + return e; }; - TreeContainer.prototype.eraseElementByIterator = function (iter) { - // @ts-ignore - var node = iter.node; - if (node === this.header) { - throw new RangeError('Invalid iterator'); + TreeContainer.prototype.eraseElementByKey = function(e) { + if (!this.o) return; + var i = this.ar(this.rr, e); + if (i === undefined) return; + this.se(i); + }; + TreeContainer.prototype.eraseElementByIterator = function(e) { + var i = e.D; + if (i === this.J) { + throw new RangeError("Invalid iterator"); } - if (node.right === undefined) { - iter = iter.next(); + if (i.Z === undefined) { + e = e.next(); } - this.eraseNode(node); - return iter; + this.se(i); + return e; }; - /** - * @description Get the height of the tree. - * @return Number about the height of the RB-tree. - */ - TreeContainer.prototype.getHeight = function () { - if (!this.length) - return 0; - var traversal = function (curNode) { - if (!curNode) - return 0; - return Math.max(traversal(curNode.left), traversal(curNode.right)) + 1; + TreeContainer.prototype.getHeight = function() { + if (!this.o) return 0; + var traversal = function(e) { + if (!e) return 0; + return Math.max(traversal(e.Y), traversal(e.Z)) + 1; }; - return traversal(this.root); + return traversal(this.rr); }; return TreeContainer; -}(Container)); -export default TreeContainer; +}(Container); + +export default TreeContainer; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/OrderedMap.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/OrderedMap.js index 997cb947d69980..b223414e9e58c8 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/OrderedMap.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/OrderedMap.js @@ -1,99 +1,173 @@ -var __extends = (this && this.__extends) || (function () { - var extendStatics = function (d, b) { - extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - return extendStatics(d, b); +var __extends = this && this.t || function() { + var extendStatics = function(r, e) { + extendStatics = Object.setPrototypeOf || { + __proto__: [] + } instanceof Array && function(r, e) { + r.__proto__ = e; + } || function(r, e) { + for (var t in e) if (Object.prototype.hasOwnProperty.call(e, t)) r[t] = e[t]; + }; + return extendStatics(r, e); }; - return function (d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + return function(r, e) { + if (typeof e !== "function" && e !== null) throw new TypeError("Class extends value " + String(e) + " is not a constructor or null"); + extendStatics(r, e); + function __() { + this.constructor = r; + } + r.prototype = e === null ? Object.create(e) : (__.prototype = e.prototype, new __); }; -})(); -var __generator = (this && this.__generator) || function (thisArg, body) { - var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; - return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; - function verb(n) { return function (v) { return step([n, v]); }; } - function step(op) { - if (f) throw new TypeError("Generator is already executing."); - while (_) try { - if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; - if (y = 0, t) op = [op[0] & 2, t.value]; - switch (op[0]) { - case 0: case 1: t = op; break; - case 4: _.label++; return { value: op[1], done: false }; - case 5: _.label++; y = op[1]; op = [0]; continue; - case 7: op = _.ops.pop(); _.trys.pop(); continue; - default: - if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } - if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } - if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } - if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } - if (t[2]) _.ops.pop(); - _.trys.pop(); continue; +}(); + +var __generator = this && this.i || function(r, e) { + var t = { + label: 0, + sent: function() { + if (a[0] & 1) throw a[1]; + return a[1]; + }, + trys: [], + ops: [] + }, n, i, a, o; + return o = { + next: verb(0), + throw: verb(1), + return: verb(2) + }, typeof Symbol === "function" && (o[Symbol.iterator] = function() { + return this; + }), o; + function verb(r) { + return function(e) { + return step([ r, e ]); + }; + } + function step(o) { + if (n) throw new TypeError("Generator is already executing."); + while (t) try { + if (n = 1, i && (a = o[0] & 2 ? i["return"] : o[0] ? i["throw"] || ((a = i["return"]) && a.call(i), + 0) : i.next) && !(a = a.call(i, o[1])).done) return a; + if (i = 0, a) o = [ o[0] & 2, a.value ]; + switch (o[0]) { + case 0: + case 1: + a = o; + break; + + case 4: + t.label++; + return { + value: o[1], + done: false + }; + + case 5: + t.label++; + i = o[1]; + o = [ 0 ]; + continue; + + case 7: + o = t.ops.pop(); + t.trys.pop(); + continue; + + default: + if (!(a = t.trys, a = a.length > 0 && a[a.length - 1]) && (o[0] === 6 || o[0] === 2)) { + t = 0; + continue; + } + if (o[0] === 3 && (!a || o[1] > a[0] && o[1] < a[3])) { + t.label = o[1]; + break; + } + if (o[0] === 6 && t.label < a[1]) { + t.label = a[1]; + a = o; + break; + } + if (a && t.label < a[2]) { + t.label = a[2]; + t.ops.push(o); + break; + } + if (a[2]) t.ops.pop(); + t.trys.pop(); + continue; } - op = body.call(thisArg, _); - } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } - if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + o = e.call(r, t); + } catch (r) { + o = [ 6, r ]; + i = 0; + } finally { + n = a = 0; + } + if (o[0] & 5) throw o[1]; + return { + value: o[0] ? o[1] : void 0, + done: true + }; } }; -var __read = (this && this.__read) || function (o, n) { - var m = typeof Symbol === "function" && o[Symbol.iterator]; - if (!m) return o; - var i = m.call(o), r, ar = [], e; + +var __read = this && this._ || function(r, e) { + var t = typeof Symbol === "function" && r[Symbol.iterator]; + if (!t) return r; + var n = t.call(r), i, a = [], o; try { - while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value); - } - catch (error) { e = { error: error }; } - finally { + while ((e === void 0 || e-- > 0) && !(i = n.next()).done) a.push(i.value); + } catch (r) { + o = { + error: r + }; + } finally { try { - if (r && !r.done && (m = i["return"])) m.call(i); + if (i && !i.done && (t = n["return"])) t.call(n); + } finally { + if (o) throw o.error; } - finally { if (e) throw e.error; } } - return ar; + return a; }; -var __values = (this && this.__values) || function(o) { - var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; - if (m) return m.call(o); - if (o && typeof o.length === "number") return { - next: function () { - if (o && i >= o.length) o = void 0; - return { value: o && o[i++], done: !o }; + +var __values = this && this.u || function(r) { + var e = typeof Symbol === "function" && Symbol.iterator, t = e && r[e], n = 0; + if (t) return t.call(r); + if (r && typeof r.length === "number") return { + next: function() { + if (r && n >= r.length) r = void 0; + return { + value: r && r[n++], + done: !r + }; } }; - throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); + throw new TypeError(e ? "Object is not iterable." : "Symbol.iterator is not defined."); }; -import { ContainerIterator } from "../ContainerBase/index"; -import { checkWithinAccessParams } from "../../utils/checkParams"; -import TreeContainer from './Base/index'; -import TreeIterator from './Base/TreeIterator'; -var OrderedMapIterator = /** @class */ (function (_super) { - __extends(OrderedMapIterator, _super); + +import TreeContainer from "./Base"; + +import TreeIterator from "./Base/TreeIterator"; + +var OrderedMapIterator = function(r) { + __extends(OrderedMapIterator, r); function OrderedMapIterator() { - return _super !== null && _super.apply(this, arguments) || this; + return r !== null && r.apply(this, arguments) || this; } Object.defineProperty(OrderedMapIterator.prototype, "pointer", { - get: function () { - var _this = this; - if (this.node === this.header) { - throw new RangeError('OrderedMap iterator access denied'); + get: function() { + var r = this; + if (this.D === this.J) { + throw new RangeError("OrderedMap iterator access denied"); } return new Proxy([], { - get: function (_, props) { - if (props === '0') - return _this.node.key; - else if (props === '1') - return _this.node.value; + get: function(e, t) { + if (t === "0") return r.D.W; else if (t === "1") return r.D.L; }, - set: function (_, props, newValue) { - if (props !== '1') { - throw new TypeError('props must be 1'); + set: function(e, t, n) { + if (t !== "1") { + throw new TypeError("props must be 1"); } - _this.node.value = newValue; + r.D.L = n; return true; } }); @@ -101,157 +175,160 @@ var OrderedMapIterator = /** @class */ (function (_super) { enumerable: false, configurable: true }); - OrderedMapIterator.prototype.copy = function () { - return new OrderedMapIterator(this.node, this.header, this.iteratorType); + OrderedMapIterator.prototype.copy = function() { + return new OrderedMapIterator(this.D, this.J, this.iteratorType); }; return OrderedMapIterator; -}(TreeIterator)); +}(TreeIterator); + export { OrderedMapIterator }; -var OrderedMap = /** @class */ (function (_super) { - __extends(OrderedMap, _super); - function OrderedMap(container, cmp) { - if (container === void 0) { container = []; } - var _this = _super.call(this, cmp) || this; - _this.iterationFunc = function (curNode) { - return __generator(this, function (_a) { - switch (_a.label) { - case 0: - if (curNode === undefined) - return [2 /*return*/]; - return [5 /*yield**/, __values(this.iterationFunc(curNode.left))]; - case 1: - _a.sent(); - return [4 /*yield*/, [curNode.key, curNode.value]]; - case 2: - _a.sent(); - return [5 /*yield**/, __values(this.iterationFunc(curNode.right))]; - case 3: - _a.sent(); - return [2 /*return*/]; + +var OrderedMap = function(r) { + __extends(OrderedMap, r); + function OrderedMap(e, t, n) { + if (e === void 0) { + e = []; + } + var i = r.call(this, t, n) || this; + i.X = function(r) { + return __generator(this, (function(e) { + switch (e.label) { + case 0: + if (r === undefined) return [ 2 ]; + return [ 5, __values(this.X(r.Y)) ]; + + case 1: + e.sent(); + return [ 4, [ r.W, r.L ] ]; + + case 2: + e.sent(); + return [ 5, __values(this.X(r.Z)) ]; + + case 3: + e.sent(); + return [ 2 ]; } - }); + })); }; - _this.iterationFunc = _this.iterationFunc.bind(_this); - container.forEach(function (_a) { - var _b = __read(_a, 2), key = _b[0], value = _b[1]; - return _this.setElement(key, value); - }); - return _this; + e.forEach((function(r) { + var e = __read(r, 2), t = e[0], n = e[1]; + return i.setElement(t, n); + })); + return i; } - OrderedMap.prototype.begin = function () { - return new OrderedMapIterator(this.header.left || this.header, this.header); + OrderedMap.prototype.begin = function() { + return new OrderedMapIterator(this.J.Y || this.J, this.J); }; - OrderedMap.prototype.end = function () { - return new OrderedMapIterator(this.header, this.header); + OrderedMap.prototype.end = function() { + return new OrderedMapIterator(this.J, this.J); }; - OrderedMap.prototype.rBegin = function () { - return new OrderedMapIterator(this.header.right || this.header, this.header, ContainerIterator.REVERSE); + OrderedMap.prototype.rBegin = function() { + return new OrderedMapIterator(this.J.Z || this.J, this.J, 1); }; - OrderedMap.prototype.rEnd = function () { - return new OrderedMapIterator(this.header, this.header, ContainerIterator.REVERSE); + OrderedMap.prototype.rEnd = function() { + return new OrderedMapIterator(this.J, this.J, 1); }; - OrderedMap.prototype.front = function () { - if (!this.length) - return undefined; - var minNode = this.header.left; - return [minNode.key, minNode.value]; + OrderedMap.prototype.front = function() { + if (!this.o) return undefined; + var r = this.J.Y; + return [ r.W, r.L ]; }; - OrderedMap.prototype.back = function () { - if (!this.length) - return undefined; - var maxNode = this.header.right; - return [maxNode.key, maxNode.value]; + OrderedMap.prototype.back = function() { + if (!this.o) return undefined; + var r = this.J.Z; + return [ r.W, r.L ]; }; - OrderedMap.prototype.forEach = function (callback) { - var e_1, _a; - var index = 0; + OrderedMap.prototype.forEach = function(r) { + var e, t; + var n = 0; try { - for (var _b = __values(this), _c = _b.next(); !_c.done; _c = _b.next()) { - var pair = _c.value; - callback(pair, index++); + for (var i = __values(this), a = i.next(); !a.done; a = i.next()) { + var o = a.value; + r(o, n++); } - } - catch (e_1_1) { e_1 = { error: e_1_1 }; } - finally { + } catch (r) { + e = { + error: r + }; + } finally { try { - if (_c && !_c.done && (_a = _b.return)) _a.call(_b); + if (a && !a.done && (t = i.return)) t.call(i); + } finally { + if (e) throw e.error; } - finally { if (e_1) throw e_1.error; } } }; - OrderedMap.prototype.lowerBound = function (key) { - var resNode = this._lowerBound(this.root, key); - return new OrderedMapIterator(resNode, this.header); + OrderedMap.prototype.lowerBound = function(r) { + var e = this.$(this.rr, r); + return new OrderedMapIterator(e, this.J); }; - OrderedMap.prototype.upperBound = function (key) { - var resNode = this._upperBound(this.root, key); - return new OrderedMapIterator(resNode, this.header); + OrderedMap.prototype.upperBound = function(r) { + var e = this.er(this.rr, r); + return new OrderedMapIterator(e, this.J); }; - OrderedMap.prototype.reverseLowerBound = function (key) { - var resNode = this._reverseLowerBound(this.root, key); - return new OrderedMapIterator(resNode, this.header); + OrderedMap.prototype.reverseLowerBound = function(r) { + var e = this.tr(this.rr, r); + return new OrderedMapIterator(e, this.J); }; - OrderedMap.prototype.reverseUpperBound = function (key) { - var resNode = this._reverseUpperBound(this.root, key); - return new OrderedMapIterator(resNode, this.header); + OrderedMap.prototype.reverseUpperBound = function(r) { + var e = this.nr(this.rr, r); + return new OrderedMapIterator(e, this.J); }; - /** - * @description Insert a key-value pair or set value by the given key. - * @param key The key want to insert. - * @param value The value want to set. - * @param hint You can give an iterator hint to improve insertion efficiency. - */ - OrderedMap.prototype.setElement = function (key, value, hint) { - this.set(key, value, hint); + OrderedMap.prototype.setElement = function(r, e, t) { + this.ir(r, e, t); }; - OrderedMap.prototype.find = function (key) { - var curNode = this.findElementNode(this.root, key); - if (curNode !== undefined) { - return new OrderedMapIterator(curNode, this.header); + OrderedMap.prototype.find = function(r) { + var e = this.ar(this.rr, r); + if (e !== undefined) { + return new OrderedMapIterator(e, this.J); } return this.end(); }; - /** - * @description Get the value of the element of the specified key. - */ - OrderedMap.prototype.getElementByKey = function (key) { - var curNode = this.findElementNode(this.root, key); - return curNode ? curNode.value : undefined; + OrderedMap.prototype.getElementByKey = function(r) { + var e = this.ar(this.rr, r); + return e ? e.L : undefined; }; - OrderedMap.prototype.getElementByPos = function (pos) { - var e_2, _a; - checkWithinAccessParams(pos, 0, this.length - 1); - var res; - var index = 0; + OrderedMap.prototype.getElementByPos = function(r) { + var e, t; + if (r < 0 || r > this.o - 1) { + throw new RangeError; + } + var n; + var i = 0; try { - for (var _b = __values(this), _c = _b.next(); !_c.done; _c = _b.next()) { - var pair = _c.value; - if (index === pos) { - res = pair; + for (var a = __values(this), o = a.next(); !o.done; o = a.next()) { + var u = o.value; + if (i === r) { + n = u; break; } - index += 1; + i += 1; } - } - catch (e_2_1) { e_2 = { error: e_2_1 }; } - finally { + } catch (r) { + e = { + error: r + }; + } finally { try { - if (_c && !_c.done && (_a = _b.return)) _a.call(_b); + if (o && !o.done && (t = a.return)) t.call(a); + } finally { + if (e) throw e.error; } - finally { if (e_2) throw e_2.error; } } - return res; + return n; }; - OrderedMap.prototype.union = function (other) { - var _this = this; - other.forEach(function (_a) { - var _b = __read(_a, 2), key = _b[0], value = _b[1]; - return _this.setElement(key, value); - }); + OrderedMap.prototype.union = function(r) { + var e = this; + r.forEach((function(r) { + var t = __read(r, 2), n = t[0], i = t[1]; + return e.setElement(n, i); + })); }; - OrderedMap.prototype[Symbol.iterator] = function () { - return this.iterationFunc(this.root); + OrderedMap.prototype[Symbol.iterator] = function() { + return this.X(this.rr); }; return OrderedMap; -}(TreeContainer)); -export default OrderedMap; +}(TreeContainer); + +export default OrderedMap; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/OrderedSet.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/OrderedSet.js index e7a9915947e0d2..a4e79366dfdc14 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/OrderedSet.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/container/TreeContainer/OrderedSet.js @@ -1,205 +1,292 @@ -var __extends = (this && this.__extends) || (function () { - var extendStatics = function (d, b) { - extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - return extendStatics(d, b); - }; - return function (d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); - }; -})(); -var __generator = (this && this.__generator) || function (thisArg, body) { - var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; - return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; - function verb(n) { return function (v) { return step([n, v]); }; } - function step(op) { - if (f) throw new TypeError("Generator is already executing."); - while (_) try { - if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; - if (y = 0, t) op = [op[0] & 2, t.value]; - switch (op[0]) { - case 0: case 1: t = op; break; - case 4: _.label++; return { value: op[1], done: false }; - case 5: _.label++; y = op[1]; op = [0]; continue; - case 7: op = _.ops.pop(); _.trys.pop(); continue; - default: - if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } - if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } - if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } - if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } - if (t[2]) _.ops.pop(); - _.trys.pop(); continue; +var __extends = this && this.t || function() { + var extendStatics = function(e, r) { + extendStatics = Object.setPrototypeOf || { + __proto__: [] + } instanceof Array && function(e, r) { + e.__proto__ = r; + } || function(e, r) { + for (var t in r) if (Object.prototype.hasOwnProperty.call(r, t)) e[t] = r[t]; + }; + return extendStatics(e, r); + }; + return function(e, r) { + if (typeof r !== "function" && r !== null) throw new TypeError("Class extends value " + String(r) + " is not a constructor or null"); + extendStatics(e, r); + function __() { + this.constructor = e; + } + e.prototype = r === null ? Object.create(r) : (__.prototype = r.prototype, new __); + }; +}(); + +var __generator = this && this.i || function(e, r) { + var t = { + label: 0, + sent: function() { + if (o[0] & 1) throw o[1]; + return o[1]; + }, + trys: [], + ops: [] + }, n, i, o, u; + return u = { + next: verb(0), + throw: verb(1), + return: verb(2) + }, typeof Symbol === "function" && (u[Symbol.iterator] = function() { + return this; + }), u; + function verb(e) { + return function(r) { + return step([ e, r ]); + }; + } + function step(u) { + if (n) throw new TypeError("Generator is already executing."); + while (t) try { + if (n = 1, i && (o = u[0] & 2 ? i["return"] : u[0] ? i["throw"] || ((o = i["return"]) && o.call(i), + 0) : i.next) && !(o = o.call(i, u[1])).done) return o; + if (i = 0, o) u = [ u[0] & 2, o.value ]; + switch (u[0]) { + case 0: + case 1: + o = u; + break; + + case 4: + t.label++; + return { + value: u[1], + done: false + }; + + case 5: + t.label++; + i = u[1]; + u = [ 0 ]; + continue; + + case 7: + u = t.ops.pop(); + t.trys.pop(); + continue; + + default: + if (!(o = t.trys, o = o.length > 0 && o[o.length - 1]) && (u[0] === 6 || u[0] === 2)) { + t = 0; + continue; + } + if (u[0] === 3 && (!o || u[1] > o[0] && u[1] < o[3])) { + t.label = u[1]; + break; + } + if (u[0] === 6 && t.label < o[1]) { + t.label = o[1]; + o = u; + break; + } + if (o && t.label < o[2]) { + t.label = o[2]; + t.ops.push(u); + break; + } + if (o[2]) t.ops.pop(); + t.trys.pop(); + continue; } - op = body.call(thisArg, _); - } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } - if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + u = r.call(e, t); + } catch (e) { + u = [ 6, e ]; + i = 0; + } finally { + n = o = 0; + } + if (u[0] & 5) throw u[1]; + return { + value: u[0] ? u[1] : void 0, + done: true + }; } }; -var __values = (this && this.__values) || function(o) { - var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; - if (m) return m.call(o); - if (o && typeof o.length === "number") return { - next: function () { - if (o && i >= o.length) o = void 0; - return { value: o && o[i++], done: !o }; + +var __values = this && this.u || function(e) { + var r = typeof Symbol === "function" && Symbol.iterator, t = r && e[r], n = 0; + if (t) return t.call(e); + if (e && typeof e.length === "number") return { + next: function() { + if (e && n >= e.length) e = void 0; + return { + value: e && e[n++], + done: !e + }; } }; - throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); + throw new TypeError(r ? "Object is not iterable." : "Symbol.iterator is not defined."); }; -import TreeContainer from './Base/index'; -import { ContainerIterator } from "../ContainerBase/index"; -import { checkWithinAccessParams } from "../../utils/checkParams"; -import TreeIterator from './Base/TreeIterator'; -var OrderedSetIterator = /** @class */ (function (_super) { - __extends(OrderedSetIterator, _super); + +import TreeContainer from "./Base"; + +import TreeIterator from "./Base/TreeIterator"; + +var OrderedSetIterator = function(e) { + __extends(OrderedSetIterator, e); function OrderedSetIterator() { - return _super !== null && _super.apply(this, arguments) || this; + return e !== null && e.apply(this, arguments) || this; } Object.defineProperty(OrderedSetIterator.prototype, "pointer", { - get: function () { - if (this.node === this.header) { - throw new RangeError('OrderedSet iterator access denied!'); + get: function() { + if (this.D === this.J) { + throw new RangeError("OrderedSet iterator access denied!"); } - return this.node.key; + return this.D.W; }, enumerable: false, configurable: true }); - OrderedSetIterator.prototype.copy = function () { - return new OrderedSetIterator(this.node, this.header, this.iteratorType); + OrderedSetIterator.prototype.copy = function() { + return new OrderedSetIterator(this.D, this.J, this.iteratorType); }; return OrderedSetIterator; -}(TreeIterator)); +}(TreeIterator); + export { OrderedSetIterator }; -var OrderedSet = /** @class */ (function (_super) { - __extends(OrderedSet, _super); - function OrderedSet(container, cmp) { - if (container === void 0) { container = []; } - var _this = _super.call(this, cmp) || this; - _this.iterationFunc = function (curNode) { - return __generator(this, function (_a) { - switch (_a.label) { - case 0: - if (curNode === undefined) - return [2 /*return*/]; - return [5 /*yield**/, __values(this.iterationFunc(curNode.left))]; - case 1: - _a.sent(); - return [4 /*yield*/, curNode.key]; - case 2: - _a.sent(); - return [5 /*yield**/, __values(this.iterationFunc(curNode.right))]; - case 3: - _a.sent(); - return [2 /*return*/]; + +var OrderedSet = function(e) { + __extends(OrderedSet, e); + function OrderedSet(r, t, n) { + if (r === void 0) { + r = []; + } + var i = e.call(this, t, n) || this; + i.X = function(e) { + return __generator(this, (function(r) { + switch (r.label) { + case 0: + if (e === undefined) return [ 2 ]; + return [ 5, __values(this.X(e.Y)) ]; + + case 1: + r.sent(); + return [ 4, e.W ]; + + case 2: + r.sent(); + return [ 5, __values(this.X(e.Z)) ]; + + case 3: + r.sent(); + return [ 2 ]; } - }); + })); }; - container.forEach(function (element) { return _this.insert(element); }); - _this.iterationFunc = _this.iterationFunc.bind(_this); - return _this; + r.forEach((function(e) { + return i.insert(e); + })); + return i; } - OrderedSet.prototype.begin = function () { - return new OrderedSetIterator(this.header.left || this.header, this.header); + OrderedSet.prototype.begin = function() { + return new OrderedSetIterator(this.J.Y || this.J, this.J); }; - OrderedSet.prototype.end = function () { - return new OrderedSetIterator(this.header, this.header); + OrderedSet.prototype.end = function() { + return new OrderedSetIterator(this.J, this.J); }; - OrderedSet.prototype.rBegin = function () { - return new OrderedSetIterator(this.header.right || this.header, this.header, ContainerIterator.REVERSE); + OrderedSet.prototype.rBegin = function() { + return new OrderedSetIterator(this.J.Z || this.J, this.J, 1); }; - OrderedSet.prototype.rEnd = function () { - return new OrderedSetIterator(this.header, this.header, ContainerIterator.REVERSE); + OrderedSet.prototype.rEnd = function() { + return new OrderedSetIterator(this.J, this.J, 1); }; - OrderedSet.prototype.front = function () { - return this.header.left ? this.header.left.key : undefined; + OrderedSet.prototype.front = function() { + return this.J.Y ? this.J.Y.W : undefined; }; - OrderedSet.prototype.back = function () { - return this.header.right ? this.header.right.key : undefined; + OrderedSet.prototype.back = function() { + return this.J.Z ? this.J.Z.W : undefined; }; - OrderedSet.prototype.forEach = function (callback) { - var e_1, _a; - var index = 0; + OrderedSet.prototype.forEach = function(e) { + var r, t; + var n = 0; try { - for (var _b = __values(this), _c = _b.next(); !_c.done; _c = _b.next()) { - var element = _c.value; - callback(element, index++); + for (var i = __values(this), o = i.next(); !o.done; o = i.next()) { + var u = o.value; + e(u, n++); } - } - catch (e_1_1) { e_1 = { error: e_1_1 }; } - finally { + } catch (e) { + r = { + error: e + }; + } finally { try { - if (_c && !_c.done && (_a = _b.return)) _a.call(_b); + if (o && !o.done && (t = i.return)) t.call(i); + } finally { + if (r) throw r.error; } - finally { if (e_1) throw e_1.error; } } }; - OrderedSet.prototype.getElementByPos = function (pos) { - var e_2, _a; - checkWithinAccessParams(pos, 0, this.length - 1); - var res; - var index = 0; + OrderedSet.prototype.getElementByPos = function(e) { + var r, t; + if (e < 0 || e > this.o - 1) { + throw new RangeError; + } + var n; + var i = 0; try { - for (var _b = __values(this), _c = _b.next(); !_c.done; _c = _b.next()) { - var element = _c.value; - if (index === pos) { - res = element; + for (var o = __values(this), u = o.next(); !u.done; u = o.next()) { + var d = u.value; + if (i === e) { + n = d; + break; } - index += 1; + i += 1; } - } - catch (e_2_1) { e_2 = { error: e_2_1 }; } - finally { + } catch (e) { + r = { + error: e + }; + } finally { try { - if (_c && !_c.done && (_a = _b.return)) _a.call(_b); + if (u && !u.done && (t = o.return)) t.call(o); + } finally { + if (r) throw r.error; } - finally { if (e_2) throw e_2.error; } } - return res; - }; - /** - * @description Insert element to set. - * @param key The key want to insert. - * @param hint You can give an iterator hint to improve insertion efficiency. - */ - OrderedSet.prototype.insert = function (key, hint) { - this.set(key, undefined, hint); - }; - OrderedSet.prototype.find = function (element) { - var curNode = this.findElementNode(this.root, element); - if (curNode !== undefined) { - return new OrderedSetIterator(curNode, this.header); + return n; + }; + OrderedSet.prototype.insert = function(e, r) { + this.ir(e, undefined, r); + }; + OrderedSet.prototype.find = function(e) { + var r = this.ar(this.rr, e); + if (r !== undefined) { + return new OrderedSetIterator(r, this.J); } return this.end(); }; - OrderedSet.prototype.lowerBound = function (key) { - var resNode = this._lowerBound(this.root, key); - return new OrderedSetIterator(resNode, this.header); + OrderedSet.prototype.lowerBound = function(e) { + var r = this.$(this.rr, e); + return new OrderedSetIterator(r, this.J); }; - OrderedSet.prototype.upperBound = function (key) { - var resNode = this._upperBound(this.root, key); - return new OrderedSetIterator(resNode, this.header); + OrderedSet.prototype.upperBound = function(e) { + var r = this.er(this.rr, e); + return new OrderedSetIterator(r, this.J); }; - OrderedSet.prototype.reverseLowerBound = function (key) { - var resNode = this._reverseLowerBound(this.root, key); - return new OrderedSetIterator(resNode, this.header); + OrderedSet.prototype.reverseLowerBound = function(e) { + var r = this.tr(this.rr, e); + return new OrderedSetIterator(r, this.J); }; - OrderedSet.prototype.reverseUpperBound = function (key) { - var resNode = this._reverseUpperBound(this.root, key); - return new OrderedSetIterator(resNode, this.header); + OrderedSet.prototype.reverseUpperBound = function(e) { + var r = this.nr(this.rr, e); + return new OrderedSetIterator(r, this.J); }; - OrderedSet.prototype.union = function (other) { - var _this = this; - other.forEach(function (element) { return _this.insert(element); }); + OrderedSet.prototype.union = function(e) { + var r = this; + e.forEach((function(e) { + return r.insert(e); + })); }; - OrderedSet.prototype[Symbol.iterator] = function () { - return this.iterationFunc(this.root); + OrderedSet.prototype[Symbol.iterator] = function() { + return this.X(this.rr); }; return OrderedSet; -}(TreeContainer)); -export default OrderedSet; +}(TreeContainer); + +export default OrderedSet; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/index.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/index.js index 80ff2f29798835..1c46fae3b2669a 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/index.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/index.js @@ -1,14 +1,19 @@ export { default as Stack } from "./container/OtherContainer/Stack"; + export { default as Queue } from "./container/OtherContainer/Queue"; + export { default as PriorityQueue } from "./container/OtherContainer/PriorityQueue"; -export { default as Vector, VectorIterator } from "./container/SequentialContainer/Vector"; -export { default as LinkList, LinkListIterator } from "./container/SequentialContainer/LinkList"; -export { default as Deque, DequeIterator } from "./container/SequentialContainer/Deque"; -export { default as OrderedSet, OrderedSetIterator } from "./container/TreeContainer/OrderedSet"; -export { default as OrderedMap, OrderedMapIterator } from "./container/TreeContainer/OrderedMap"; + +export { default as Vector } from "./container/SequentialContainer/Vector"; + +export { default as LinkList } from "./container/SequentialContainer/LinkList"; + +export { default as Deque } from "./container/SequentialContainer/Deque"; + +export { default as OrderedSet } from "./container/TreeContainer/OrderedSet"; + +export { default as OrderedMap } from "./container/TreeContainer/OrderedMap"; + export { default as HashSet } from "./container/HashContainer/HashSet"; -export { default as HashMap } from "./container/HashContainer/HashMap"; -export { Container, ContainerIterator } from "./container/ContainerBase/index"; -export { default as SequentialContainer } from "./container/SequentialContainer/Base/index"; -export { default as TreeContainer } from "./container/TreeContainer/Base/index"; -export { default as HashContainer } from "./container/HashContainer/Base/index"; + +export { default as HashMap } from "./container/HashContainer/HashMap"; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/utils/checkParams.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/utils/checkParams.js deleted file mode 100644 index 21a5929258729b..00000000000000 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/esm/utils/checkParams.js +++ /dev/null @@ -1,12 +0,0 @@ -/** - * @description Check if access is out of bounds. - * @param pos The position want to access. - * @param lower The lower bound. - * @param upper The upper bound. - * @return Boolean about if access is out of bounds. - */ -export function checkWithinAccessParams(pos, lower, upper) { - if (pos < lower || pos > upper) { - throw new RangeError(); - } -} diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/umd/js-sdsl.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/umd/js-sdsl.js index 87238f16b5d742..aa070ddb13a9b8 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/umd/js-sdsl.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/umd/js-sdsl.js @@ -1,2968 +1,2752 @@ -(function (global, factory) { - typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : - typeof define === 'function' && define.amd ? define(['exports'], factory) : - (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.sdsl = {})); -})(this, (function (exports) { 'use strict'; - - /****************************************************************************** - Copyright (c) Microsoft Corporation. - - Permission to use, copy, modify, and/or distribute this software for any - purpose with or without fee is hereby granted. - - 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. - ***************************************************************************** */ - /* global Reflect, Promise */ - - var extendStatics = function(d, b) { - extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - return extendStatics(d, b); - }; - - function __extends(d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); - } - - function __generator(thisArg, body) { - var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; - return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; - function verb(n) { return function (v) { return step([n, v]); }; } - function step(op) { - if (f) throw new TypeError("Generator is already executing."); - while (_) try { - if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; - if (y = 0, t) op = [op[0] & 2, t.value]; - switch (op[0]) { - case 0: case 1: t = op; break; - case 4: _.label++; return { value: op[1], done: false }; - case 5: _.label++; y = op[1]; op = [0]; continue; - case 7: op = _.ops.pop(); _.trys.pop(); continue; - default: - if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } - if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } - if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } - if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } - if (t[2]) _.ops.pop(); - _.trys.pop(); continue; - } - op = body.call(thisArg, _); - } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } - if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; - } - } - - function __values(o) { - var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; - if (m) return m.call(o); - if (o && typeof o.length === "number") return { - next: function () { - if (o && i >= o.length) o = void 0; - return { value: o && o[i++], done: !o }; - } - }; - throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); - } - - function __read(o, n) { - var m = typeof Symbol === "function" && o[Symbol.iterator]; - if (!m) return o; - var i = m.call(o), r, ar = [], e; - try { - while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value); - } - catch (error) { e = { error: error }; } - finally { - try { - if (r && !r.done && (m = i["return"])) m.call(i); - } - finally { if (e) throw e.error; } - } - return ar; - } - - function __spreadArray(to, from, pack) { - if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) { - if (ar || !(i in from)) { - if (!ar) ar = Array.prototype.slice.call(from, 0, i); - ar[i] = from[i]; - } - } - return to.concat(ar || Array.prototype.slice.call(from)); +(function(t, i) { + typeof exports === "object" && typeof module !== "undefined" ? i(exports) : typeof define === "function" && define.amd ? define("sdsl", [ "exports" ], i) : (t = typeof globalThis !== "undefined" ? globalThis : t || self, + i(t.sdsl = {})); +})(this, (function(t) { + "use strict"; + var extendStatics = function(t, i) { + extendStatics = Object.setPrototypeOf || { + __proto__: [] + } instanceof Array && function(t, i) { + t.__proto__ = i; + } || function(t, i) { + for (var e in i) if (Object.prototype.hasOwnProperty.call(i, e)) t[e] = i[e]; + }; + return extendStatics(t, i); + }; + function __extends(t, i) { + if (typeof i !== "function" && i !== null) throw new TypeError("Class extends value " + String(i) + " is not a constructor or null"); + extendStatics(t, i); + function __() { + this.constructor = t; + } + t.prototype = i === null ? Object.create(i) : (__.prototype = i.prototype, new __); } + function __generator(t, i) { + var e = { + label: 0, + sent: function() { + if (s[0] & 1) throw s[1]; + return s[1]; + }, + trys: [], + ops: [] + }, r, n, s, h; + return h = { + next: verb(0), + throw: verb(1), + return: verb(2) + }, typeof Symbol === "function" && (h[Symbol.iterator] = function() { + return this; + }), h; + function verb(t) { + return function(i) { + return step([ t, i ]); + }; + } + function step(h) { + if (r) throw new TypeError("Generator is already executing."); + while (e) try { + if (r = 1, n && (s = h[0] & 2 ? n["return"] : h[0] ? n["throw"] || ((s = n["return"]) && s.call(n), + 0) : n.next) && !(s = s.call(n, h[1])).done) return s; + if (n = 0, s) h = [ h[0] & 2, s.value ]; + switch (h[0]) { + case 0: + case 1: + s = h; + break; - var ContainerIterator = /** @class */ (function () { - function ContainerIterator(iteratorType) { - if (iteratorType === void 0) { iteratorType = ContainerIterator.NORMAL; } - this.iteratorType = iteratorType; - } - ContainerIterator.NORMAL = false; - ContainerIterator.REVERSE = true; - return ContainerIterator; - }()); - var Base = /** @class */ (function () { - function Base() { - /** - * @description Container's size. - * @protected - */ - this.length = 0; - } - /** - * @return The size of the container. - */ - Base.prototype.size = function () { - return this.length; - }; - /** - * @return Boolean about if the container is empty. - */ - Base.prototype.empty = function () { - return this.length === 0; - }; - return Base; - }()); - var Container = /** @class */ (function (_super) { - __extends(Container, _super); - function Container() { - return _super !== null && _super.apply(this, arguments) || this; - } - return Container; - }(Base)); + case 4: + e.label++; + return { + value: h[1], + done: false + }; - var Stack = /** @class */ (function (_super) { - __extends(Stack, _super); - function Stack(container) { - if (container === void 0) { container = []; } - var _this = _super.call(this) || this; - _this.stack = []; - container.forEach(function (element) { return _this.push(element); }); - return _this; - } - Stack.prototype.clear = function () { - this.length = 0; - this.stack.length = 0; - }; - /** - * @description Insert element to stack's end. - */ - Stack.prototype.push = function (element) { - this.stack.push(element); - this.length += 1; - }; - /** - * @description Removes the end element. - */ - Stack.prototype.pop = function () { - this.stack.pop(); - if (this.length > 0) - this.length -= 1; - }; - /** - * @description Accesses the end element. - */ - Stack.prototype.top = function () { - return this.stack[this.length - 1]; - }; - return Stack; - }(Base)); + case 5: + e.label++; + n = h[1]; + h = [ 0 ]; + continue; - var SequentialContainer = /** @class */ (function (_super) { - __extends(SequentialContainer, _super); - function SequentialContainer() { - return _super !== null && _super.apply(this, arguments) || this; - } - return SequentialContainer; - }(Container)); + case 7: + h = e.ops.pop(); + e.trys.pop(); + continue; - /** - * @description Check if access is out of bounds. - * @param pos The position want to access. - * @param lower The lower bound. - * @param upper The upper bound. - * @return Boolean about if access is out of bounds. - */ - function checkWithinAccessParams(pos, lower, upper) { - if (pos < lower || pos > upper) { - throw new RangeError(); - } + default: + if (!(s = e.trys, s = s.length > 0 && s[s.length - 1]) && (h[0] === 6 || h[0] === 2)) { + e = 0; + continue; + } + if (h[0] === 3 && (!s || h[1] > s[0] && h[1] < s[3])) { + e.label = h[1]; + break; + } + if (h[0] === 6 && e.label < s[1]) { + e.label = s[1]; + s = h; + break; + } + if (s && e.label < s[2]) { + e.label = s[2]; + e.ops.push(h); + break; + } + if (s[2]) e.ops.pop(); + e.trys.pop(); + continue; + } + h = i.call(t, e); + } catch (t) { + h = [ 6, t ]; + n = 0; + } finally { + r = s = 0; + } + if (h[0] & 5) throw h[1]; + return { + value: h[0] ? h[1] : void 0, + done: true + }; + } + } + function __values(t) { + var i = typeof Symbol === "function" && Symbol.iterator, e = i && t[i], r = 0; + if (e) return e.call(t); + if (t && typeof t.length === "number") return { + next: function() { + if (t && r >= t.length) t = void 0; + return { + value: t && t[r++], + done: !t + }; + } + }; + throw new TypeError(i ? "Object is not iterable." : "Symbol.iterator is not defined."); + } + function __read(t, i) { + var e = typeof Symbol === "function" && t[Symbol.iterator]; + if (!e) return t; + var r = e.call(t), n, s = [], h; + try { + while ((i === void 0 || i-- > 0) && !(n = r.next()).done) s.push(n.value); + } catch (t) { + h = { + error: t + }; + } finally { + try { + if (n && !n.done && (e = r["return"])) e.call(r); + } finally { + if (h) throw h.error; + } + } + return s; } + function __spreadArray(t, i, e) { + if (e || arguments.length === 2) for (var r = 0, n = i.length, s; r < n; r++) { + if (s || !(r in i)) { + if (!s) s = Array.prototype.slice.call(i, 0, r); + s[r] = i[r]; + } + } + return t.concat(s || Array.prototype.slice.call(i)); + } + var i = function() { + function ContainerIterator(t) { + if (t === void 0) { + t = 0; + } + this.iteratorType = t; + } + return ContainerIterator; + }(); + var e = function() { + function Base() { + this.t = 0; + } + Base.prototype.size = function() { + return this.t; + }; + Base.prototype.empty = function() { + return this.t === 0; + }; + return Base; + }(); + var r = function(t) { + __extends(Container, t); + function Container() { + return t !== null && t.apply(this, arguments) || this; + } + return Container; + }(e); + var n = function(t) { + __extends(Stack, t); + function Stack(i) { + if (i === void 0) { + i = []; + } + var e = t.call(this) || this; + e.i = []; + i.forEach((function(t) { + return e.push(t); + })); + return e; + } + Stack.prototype.clear = function() { + this.t = 0; + this.i.length = 0; + }; + Stack.prototype.push = function(t) { + this.i.push(t); + this.t += 1; + }; + Stack.prototype.pop = function() { + this.i.pop(); + if (this.t > 0) this.t -= 1; + }; + Stack.prototype.top = function() { + return this.i[this.t - 1]; + }; + return Stack; + }(e); + var s = function(t) { + __extends(SequentialContainer, t); + function SequentialContainer() { + return t !== null && t.apply(this, arguments) || this; + } + return SequentialContainer; + }(r); + var h = function(t) { + __extends(RandomIterator, t); + function RandomIterator(i, e, r, n, s) { + var h = t.call(this, s) || this; + h.h = i; + h.u = e; + h.o = r; + h.v = n; + if (h.iteratorType === 0) { + h.pre = function() { + if (this.h === 0) { + throw new RangeError("Random iterator access denied!"); + } + this.h -= 1; + return this; + }; + h.next = function() { + if (this.h === this.u()) { + throw new RangeError("Random Iterator access denied!"); + } + this.h += 1; + return this; + }; + } else { + h.pre = function() { + if (this.h === this.u() - 1) { + throw new RangeError("Random iterator access denied!"); + } + this.h += 1; + return this; + }; + h.next = function() { + if (this.h === -1) { + throw new RangeError("Random iterator access denied!"); + } + this.h -= 1; + return this; + }; + } + return h; + } + Object.defineProperty(RandomIterator.prototype, "pointer", { + get: function() { + return this.o(this.h); + }, + set: function(t) { + this.v(this.h, t); + }, + enumerable: false, + configurable: true + }); + RandomIterator.prototype.equals = function(t) { + return this.h === t.h; + }; + return RandomIterator; + }(i); + var u = function(t) { + __extends(DequeIterator, t); + function DequeIterator() { + return t !== null && t.apply(this, arguments) || this; + } + DequeIterator.prototype.copy = function() { + return new DequeIterator(this.h, this.u, this.o, this.v, this.iteratorType); + }; + return DequeIterator; + }(h); + var f = function(t) { + __extends(Deque, t); + function Deque(i, e) { + if (i === void 0) { + i = []; + } + if (e === void 0) { + e = 1 << 12; + } + var r = t.call(this) || this; + r.l = 0; + r._ = 0; + r.L = 0; + r.p = 0; + r.O = 0; + r.k = []; + var n; + if ("size" in i) { + if (typeof i.size === "number") { + n = i.size; + } else { + n = i.size(); + } + } else if ("length" in i) { + n = i.length; + } else { + throw new RangeError("Can't get container's size!"); + } + r.S = e; + r.O = Math.max(Math.ceil(n / r.S), 1); + for (var s = 0; s < r.O; ++s) { + r.k.push(new Array(r.S)); + } + var h = Math.ceil(n / r.S); + r.l = r.L = (r.O >> 1) - (h >> 1); + r._ = r.p = r.S - n % r.S >> 1; + i.forEach((function(t) { + return r.pushBack(t); + })); + r.size = r.size.bind(r); + r.getElementByPos = r.getElementByPos.bind(r); + r.setElementByPos = r.setElementByPos.bind(r); + return r; + } + Deque.prototype.I = function() { + var t = []; + var i = Math.max(this.O >> 1, 1); + for (var e = 0; e < i; ++e) { + t[e] = new Array(this.S); + } + for (var e = this.l; e < this.O; ++e) { + t[t.length] = this.k[e]; + } + for (var e = 0; e < this.L; ++e) { + t[t.length] = this.k[e]; + } + t[t.length] = __spreadArray([], __read(this.k[this.L]), false); + this.l = i; + this.L = t.length - 1; + for (var e = 0; e < i; ++e) { + t[t.length] = new Array(this.S); + } + this.k = t; + this.O = t.length; + }; + Deque.prototype.g = function(t) { + var i = this._ + t + 1; + var e = i % this.S; + var r = e - 1; + var n = this.l + (i - e) / this.S; + if (e === 0) n -= 1; + n %= this.O; + if (r < 0) r += this.S; + return { + curNodeBucketIndex: n, + curNodePointerIndex: r + }; + }; + Deque.prototype.clear = function() { + this.k = [ [] ]; + this.O = 1; + this.l = this.L = this.t = 0; + this._ = this.p = this.S >> 1; + }; + Deque.prototype.front = function() { + return this.k[this.l][this._]; + }; + Deque.prototype.back = function() { + return this.k[this.L][this.p]; + }; + Deque.prototype.begin = function() { + return new u(0, this.size, this.getElementByPos, this.setElementByPos); + }; + Deque.prototype.end = function() { + return new u(this.t, this.size, this.getElementByPos, this.setElementByPos); + }; + Deque.prototype.rBegin = function() { + return new u(this.t - 1, this.size, this.getElementByPos, this.setElementByPos, 1); + }; + Deque.prototype.rEnd = function() { + return new u(-1, this.size, this.getElementByPos, this.setElementByPos, 1); + }; + Deque.prototype.pushBack = function(t) { + if (this.t) { + if (this.p < this.S - 1) { + this.p += 1; + } else if (this.L < this.O - 1) { + this.L += 1; + this.p = 0; + } else { + this.L = 0; + this.p = 0; + } + if (this.L === this.l && this.p === this._) this.I(); + } + this.t += 1; + this.k[this.L][this.p] = t; + }; + Deque.prototype.popBack = function() { + if (!this.t) return; + this.k[this.L][this.p] = undefined; + if (this.t !== 1) { + if (this.p > 0) { + this.p -= 1; + } else if (this.L > 0) { + this.L -= 1; + this.p = this.S - 1; + } else { + this.L = this.O - 1; + this.p = this.S - 1; + } + } + this.t -= 1; + }; + Deque.prototype.pushFront = function(t) { + if (this.t) { + if (this._ > 0) { + this._ -= 1; + } else if (this.l > 0) { + this.l -= 1; + this._ = this.S - 1; + } else { + this.l = this.O - 1; + this._ = this.S - 1; + } + if (this.l === this.L && this._ === this.p) this.I(); + } + this.t += 1; + this.k[this.l][this._] = t; + }; + Deque.prototype.popFront = function() { + if (!this.t) return; + this.k[this.l][this._] = undefined; + if (this.t !== 1) { + if (this._ < this.S - 1) { + this._ += 1; + } else if (this.l < this.O - 1) { + this.l += 1; + this._ = 0; + } else { + this.l = 0; + this._ = 0; + } + } + this.t -= 1; + }; + Deque.prototype.forEach = function(t) { + for (var i = 0; i < this.t; ++i) { + t(this.getElementByPos(i), i); + } + }; + Deque.prototype.getElementByPos = function(t) { + var i = this.g(t), e = i.curNodeBucketIndex, r = i.curNodePointerIndex; + return this.k[e][r]; + }; + Deque.prototype.setElementByPos = function(t, i) { + var e = this.g(t), r = e.curNodeBucketIndex, n = e.curNodePointerIndex; + this.k[r][n] = i; + }; + Deque.prototype.insert = function(t, i, e) { + if (e === void 0) { + e = 1; + } + if (t === 0) { + while (e--) this.pushFront(i); + } else if (t === this.t) { + while (e--) this.pushBack(i); + } else { + var r = []; + for (var n = t; n < this.t; ++n) { + r.push(this.getElementByPos(n)); + } + this.cut(t - 1); + for (var n = 0; n < e; ++n) this.pushBack(i); + for (var n = 0; n < r.length; ++n) this.pushBack(r[n]); + } + }; + Deque.prototype.cut = function(t) { + if (t < 0) { + this.clear(); + return; + } + var i = this.g(t), e = i.curNodeBucketIndex, r = i.curNodePointerIndex; + this.L = e; + this.p = r; + this.t = t + 1; + }; + Deque.prototype.eraseElementByPos = function(t) { + var i = this; + if (t === 0) this.popFront(); else if (t === this.t - 1) this.popBack(); else { + var e = []; + for (var r = t + 1; r < this.t; ++r) { + e.push(this.getElementByPos(r)); + } + this.cut(t); + this.popBack(); + e.forEach((function(t) { + return i.pushBack(t); + })); + } + }; + Deque.prototype.eraseElementByValue = function(t) { + if (!this.t) return; + var i = []; + for (var e = 0; e < this.t; ++e) { + var r = this.getElementByPos(e); + if (r !== t) i.push(r); + } + var n = i.length; + for (var e = 0; e < n; ++e) this.setElementByPos(e, i[e]); + this.cut(n - 1); + }; + Deque.prototype.eraseElementByIterator = function(t) { + var i = t.h; + this.eraseElementByPos(i); + t = t.next(); + return t; + }; + Deque.prototype.find = function(t) { + for (var i = 0; i < this.t; ++i) { + if (this.getElementByPos(i) === t) { + return new u(i, this.size, this.getElementByPos, this.setElementByPos); + } + } + return this.end(); + }; + Deque.prototype.reverse = function() { + var t = 0; + var i = this.t - 1; + while (t < i) { + var e = this.getElementByPos(t); + this.setElementByPos(t, this.getElementByPos(i)); + this.setElementByPos(i, e); + t += 1; + i -= 1; + } + }; + Deque.prototype.unique = function() { + if (this.t <= 1) return; + var t = 1; + var i = this.getElementByPos(0); + for (var e = 1; e < this.t; ++e) { + var r = this.getElementByPos(e); + if (r !== i) { + i = r; + this.setElementByPos(t++, r); + } + } + while (this.t > t) this.popBack(); + }; + Deque.prototype.sort = function(t) { + var i = []; + for (var e = 0; e < this.t; ++e) { + i.push(this.getElementByPos(e)); + } + i.sort(t); + for (var e = 0; e < this.t; ++e) this.setElementByPos(e, i[e]); + }; + Deque.prototype.shrinkToFit = function() { + if (!this.t) return; + var t = []; + this.forEach((function(i) { + return t.push(i); + })); + this.O = Math.max(Math.ceil(this.t / this.S), 1); + this.t = this.l = this.L = this._ = this.p = 0; + this.k = []; + for (var i = 0; i < this.O; ++i) { + this.k.push(new Array(this.S)); + } + for (var i = 0; i < t.length; ++i) this.pushBack(t[i]); + }; + Deque.prototype[Symbol.iterator] = function() { + return function() { + var t; + return __generator(this, (function(i) { + switch (i.label) { + case 0: + t = 0; + i.label = 1; + + case 1: + if (!(t < this.t)) return [ 3, 4 ]; + return [ 4, this.getElementByPos(t) ]; + + case 2: + i.sent(); + i.label = 3; + + case 3: + ++t; + return [ 3, 1 ]; + + case 4: + return [ 2 ]; + } + })); + }.bind(this)(); + }; + return Deque; + }(s); + var a = function(t) { + __extends(Queue, t); + function Queue(i) { + if (i === void 0) { + i = []; + } + var e = t.call(this) || this; + e.T = new f(i); + e.t = e.T.size(); + return e; + } + Queue.prototype.clear = function() { + this.T.clear(); + this.t = 0; + }; + Queue.prototype.push = function(t) { + this.T.pushBack(t); + this.t += 1; + }; + Queue.prototype.pop = function() { + this.T.popFront(); + if (this.t) this.t -= 1; + }; + Queue.prototype.front = function() { + return this.T.front(); + }; + return Queue; + }(e); + var o = function(t) { + __extends(PriorityQueue, t); + function PriorityQueue(i, e, r) { + if (i === void 0) { + i = []; + } + if (e === void 0) { + e = function(t, i) { + if (t > i) return -1; + if (t < i) return 1; + return 0; + }; + } + if (r === void 0) { + r = true; + } + var n = t.call(this) || this; + n.M = e; + if (Array.isArray(i)) { + n.q = r ? __spreadArray([], __read(i), false) : i; + } else { + n.q = []; + i.forEach((function(t) { + return n.q.push(t); + })); + } + n.t = n.q.length; + var s = n.t >> 1; + for (var h = n.t - 1 >> 1; h >= 0; --h) { + n.D(h, s); + } + return n; + } + PriorityQueue.prototype.m = function(t) { + var i = this.q[t]; + while (t > 0) { + var e = t - 1 >> 1; + var r = this.q[e]; + if (this.M(r, i) <= 0) break; + this.q[t] = r; + t = e; + } + this.q[t] = i; + }; + PriorityQueue.prototype.D = function(t, i) { + var e = this.q[t]; + while (t < i) { + var r = t << 1 | 1; + var n = r + 1; + var s = this.q[r]; + if (n < this.t && this.M(s, this.q[n]) > 0) { + r = n; + s = this.q[n]; + } + if (this.M(s, e) >= 0) break; + this.q[t] = s; + t = r; + } + this.q[t] = e; + }; + PriorityQueue.prototype.clear = function() { + this.t = 0; + this.q.length = 0; + }; + PriorityQueue.prototype.push = function(t) { + this.q.push(t); + this.m(this.t); + this.t += 1; + }; + PriorityQueue.prototype.pop = function() { + if (!this.t) return; + var t = this.q.pop(); + this.t -= 1; + if (this.t) { + this.q[0] = t; + this.D(0, this.t >> 1); + } + }; + PriorityQueue.prototype.top = function() { + return this.q[0]; + }; + PriorityQueue.prototype.find = function(t) { + return this.q.indexOf(t) >= 0; + }; + PriorityQueue.prototype.remove = function(t) { + var i = this.q.indexOf(t); + if (i < 0) return false; + if (i === 0) { + this.pop(); + } else if (i === this.t - 1) { + this.q.pop(); + this.t -= 1; + } else { + this.q.splice(i, 1, this.q.pop()); + this.t -= 1; + this.m(i); + this.D(i, this.t >> 1); + } + return true; + }; + PriorityQueue.prototype.updateItem = function(t) { + var i = this.q.indexOf(t); + if (i < 0) return false; + this.m(i); + this.D(i, this.t >> 1); + return true; + }; + PriorityQueue.prototype.toArray = function() { + return __spreadArray([], __read(this.q), false); + }; + return PriorityQueue; + }(e); + var c = function(t) { + __extends(VectorIterator, t); + function VectorIterator() { + return t !== null && t.apply(this, arguments) || this; + } + VectorIterator.prototype.copy = function() { + return new VectorIterator(this.h, this.u, this.o, this.v, this.iteratorType); + }; + return VectorIterator; + }(h); + var v = function(t) { + __extends(Vector, t); + function Vector(i, e) { + if (i === void 0) { + i = []; + } + if (e === void 0) { + e = true; + } + var r = t.call(this) || this; + if (Array.isArray(i)) { + r.C = e ? __spreadArray([], __read(i), false) : i; + r.t = i.length; + } else { + r.C = []; + i.forEach((function(t) { + return r.pushBack(t); + })); + } + r.size = r.size.bind(r); + r.getElementByPos = r.getElementByPos.bind(r); + r.setElementByPos = r.setElementByPos.bind(r); + return r; + } + Vector.prototype.clear = function() { + this.t = 0; + this.C.length = 0; + }; + Vector.prototype.begin = function() { + return new c(0, this.size, this.getElementByPos, this.setElementByPos); + }; + Vector.prototype.end = function() { + return new c(this.t, this.size, this.getElementByPos, this.setElementByPos); + }; + Vector.prototype.rBegin = function() { + return new c(this.t - 1, this.size, this.getElementByPos, this.setElementByPos, 1); + }; + Vector.prototype.rEnd = function() { + return new c(-1, this.size, this.getElementByPos, this.setElementByPos, 1); + }; + Vector.prototype.front = function() { + return this.C[0]; + }; + Vector.prototype.back = function() { + return this.C[this.t - 1]; + }; + Vector.prototype.forEach = function(t) { + for (var i = 0; i < this.t; ++i) { + t(this.C[i], i); + } + }; + Vector.prototype.getElementByPos = function(t) { + return this.C[t]; + }; + Vector.prototype.eraseElementByPos = function(t) { + this.C.splice(t, 1); + this.t -= 1; + }; + Vector.prototype.eraseElementByValue = function(t) { + var i = 0; + for (var e = 0; e < this.t; ++e) { + if (this.C[e] !== t) { + this.C[i++] = this.C[e]; + } + } + this.t = this.C.length = i; + }; + Vector.prototype.eraseElementByIterator = function(t) { + var i = t.h; + t = t.next(); + this.eraseElementByPos(i); + return t; + }; + Vector.prototype.pushBack = function(t) { + this.C.push(t); + this.t += 1; + }; + Vector.prototype.popBack = function() { + if (!this.t) return; + this.C.pop(); + this.t -= 1; + }; + Vector.prototype.setElementByPos = function(t, i) { + this.C[t] = i; + }; + Vector.prototype.insert = function(t, i, e) { + var r; + if (e === void 0) { + e = 1; + } + (r = this.C).splice.apply(r, __spreadArray([ t, 0 ], __read(new Array(e).fill(i)), false)); + this.t += e; + }; + Vector.prototype.find = function(t) { + for (var i = 0; i < this.t; ++i) { + if (this.C[i] === t) { + return new c(i, this.size, this.getElementByPos, this.getElementByPos); + } + } + return this.end(); + }; + Vector.prototype.reverse = function() { + this.C.reverse(); + }; + Vector.prototype.unique = function() { + var t = 1; + for (var i = 1; i < this.t; ++i) { + if (this.C[i] !== this.C[i - 1]) { + this.C[t++] = this.C[i]; + } + } + this.t = this.C.length = t; + }; + Vector.prototype.sort = function(t) { + this.C.sort(t); + }; + Vector.prototype[Symbol.iterator] = function() { + return function() { + return __generator(this, (function(t) { + switch (t.label) { + case 0: + return [ 5, __values(this.C) ]; + + case 1: + return [ 2, t.sent() ]; + } + })); + }.bind(this)(); + }; + return Vector; + }(s); + var d = function() { + function LinkNode(t) { + this.R = undefined; + this.V = undefined; + this.H = undefined; + this.R = t; + } + return LinkNode; + }(); + var l = function(t) { + __extends(LinkListIterator, t); + function LinkListIterator(i, e, r) { + var n = t.call(this, r) || this; + n.h = i; + n.N = e; + if (n.iteratorType === 0) { + n.pre = function() { + if (this.h.V === this.N) { + throw new RangeError("LinkList iterator access denied!"); + } + this.h = this.h.V; + return this; + }; + n.next = function() { + if (this.h === this.N) { + throw new RangeError("LinkList iterator access denied!"); + } + this.h = this.h.H; + return this; + }; + } else { + n.pre = function() { + if (this.h.H === this.N) { + throw new RangeError("LinkList iterator access denied!"); + } + this.h = this.h.H; + return this; + }; + n.next = function() { + if (this.h === this.N) { + throw new RangeError("LinkList iterator access denied!"); + } + this.h = this.h.V; + return this; + }; + } + return n; + } + Object.defineProperty(LinkListIterator.prototype, "pointer", { + get: function() { + if (this.h === this.N) { + throw new RangeError("LinkList iterator access denied!"); + } + return this.h.R; + }, + set: function(t) { + if (this.h === this.N) { + throw new RangeError("LinkList iterator access denied!"); + } + this.h.R = t; + }, + enumerable: false, + configurable: true + }); + LinkListIterator.prototype.equals = function(t) { + return this.h === t.h; + }; + LinkListIterator.prototype.copy = function() { + return new LinkListIterator(this.h, this.N, this.iteratorType); + }; + return LinkListIterator; + }(i); + var w = function(t) { + __extends(LinkList, t); + function LinkList(i) { + if (i === void 0) { + i = []; + } + var e = t.call(this) || this; + e.N = new d; + e.j = undefined; + e.P = undefined; + i.forEach((function(t) { + return e.pushBack(t); + })); + return e; + } + LinkList.prototype.clear = function() { + this.t = 0; + this.j = this.P = undefined; + this.N.V = this.N.H = undefined; + }; + LinkList.prototype.begin = function() { + return new l(this.j || this.N, this.N); + }; + LinkList.prototype.end = function() { + return new l(this.N, this.N); + }; + LinkList.prototype.rBegin = function() { + return new l(this.P || this.N, this.N, 1); + }; + LinkList.prototype.rEnd = function() { + return new l(this.N, this.N, 1); + }; + LinkList.prototype.front = function() { + return this.j ? this.j.R : undefined; + }; + LinkList.prototype.back = function() { + return this.P ? this.P.R : undefined; + }; + LinkList.prototype.forEach = function(t) { + if (!this.t) return; + var i = this.j; + var e = 0; + while (i !== this.N) { + t(i.R, e++); + i = i.H; + } + }; + LinkList.prototype.getElementByPos = function(t) { + var i = this.j; + while (t--) { + i = i.H; + } + return i.R; + }; + LinkList.prototype.eraseElementByPos = function(t) { + if (t === 0) this.popFront(); else if (t === this.t - 1) this.popBack(); else { + var i = this.j; + while (t--) { + i = i.H; + } + i = i; + var e = i.V; + var r = i.H; + r.V = e; + e.H = r; + this.t -= 1; + } + }; + LinkList.prototype.eraseElementByValue = function(t) { + while (this.j && this.j.R === t) this.popFront(); + while (this.P && this.P.R === t) this.popBack(); + if (!this.j) return; + var i = this.j; + while (i !== this.N) { + if (i.R === t) { + var e = i.V; + var r = i.H; + r.V = e; + e.H = r; + this.t -= 1; + } + i = i.H; + } + }; + LinkList.prototype.eraseElementByIterator = function(t) { + var i = t.h; + if (i === this.N) { + throw new RangeError("Invalid iterator"); + } + t = t.next(); + if (this.j === i) this.popFront(); else if (this.P === i) this.popBack(); else { + var e = i.V; + var r = i.H; + r.V = e; + e.H = r; + this.t -= 1; + } + return t; + }; + LinkList.prototype.pushBack = function(t) { + this.t += 1; + var i = new d(t); + if (!this.P) { + this.j = this.P = i; + this.N.H = this.j; + this.j.V = this.N; + } else { + this.P.H = i; + i.V = this.P; + this.P = i; + } + this.P.H = this.N; + this.N.V = this.P; + }; + LinkList.prototype.popBack = function() { + if (!this.P) return; + this.t -= 1; + if (this.j === this.P) { + this.j = this.P = undefined; + this.N.H = undefined; + } else { + this.P = this.P.V; + this.P.H = this.N; + } + this.N.V = this.P; + }; + LinkList.prototype.setElementByPos = function(t, i) { + var e = this.j; + while (t--) { + e = e.H; + } + e.R = i; + }; + LinkList.prototype.insert = function(t, i, e) { + if (e === void 0) { + e = 1; + } + if (e <= 0) return; + if (t === 0) { + while (e--) this.pushFront(i); + } else if (t === this.t) { + while (e--) this.pushBack(i); + } else { + var r = this.j; + for (var n = 1; n < t; ++n) { + r = r.H; + } + var s = r.H; + this.t += e; + while (e--) { + r.H = new d(i); + r.H.V = r; + r = r.H; + } + r.H = s; + s.V = r; + } + }; + LinkList.prototype.find = function(t) { + if (!this.j) return this.end(); + var i = this.j; + while (i !== this.N) { + if (i.R === t) { + return new l(i, this.N); + } + i = i.H; + } + return this.end(); + }; + LinkList.prototype.reverse = function() { + if (this.t <= 1) return; + var t = this.j; + var i = this.P; + var e = 0; + while (e << 1 < this.t) { + var r = t.R; + t.R = i.R; + i.R = r; + t = t.H; + i = i.V; + e += 1; + } + }; + LinkList.prototype.unique = function() { + if (this.t <= 1) return; + var t = this.j; + while (t !== this.N) { + var i = t; + while (i.H && i.R === i.H.R) { + i = i.H; + this.t -= 1; + } + t.H = i.H; + t.H.V = t; + t = t.H; + } + }; + LinkList.prototype.sort = function(t) { + if (this.t <= 1) return; + var i = []; + this.forEach((function(t) { + return i.push(t); + })); + i.sort(t); + var e = this.j; + i.forEach((function(t) { + e.R = t; + e = e.H; + })); + }; + LinkList.prototype.pushFront = function(t) { + this.t += 1; + var i = new d(t); + if (!this.j) { + this.j = this.P = i; + this.P.H = this.N; + this.N.V = this.P; + } else { + i.H = this.j; + this.j.V = i; + this.j = i; + } + this.N.H = this.j; + this.j.V = this.N; + }; + LinkList.prototype.popFront = function() { + if (!this.j) return; + this.t -= 1; + if (this.j === this.P) { + this.j = this.P = undefined; + this.N.V = this.P; + } else { + this.j = this.j.H; + this.j.V = this.N; + } + this.N.H = this.j; + }; + LinkList.prototype.merge = function(t) { + var i = this; + if (!this.j) { + t.forEach((function(t) { + return i.pushBack(t); + })); + return; + } + var e = this.j; + t.forEach((function(t) { + while (e && e !== i.N && e.R <= t) { + e = e.H; + } + if (e === i.N) { + i.pushBack(t); + e = i.P; + } else if (e === i.j) { + i.pushFront(t); + e = i.j; + } else { + i.t += 1; + var r = e.V; + r.H = new d(t); + r.H.V = r; + r.H.H = e; + e.V = r.H; + } + })); + }; + LinkList.prototype[Symbol.iterator] = function() { + return function() { + var t; + return __generator(this, (function(i) { + switch (i.label) { + case 0: + if (!this.j) return [ 2 ]; + t = this.j; + i.label = 1; + + case 1: + if (!(t !== this.N)) return [ 3, 3 ]; + return [ 4, t.R ]; + + case 2: + i.sent(); + t = t.H; + return [ 3, 1 ]; + + case 3: + return [ 2 ]; + } + })); + }.bind(this)(); + }; + return LinkList; + }(s); + var _ = function() { + function TreeNode(t, i) { + this.A = 1; + this.B = undefined; + this.R = undefined; + this.G = undefined; + this.J = undefined; + this.F = undefined; + this.B = t; + this.R = i; + } + TreeNode.prototype.pre = function() { + var t = this; + if (t.A === 1 && t.F.F === t) { + t = t.J; + } else if (t.G) { + t = t.G; + while (t.J) { + t = t.J; + } + } else { + var i = t.F; + while (i.G === t) { + t = i; + i = t.F; + } + t = i; + } + return t; + }; + TreeNode.prototype.next = function() { + var t = this; + if (t.J) { + t = t.J; + while (t.G) { + t = t.G; + } + return t; + } else { + var i = t.F; + while (i.J === t) { + t = i; + i = t.F; + } + if (t.J !== i) { + return i; + } else return t; + } + }; + TreeNode.prototype.rotateLeft = function() { + var t = this.F; + var i = this.J; + var e = i.G; + if (t.F === this) t.F = i; else if (t.G === this) t.G = i; else t.J = i; + i.F = t; + i.G = this; + this.F = i; + this.J = e; + if (e) e.F = this; + return i; + }; + TreeNode.prototype.rotateRight = function() { + var t = this.F; + var i = this.G; + var e = i.J; + if (t.F === this) t.F = i; else if (t.G === this) t.G = i; else t.J = i; + i.F = t; + i.J = this; + this.F = i; + this.G = e; + if (e) e.F = this; + return i; + }; + return TreeNode; + }(); + var y = function(t) { + __extends(TreeNodeEnableIndex, t); + function TreeNodeEnableIndex() { + var i = t !== null && t.apply(this, arguments) || this; + i.G = undefined; + i.J = undefined; + i.F = undefined; + i.K = 1; + return i; + } + TreeNodeEnableIndex.prototype.rotateLeft = function() { + var i = t.prototype.rotateLeft.call(this); + this.recount(); + i.recount(); + return i; + }; + TreeNodeEnableIndex.prototype.rotateRight = function() { + var i = t.prototype.rotateRight.call(this); + this.recount(); + i.recount(); + return i; + }; + TreeNodeEnableIndex.prototype.recount = function() { + this.K = 1; + if (this.G) this.K += this.G.K; + if (this.J) this.K += this.J.K; + }; + return TreeNodeEnableIndex; + }(_); + var L = function(t) { + __extends(TreeContainer, t); + function TreeContainer(i, e) { + if (i === void 0) { + i = function(t, i) { + if (t < i) return -1; + if (t > i) return 1; + return 0; + }; + } + if (e === void 0) { + e = false; + } + var r = t.call(this) || this; + r.U = undefined; + r.W = function(t, i) { + if (t === undefined) return false; + var e = r.W(t.G, i); + if (e) return true; + if (i(t)) return true; + return r.W(t.J, i); + }; + r.M = i; + if (e) { + r.X = y; + r.Y = function(t, i, e) { + var r = this.Z(t, i, e); + if (r) { + var n = r.F; + while (n !== this.N) { + n.K += 1; + n = n.F; + } + var s = this.$(r); + if (s) { + var h = s, u = h.parentNode, f = h.grandParent, a = h.curNode; + u.recount(); + f.recount(); + a.recount(); + } + } + }; + r.tt = function(t) { + var i = this.it(t); + while (i !== this.N) { + i.K -= 1; + i = i.F; + } + }; + } else { + r.X = _; + r.Y = function(t, i, e) { + var r = this.Z(t, i, e); + if (r) this.$(r); + }; + r.tt = r.it; + } + r.N = new r.X; + return r; + } + TreeContainer.prototype.et = function(t, i) { + var e; + while (t) { + var r = this.M(t.B, i); + if (r < 0) { + t = t.J; + } else if (r > 0) { + e = t; + t = t.G; + } else return t; + } + return e === undefined ? this.N : e; + }; + TreeContainer.prototype.rt = function(t, i) { + var e; + while (t) { + var r = this.M(t.B, i); + if (r <= 0) { + t = t.J; + } else { + e = t; + t = t.G; + } + } + return e === undefined ? this.N : e; + }; + TreeContainer.prototype.nt = function(t, i) { + var e; + while (t) { + var r = this.M(t.B, i); + if (r < 0) { + e = t; + t = t.J; + } else if (r > 0) { + t = t.G; + } else return t; + } + return e === undefined ? this.N : e; + }; + TreeContainer.prototype.st = function(t, i) { + var e; + while (t) { + var r = this.M(t.B, i); + if (r < 0) { + e = t; + t = t.J; + } else { + t = t.G; + } + } + return e === undefined ? this.N : e; + }; + TreeContainer.prototype.ht = function(t) { + while (true) { + var i = t.F; + if (i === this.N) return; + if (t.A === 1) { + t.A = 0; + return; + } + if (t === i.G) { + var e = i.J; + if (e.A === 1) { + e.A = 0; + i.A = 1; + if (i === this.U) { + this.U = i.rotateLeft(); + } else i.rotateLeft(); + } else { + if (e.J && e.J.A === 1) { + e.A = i.A; + i.A = 0; + e.J.A = 0; + if (i === this.U) { + this.U = i.rotateLeft(); + } else i.rotateLeft(); + return; + } else if (e.G && e.G.A === 1) { + e.A = 1; + e.G.A = 0; + e.rotateRight(); + } else { + e.A = 1; + t = i; + } + } + } else { + var e = i.G; + if (e.A === 1) { + e.A = 0; + i.A = 1; + if (i === this.U) { + this.U = i.rotateRight(); + } else i.rotateRight(); + } else { + if (e.G && e.G.A === 1) { + e.A = i.A; + i.A = 0; + e.G.A = 0; + if (i === this.U) { + this.U = i.rotateRight(); + } else i.rotateRight(); + return; + } else if (e.J && e.J.A === 1) { + e.A = 1; + e.J.A = 0; + e.rotateLeft(); + } else { + e.A = 1; + t = i; + } + } + } + } + }; + TreeContainer.prototype.it = function(t) { + var i, e; + if (this.t === 1) { + this.clear(); + return this.N; + } + var r = t; + while (r.G || r.J) { + if (r.J) { + r = r.J; + while (r.G) r = r.G; + } else { + r = r.G; + } + i = __read([ r.B, t.B ], 2), t.B = i[0], r.B = i[1]; + e = __read([ r.R, t.R ], 2), t.R = e[0], r.R = e[1]; + t = r; + } + if (this.N.G === r) { + this.N.G = r.F; + } else if (this.N.J === r) { + this.N.J = r.F; + } + this.ht(r); + var n = r.F; + if (r === n.G) { + n.G = undefined; + } else n.J = undefined; + this.t -= 1; + this.U.A = 0; + return n; + }; + TreeContainer.prototype.$ = function(t) { + while (true) { + var i = t.F; + if (i.A === 0) return; + var e = i.F; + if (i === e.G) { + var r = e.J; + if (r && r.A === 1) { + r.A = i.A = 0; + if (e === this.U) return; + e.A = 1; + t = e; + continue; + } else if (t === i.J) { + t.A = 0; + if (t.G) t.G.F = i; + if (t.J) t.J.F = e; + i.J = t.G; + e.G = t.J; + t.G = i; + t.J = e; + if (e === this.U) { + this.U = t; + this.N.F = t; + } else { + var n = e.F; + if (n.G === e) { + n.G = t; + } else n.J = t; + } + t.F = e.F; + i.F = t; + e.F = t; + e.A = 1; + return { + parentNode: i, + grandParent: e, + curNode: t + }; + } else { + i.A = 0; + if (e === this.U) { + this.U = e.rotateRight(); + } else e.rotateRight(); + e.A = 1; + } + } else { + var r = e.G; + if (r && r.A === 1) { + r.A = i.A = 0; + if (e === this.U) return; + e.A = 1; + t = e; + continue; + } else if (t === i.G) { + t.A = 0; + if (t.G) t.G.F = e; + if (t.J) t.J.F = i; + e.J = t.G; + i.G = t.J; + t.G = e; + t.J = i; + if (e === this.U) { + this.U = t; + this.N.F = t; + } else { + var n = e.F; + if (n.G === e) { + n.G = t; + } else n.J = t; + } + t.F = e.F; + i.F = t; + e.F = t; + e.A = 1; + return { + parentNode: i, + grandParent: e, + curNode: t + }; + } else { + i.A = 0; + if (e === this.U) { + this.U = e.rotateLeft(); + } else e.rotateLeft(); + e.A = 1; + } + } + return; + } + }; + TreeContainer.prototype.Z = function(t, i, e) { + if (this.U === undefined) { + this.t += 1; + this.U = new this.X(t, i); + this.U.A = 0; + this.U.F = this.N; + this.N.F = this.U; + this.N.G = this.U; + this.N.J = this.U; + return; + } + var r; + var n = this.N.G; + var s = this.M(n.B, t); + if (s === 0) { + n.R = i; + return; + } else if (s > 0) { + n.G = new this.X(t, i); + n.G.F = n; + r = n.G; + this.N.G = r; + } else { + var h = this.N.J; + var u = this.M(h.B, t); + if (u === 0) { + h.R = i; + return; + } else if (u < 0) { + h.J = new this.X(t, i); + h.J.F = h; + r = h.J; + this.N.J = r; + } else { + if (e !== undefined) { + var f = e.h; + if (f !== this.N) { + var a = this.M(f.B, t); + if (a === 0) { + f.R = i; + return; + } else if (a > 0) { + var o = f.pre(); + var c = this.M(o.B, t); + if (c === 0) { + o.R = i; + return; + } else if (c < 0) { + r = new this.X(t, i); + if (o.J === undefined) { + o.J = r; + r.F = o; + } else { + f.G = r; + r.F = f; + } + } + } + } + } + if (r === undefined) { + r = this.U; + while (true) { + var v = this.M(r.B, t); + if (v > 0) { + if (r.G === undefined) { + r.G = new this.X(t, i); + r.G.F = r; + r = r.G; + break; + } + r = r.G; + } else if (v < 0) { + if (r.J === undefined) { + r.J = new this.X(t, i); + r.J.F = r; + r = r.J; + break; + } + r = r.J; + } else { + r.R = i; + return; + } + } + } + } + } + this.t += 1; + return r; + }; + TreeContainer.prototype.clear = function() { + this.t = 0; + this.U = undefined; + this.N.F = undefined; + this.N.G = this.N.J = undefined; + }; + TreeContainer.prototype.updateKeyByIterator = function(t, i) { + var e = t.h; + if (e === this.N) { + throw new TypeError("Invalid iterator!"); + } + if (this.t === 1) { + e.B = i; + return true; + } + if (e === this.N.G) { + if (this.M(e.next().B, i) > 0) { + e.B = i; + return true; + } + return false; + } + if (e === this.N.J) { + if (this.M(e.pre().B, i) < 0) { + e.B = i; + return true; + } + return false; + } + var r = e.pre().B; + if (this.M(r, i) >= 0) return false; + var n = e.next().B; + if (this.M(n, i) <= 0) return false; + e.B = i; + return true; + }; + TreeContainer.prototype.eraseElementByPos = function(t) { + var i = this; + var e = 0; + this.W(this.U, (function(r) { + if (t === e) { + i.tt(r); + return true; + } + e += 1; + return false; + })); + }; + TreeContainer.prototype.ut = function(t, i) { + while (t) { + var e = this.M(t.B, i); + if (e < 0) { + t = t.J; + } else if (e > 0) { + t = t.G; + } else return t; + } + return t; + }; + TreeContainer.prototype.eraseElementByKey = function(t) { + if (!this.t) return; + var i = this.ut(this.U, t); + if (i === undefined) return; + this.tt(i); + }; + TreeContainer.prototype.eraseElementByIterator = function(t) { + var i = t.h; + if (i === this.N) { + throw new RangeError("Invalid iterator"); + } + if (i.J === undefined) { + t = t.next(); + } + this.tt(i); + return t; + }; + TreeContainer.prototype.getHeight = function() { + if (!this.t) return 0; + var traversal = function(t) { + if (!t) return 0; + return Math.max(traversal(t.G), traversal(t.J)) + 1; + }; + return traversal(this.U); + }; + return TreeContainer; + }(r); + var p = function(t) { + __extends(TreeIterator, t); + function TreeIterator(i, e, r) { + var n = t.call(this, r) || this; + n.h = i; + n.N = e; + if (n.iteratorType === 0) { + n.pre = function() { + if (this.h === this.N.G) { + throw new RangeError("Tree iterator access denied!"); + } + this.h = this.h.pre(); + return this; + }; + n.next = function() { + if (this.h === this.N) { + throw new RangeError("Tree iterator access denied!"); + } + this.h = this.h.next(); + return this; + }; + } else { + n.pre = function() { + if (this.h === this.N.J) { + throw new RangeError("Tree iterator access denied!"); + } + this.h = this.h.next(); + return this; + }; + n.next = function() { + if (this.h === this.N) { + throw new RangeError("Tree iterator access denied!"); + } + this.h = this.h.pre(); + return this; + }; + } + return n; + } + Object.defineProperty(TreeIterator.prototype, "index", { + get: function() { + var t = this.h; + var i = this.N.F; + if (t === this.N) { + if (i) { + return i.K - 1; + } + return 0; + } + var e = 0; + if (t.G) { + e += t.G.K; + } + while (t !== i) { + var r = t.F; + if (t === r.J) { + e += 1; + if (r.G) { + e += r.G.K; + } + } + t = r; + } + return e; + }, + enumerable: false, + configurable: true + }); + TreeIterator.prototype.equals = function(t) { + return this.h === t.h; + }; + return TreeIterator; + }(i); + var O = function(t) { + __extends(OrderedSetIterator, t); + function OrderedSetIterator() { + return t !== null && t.apply(this, arguments) || this; + } + Object.defineProperty(OrderedSetIterator.prototype, "pointer", { + get: function() { + if (this.h === this.N) { + throw new RangeError("OrderedSet iterator access denied!"); + } + return this.h.B; + }, + enumerable: false, + configurable: true + }); + OrderedSetIterator.prototype.copy = function() { + return new OrderedSetIterator(this.h, this.N, this.iteratorType); + }; + return OrderedSetIterator; + }(p); + var b = function(t) { + __extends(OrderedSet, t); + function OrderedSet(i, e, r) { + if (i === void 0) { + i = []; + } + var n = t.call(this, e, r) || this; + n.ft = function(t) { + return __generator(this, (function(i) { + switch (i.label) { + case 0: + if (t === undefined) return [ 2 ]; + return [ 5, __values(this.ft(t.G)) ]; + + case 1: + i.sent(); + return [ 4, t.B ]; + + case 2: + i.sent(); + return [ 5, __values(this.ft(t.J)) ]; + + case 3: + i.sent(); + return [ 2 ]; + } + })); + }; + i.forEach((function(t) { + return n.insert(t); + })); + return n; + } + OrderedSet.prototype.begin = function() { + return new O(this.N.G || this.N, this.N); + }; + OrderedSet.prototype.end = function() { + return new O(this.N, this.N); + }; + OrderedSet.prototype.rBegin = function() { + return new O(this.N.J || this.N, this.N, 1); + }; + OrderedSet.prototype.rEnd = function() { + return new O(this.N, this.N, 1); + }; + OrderedSet.prototype.front = function() { + return this.N.G ? this.N.G.B : undefined; + }; + OrderedSet.prototype.back = function() { + return this.N.J ? this.N.J.B : undefined; + }; + OrderedSet.prototype.forEach = function(t) { + var i, e; + var r = 0; + try { + for (var n = __values(this), s = n.next(); !s.done; s = n.next()) { + var h = s.value; + t(h, r++); + } + } catch (t) { + i = { + error: t + }; + } finally { + try { + if (s && !s.done && (e = n.return)) e.call(n); + } finally { + if (i) throw i.error; + } + } + }; + OrderedSet.prototype.getElementByPos = function(t) { + var i, e; + var r; + var n = 0; + try { + for (var s = __values(this), h = s.next(); !h.done; h = s.next()) { + var u = h.value; + if (n === t) { + r = u; + break; + } + n += 1; + } + } catch (t) { + i = { + error: t + }; + } finally { + try { + if (h && !h.done && (e = s.return)) e.call(s); + } finally { + if (i) throw i.error; + } + } + return r; + }; + OrderedSet.prototype.insert = function(t, i) { + this.Y(t, undefined, i); + }; + OrderedSet.prototype.find = function(t) { + var i = this.ut(this.U, t); + if (i !== undefined) { + return new O(i, this.N); + } + return this.end(); + }; + OrderedSet.prototype.lowerBound = function(t) { + var i = this.et(this.U, t); + return new O(i, this.N); + }; + OrderedSet.prototype.upperBound = function(t) { + var i = this.rt(this.U, t); + return new O(i, this.N); + }; + OrderedSet.prototype.reverseLowerBound = function(t) { + var i = this.nt(this.U, t); + return new O(i, this.N); + }; + OrderedSet.prototype.reverseUpperBound = function(t) { + var i = this.st(this.U, t); + return new O(i, this.N); + }; + OrderedSet.prototype.union = function(t) { + var i = this; + t.forEach((function(t) { + return i.insert(t); + })); + }; + OrderedSet.prototype[Symbol.iterator] = function() { + return this.ft(this.U); + }; + return OrderedSet; + }(L); + var k = function(t) { + __extends(OrderedMapIterator, t); + function OrderedMapIterator() { + return t !== null && t.apply(this, arguments) || this; + } + Object.defineProperty(OrderedMapIterator.prototype, "pointer", { + get: function() { + var t = this; + if (this.h === this.N) { + throw new RangeError("OrderedMap iterator access denied"); + } + return new Proxy([], { + get: function(i, e) { + if (e === "0") return t.h.B; else if (e === "1") return t.h.R; + }, + set: function(i, e, r) { + if (e !== "1") { + throw new TypeError("props must be 1"); + } + t.h.R = r; + return true; + } + }); + }, + enumerable: false, + configurable: true + }); + OrderedMapIterator.prototype.copy = function() { + return new OrderedMapIterator(this.h, this.N, this.iteratorType); + }; + return OrderedMapIterator; + }(p); + var S = function(t) { + __extends(OrderedMap, t); + function OrderedMap(i, e, r) { + if (i === void 0) { + i = []; + } + var n = t.call(this, e, r) || this; + n.ft = function(t) { + return __generator(this, (function(i) { + switch (i.label) { + case 0: + if (t === undefined) return [ 2 ]; + return [ 5, __values(this.ft(t.G)) ]; + + case 1: + i.sent(); + return [ 4, [ t.B, t.R ] ]; + + case 2: + i.sent(); + return [ 5, __values(this.ft(t.J)) ]; + + case 3: + i.sent(); + return [ 2 ]; + } + })); + }; + i.forEach((function(t) { + var i = __read(t, 2), e = i[0], r = i[1]; + return n.setElement(e, r); + })); + return n; + } + OrderedMap.prototype.begin = function() { + return new k(this.N.G || this.N, this.N); + }; + OrderedMap.prototype.end = function() { + return new k(this.N, this.N); + }; + OrderedMap.prototype.rBegin = function() { + return new k(this.N.J || this.N, this.N, 1); + }; + OrderedMap.prototype.rEnd = function() { + return new k(this.N, this.N, 1); + }; + OrderedMap.prototype.front = function() { + if (!this.t) return undefined; + var t = this.N.G; + return [ t.B, t.R ]; + }; + OrderedMap.prototype.back = function() { + if (!this.t) return undefined; + var t = this.N.J; + return [ t.B, t.R ]; + }; + OrderedMap.prototype.forEach = function(t) { + var i, e; + var r = 0; + try { + for (var n = __values(this), s = n.next(); !s.done; s = n.next()) { + var h = s.value; + t(h, r++); + } + } catch (t) { + i = { + error: t + }; + } finally { + try { + if (s && !s.done && (e = n.return)) e.call(n); + } finally { + if (i) throw i.error; + } + } + }; + OrderedMap.prototype.lowerBound = function(t) { + var i = this.et(this.U, t); + return new k(i, this.N); + }; + OrderedMap.prototype.upperBound = function(t) { + var i = this.rt(this.U, t); + return new k(i, this.N); + }; + OrderedMap.prototype.reverseLowerBound = function(t) { + var i = this.nt(this.U, t); + return new k(i, this.N); + }; + OrderedMap.prototype.reverseUpperBound = function(t) { + var i = this.st(this.U, t); + return new k(i, this.N); + }; + OrderedMap.prototype.setElement = function(t, i, e) { + this.Y(t, i, e); + }; + OrderedMap.prototype.find = function(t) { + var i = this.ut(this.U, t); + if (i !== undefined) { + return new k(i, this.N); + } + return this.end(); + }; + OrderedMap.prototype.getElementByKey = function(t) { + var i = this.ut(this.U, t); + return i ? i.R : undefined; + }; + OrderedMap.prototype.getElementByPos = function(t) { + var i, e; + var r; + var n = 0; + try { + for (var s = __values(this), h = s.next(); !h.done; h = s.next()) { + var u = h.value; + if (n === t) { + r = u; + break; + } + n += 1; + } + } catch (t) { + i = { + error: t + }; + } finally { + try { + if (h && !h.done && (e = s.return)) e.call(s); + } finally { + if (i) throw i.error; + } + } + return r; + }; + OrderedMap.prototype.union = function(t) { + var i = this; + t.forEach((function(t) { + var e = __read(t, 2), r = e[0], n = e[1]; + return i.setElement(r, n); + })); + }; + OrderedMap.prototype[Symbol.iterator] = function() { + return this.ft(this.U); + }; + return OrderedMap; + }(L); + var I = function(t) { + __extends(HashContainer, t); + function HashContainer(i, e) { + if (i === void 0) { + i = 16; + } + if (e === void 0) { + e = function(t) { + var i; + if (typeof t !== "string") { + i = JSON.stringify(t); + } else i = t; + var e = 0; + var r = i.length; + for (var n = 0; n < r; n++) { + var s = i.charCodeAt(n); + e = (e << 5) - e + s; + e |= 0; + } + return e >>> 0; + }; + } + var r = t.call(this) || this; + if (i < 16 || (i & i - 1) !== 0) { + throw new RangeError("InitBucketNum range error"); + } + r.O = r.ot = i; + r.ct = e; + return r; + } + HashContainer.prototype.clear = function() { + this.t = 0; + this.O = this.ot; + this.vt = []; + }; + return HashContainer; + }(e); + var g = function(t) { + __extends(HashSet, t); + function HashSet(i, e, r) { + if (i === void 0) { + i = []; + } + var n = t.call(this, e, r) || this; + n.vt = []; + i.forEach((function(t) { + return n.insert(t); + })); + return n; + } + HashSet.prototype.I = function() { + var t = this; + if (this.O >= 1073741824) return; + var i = []; + var e = this.O; + this.O <<= 1; + var r = Object.keys(this.vt); + var n = r.length; + var _loop_1 = function(n) { + var h = parseInt(r[n]); + var u = s.vt[h]; + var f = u.size(); + if (f === 0) return "continue"; + if (f === 1) { + var a = u.front(); + i[s.ct(a) & s.O - 1] = new v([ a ], false); + return "continue"; + } + var o = []; + var c = []; + u.forEach((function(i) { + var r = t.ct(i); + if ((r & e) === 0) { + o.push(i); + } else c.push(i); + })); + if (u instanceof b) { + if (o.length > 6) { + i[h] = new b(o); + } else { + i[h] = new v(o, false); + } + if (c.length > 6) { + i[h + e] = new b(c); + } else { + i[h + e] = new v(c, false); + } + } else { + i[h] = new v(o, false); + i[h + e] = new v(c, false); + } + }; + var s = this; + for (var h = 0; h < n; ++h) { + _loop_1(h); + } + this.vt = i; + }; + HashSet.prototype.forEach = function(t) { + var i = Object.values(this.vt); + var e = i.length; + var r = 0; + for (var n = 0; n < e; ++n) { + i[n].forEach((function(i) { + return t(i, r++); + })); + } + }; + HashSet.prototype.insert = function(t) { + var i = this.ct(t) & this.O - 1; + var e = this.vt[i]; + if (!e) { + this.vt[i] = new v([ t ], false); + this.t += 1; + } else { + var r = e.size(); + if (e instanceof v) { + if (!e.find(t).equals(e.end())) return; + e.pushBack(t); + if (r + 1 >= 8) { + if (this.O <= 64) { + this.t += 1; + this.I(); + return; + } + this.vt[i] = new b(e); + } + this.t += 1; + } else { + e.insert(t); + var n = e.size(); + this.t += n - r; + } + } + if (this.t > this.O * .75) { + this.I(); + } + }; + HashSet.prototype.eraseElementByKey = function(t) { + var i = this.ct(t) & this.O - 1; + var e = this.vt[i]; + if (!e) return; + var r = e.size(); + if (r === 0) return; + if (e instanceof v) { + e.eraseElementByValue(t); + var n = e.size(); + this.t += n - r; + } else { + e.eraseElementByKey(t); + var n = e.size(); + this.t += n - r; + if (n <= 6) { + this.vt[i] = new v(e); + } + } + }; + HashSet.prototype.find = function(t) { + var i = this.ct(t) & this.O - 1; + var e = this.vt[i]; + if (!e) return false; + return !e.find(t).equals(e.end()); + }; + HashSet.prototype[Symbol.iterator] = function() { + return function() { + var t, i, e, r, n, s, h, u; + var f, a; + return __generator(this, (function(o) { + switch (o.label) { + case 0: + t = Object.values(this.vt); + i = t.length; + e = 0; + o.label = 1; + + case 1: + if (!(e < i)) return [ 3, 10 ]; + r = t[e]; + o.label = 2; + + case 2: + o.trys.push([ 2, 7, 8, 9 ]); + n = (f = void 0, __values(r)), s = n.next(); + o.label = 3; + + case 3: + if (!!s.done) return [ 3, 6 ]; + h = s.value; + return [ 4, h ]; - var RandomIterator = /** @class */ (function (_super) { - __extends(RandomIterator, _super); - function RandomIterator(index, size, getElementByPos, setElementByPos, iteratorType) { - var _this = _super.call(this, iteratorType) || this; - _this.node = index; - _this.size = size; - _this.getElementByPos = getElementByPos; - _this.setElementByPos = setElementByPos; - if (_this.iteratorType === ContainerIterator.NORMAL) { - _this.pre = function () { - if (this.node === 0) { - throw new RangeError('Deque iterator access denied!'); - } - this.node -= 1; - return this; - }; - _this.next = function () { - if (this.node === this.size()) { - throw new RangeError('Deque Iterator access denied!'); - } - this.node += 1; - return this; - }; - } - else { - _this.pre = function () { - if (this.node === this.size() - 1) { - throw new RangeError('Deque iterator access denied!'); - } - this.node += 1; - return this; - }; - _this.next = function () { - if (this.node === -1) { - throw new RangeError('Deque iterator access denied!'); - } - this.node -= 1; - return this; - }; - } - return _this; - } - Object.defineProperty(RandomIterator.prototype, "pointer", { - get: function () { - checkWithinAccessParams(this.node, 0, this.size() - 1); - return this.getElementByPos(this.node); - }, - set: function (newValue) { - checkWithinAccessParams(this.node, 0, this.size() - 1); - this.setElementByPos(this.node, newValue); - }, - enumerable: false, - configurable: true - }); - RandomIterator.prototype.equals = function (obj) { - return this.node === obj.node; - }; - return RandomIterator; - }(ContainerIterator)); + case 4: + o.sent(); + o.label = 5; - var DequeIterator = /** @class */ (function (_super) { - __extends(DequeIterator, _super); - function DequeIterator() { - return _super !== null && _super.apply(this, arguments) || this; - } - DequeIterator.prototype.copy = function () { - return new DequeIterator(this.node, this.size, this.getElementByPos, this.setElementByPos, this.iteratorType); - }; - return DequeIterator; - }(RandomIterator)); - var Deque = /** @class */ (function (_super) { - __extends(Deque, _super); - function Deque(container, bucketSize) { - if (container === void 0) { container = []; } - if (bucketSize === void 0) { bucketSize = (1 << 12); } - var _this = _super.call(this) || this; - _this.first = 0; - _this.curFirst = 0; - _this.last = 0; - _this.curLast = 0; - _this.bucketNum = 0; - _this.map = []; - var _length; - if ('size' in container) { - if (typeof container.size === 'number') { - _length = container.size; - } - else { - _length = container.size(); - } - } - else if ('length' in container) { - _length = container.length; - } - else { - throw new RangeError('Can\'t get container\'s size!'); - } - _this.bucketSize = bucketSize; - _this.bucketNum = Math.max(Math.ceil(_length / _this.bucketSize), 1); - for (var i = 0; i < _this.bucketNum; ++i) { - _this.map.push(new Array(_this.bucketSize)); - } - var needBucketNum = Math.ceil(_length / _this.bucketSize); - _this.first = _this.last = (_this.bucketNum >> 1) - (needBucketNum >> 1); - _this.curFirst = _this.curLast = (_this.bucketSize - _length % _this.bucketSize) >> 1; - container.forEach(function (element) { return _this.pushBack(element); }); - _this.size = _this.size.bind(_this); - _this.getElementByPos = _this.getElementByPos.bind(_this); - _this.setElementByPos = _this.setElementByPos.bind(_this); - return _this; - } - /** - * @description Growth the Deque. - * @private - */ - Deque.prototype.reAllocate = function () { - var newMap = []; - var addBucketNum = Math.max(this.bucketNum >> 1, 1); - for (var i = 0; i < addBucketNum; ++i) { - newMap[i] = new Array(this.bucketSize); - } - for (var i = this.first; i < this.bucketNum; ++i) { - newMap[newMap.length] = this.map[i]; - } - for (var i = 0; i < this.last; ++i) { - newMap[newMap.length] = this.map[i]; - } - newMap[newMap.length] = __spreadArray([], __read(this.map[this.last]), false); - this.first = addBucketNum; - this.last = newMap.length - 1; - for (var i = 0; i < addBucketNum; ++i) { - newMap[newMap.length] = new Array(this.bucketSize); - } - this.map = newMap; - this.bucketNum = newMap.length; - }; - /** - * @description Get the bucket position of the element and the pointer position by index. - * @param pos The element's index. - * @private - */ - Deque.prototype.getElementIndex = function (pos) { - var offset = this.curFirst + pos + 1; - var offsetRemainder = offset % this.bucketSize; - var curNodePointerIndex = offsetRemainder - 1; - var curNodeBucketIndex = this.first + (offset - offsetRemainder) / this.bucketSize; - if (offsetRemainder === 0) - curNodeBucketIndex -= 1; - curNodeBucketIndex %= this.bucketNum; - if (curNodePointerIndex < 0) - curNodePointerIndex += this.bucketSize; - return { curNodeBucketIndex: curNodeBucketIndex, curNodePointerIndex: curNodePointerIndex }; - }; - Deque.prototype.clear = function () { - this.map = [[]]; - this.bucketNum = 1; - this.first = this.last = this.length = 0; - this.curFirst = this.curLast = this.bucketSize >> 1; - }; - Deque.prototype.front = function () { - return this.map[this.first][this.curFirst]; - }; - Deque.prototype.back = function () { - return this.map[this.last][this.curLast]; - }; - Deque.prototype.begin = function () { - return new DequeIterator(0, this.size, this.getElementByPos, this.setElementByPos); - }; - Deque.prototype.end = function () { - return new DequeIterator(this.length, this.size, this.getElementByPos, this.setElementByPos); - }; - Deque.prototype.rBegin = function () { - return new DequeIterator(this.length - 1, this.size, this.getElementByPos, this.setElementByPos, ContainerIterator.REVERSE); - }; - Deque.prototype.rEnd = function () { - return new DequeIterator(-1, this.size, this.getElementByPos, this.setElementByPos, ContainerIterator.REVERSE); - }; - Deque.prototype.pushBack = function (element) { - if (this.length) { - if (this.curLast < this.bucketSize - 1) { - this.curLast += 1; - } - else if (this.last < this.bucketNum - 1) { - this.last += 1; - this.curLast = 0; - } - else { - this.last = 0; - this.curLast = 0; - } - if (this.last === this.first && - this.curLast === this.curFirst) - this.reAllocate(); - } - this.length += 1; - this.map[this.last][this.curLast] = element; - }; - Deque.prototype.popBack = function () { - if (!this.length) - return; - this.map[this.last][this.curLast] = undefined; - if (this.length !== 1) { - if (this.curLast > 0) { - this.curLast -= 1; - } - else if (this.last > 0) { - this.last -= 1; - this.curLast = this.bucketSize - 1; - } - else { - this.last = this.bucketNum - 1; - this.curLast = this.bucketSize - 1; - } - } - this.length -= 1; - }; - /** - * @description Push the element to the front. - * @param element The element you want to push. - */ - Deque.prototype.pushFront = function (element) { - if (this.length) { - if (this.curFirst > 0) { - this.curFirst -= 1; - } - else if (this.first > 0) { - this.first -= 1; - this.curFirst = this.bucketSize - 1; - } - else { - this.first = this.bucketNum - 1; - this.curFirst = this.bucketSize - 1; - } - if (this.first === this.last && - this.curFirst === this.curLast) - this.reAllocate(); - } - this.length += 1; - this.map[this.first][this.curFirst] = element; - }; - /** - * @description Remove the first element. - */ - Deque.prototype.popFront = function () { - if (!this.length) - return; - this.map[this.first][this.curFirst] = undefined; - if (this.length !== 1) { - if (this.curFirst < this.bucketSize - 1) { - this.curFirst += 1; - } - else if (this.first < this.bucketNum - 1) { - this.first += 1; - this.curFirst = 0; - } - else { - this.first = 0; - this.curFirst = 0; - } - } - this.length -= 1; - }; - Deque.prototype.forEach = function (callback) { - for (var i = 0; i < this.length; ++i) { - callback(this.getElementByPos(i), i); - } - }; - Deque.prototype.getElementByPos = function (pos) { - checkWithinAccessParams(pos, 0, this.length - 1); - var _a = this.getElementIndex(pos), curNodeBucketIndex = _a.curNodeBucketIndex, curNodePointerIndex = _a.curNodePointerIndex; - return this.map[curNodeBucketIndex][curNodePointerIndex]; - }; - Deque.prototype.setElementByPos = function (pos, element) { - checkWithinAccessParams(pos, 0, this.length - 1); - var _a = this.getElementIndex(pos), curNodeBucketIndex = _a.curNodeBucketIndex, curNodePointerIndex = _a.curNodePointerIndex; - this.map[curNodeBucketIndex][curNodePointerIndex] = element; - }; - Deque.prototype.insert = function (pos, element, num) { - if (num === void 0) { num = 1; } - checkWithinAccessParams(pos, 0, this.length); - if (pos === 0) { - while (num--) - this.pushFront(element); - } - else if (pos === this.length) { - while (num--) - this.pushBack(element); - } - else { - var arr = []; - for (var i = pos; i < this.length; ++i) { - arr.push(this.getElementByPos(i)); - } - this.cut(pos - 1); - for (var i = 0; i < num; ++i) - this.pushBack(element); - for (var i = 0; i < arr.length; ++i) - this.pushBack(arr[i]); - } - }; - /** - * @description Remove all elements after the specified position (excluding the specified position). - * @param pos The previous position of the first removed element. - * @example deque.cut(1); // Then deque's size will be 2. deque -> [0, 1] - */ - Deque.prototype.cut = function (pos) { - if (pos < 0) { - this.clear(); - return; - } - var _a = this.getElementIndex(pos), curNodeBucketIndex = _a.curNodeBucketIndex, curNodePointerIndex = _a.curNodePointerIndex; - this.last = curNodeBucketIndex; - this.curLast = curNodePointerIndex; - this.length = pos + 1; - }; - Deque.prototype.eraseElementByPos = function (pos) { - var _this = this; - checkWithinAccessParams(pos, 0, this.length - 1); - if (pos === 0) - this.popFront(); - else if (pos === this.length - 1) - this.popBack(); - else { - var arr = []; - for (var i = pos + 1; i < this.length; ++i) { - arr.push(this.getElementByPos(i)); - } - this.cut(pos); - this.popBack(); - arr.forEach(function (element) { return _this.pushBack(element); }); - } - }; - Deque.prototype.eraseElementByValue = function (value) { - if (!this.length) - return; - var arr = []; - for (var i = 0; i < this.length; ++i) { - var element = this.getElementByPos(i); - if (element !== value) - arr.push(element); - } - var _length = arr.length; - for (var i = 0; i < _length; ++i) - this.setElementByPos(i, arr[i]); - this.cut(_length - 1); - }; - Deque.prototype.eraseElementByIterator = function (iter) { - // @ts-ignore - var node = iter.node; - this.eraseElementByPos(node); - iter = iter.next(); - return iter; - }; - Deque.prototype.find = function (element) { - for (var i = 0; i < this.length; ++i) { - if (this.getElementByPos(i) === element) { - return new DequeIterator(i, this.size, this.getElementByPos, this.setElementByPos); - } - } - return this.end(); - }; - Deque.prototype.reverse = function () { - var l = 0; - var r = this.length - 1; - while (l < r) { - var tmp = this.getElementByPos(l); - this.setElementByPos(l, this.getElementByPos(r)); - this.setElementByPos(r, tmp); - l += 1; - r -= 1; - } - }; - Deque.prototype.unique = function () { - if (this.length <= 1) - return; - var index = 1; - var pre = this.getElementByPos(0); - for (var i = 1; i < this.length; ++i) { - var cur = this.getElementByPos(i); - if (cur !== pre) { - pre = cur; - this.setElementByPos(index++, cur); - } - } - while (this.length > index) - this.popBack(); - }; - Deque.prototype.sort = function (cmp) { - var arr = []; - for (var i = 0; i < this.length; ++i) { - arr.push(this.getElementByPos(i)); - } - arr.sort(cmp); - for (var i = 0; i < this.length; ++i) - this.setElementByPos(i, arr[i]); - }; - /** - * @description Remove as much useless space as possible. - */ - Deque.prototype.shrinkToFit = function () { - if (!this.length) - return; - var arr = []; - this.forEach(function (element) { return arr.push(element); }); - this.bucketNum = Math.max(Math.ceil(this.length / this.bucketSize), 1); - this.length = this.first = this.last = this.curFirst = this.curLast = 0; - this.map = []; - for (var i = 0; i < this.bucketNum; ++i) { - this.map.push(new Array(this.bucketSize)); - } - for (var i = 0; i < arr.length; ++i) - this.pushBack(arr[i]); - }; - Deque.prototype[Symbol.iterator] = function () { - return function () { - var i; - return __generator(this, function (_a) { - switch (_a.label) { - case 0: - i = 0; - _a.label = 1; - case 1: - if (!(i < this.length)) return [3 /*break*/, 4]; - return [4 /*yield*/, this.getElementByPos(i)]; - case 2: - _a.sent(); - _a.label = 3; - case 3: - ++i; - return [3 /*break*/, 1]; - case 4: return [2 /*return*/]; - } - }); - }.bind(this)(); - }; - return Deque; - }(SequentialContainer)); + case 5: + s = n.next(); + return [ 3, 3 ]; - var Queue = /** @class */ (function (_super) { - __extends(Queue, _super); - function Queue(container) { - if (container === void 0) { container = []; } - var _this = _super.call(this) || this; - _this.queue = new Deque(container); - _this.length = _this.queue.size(); - return _this; - } - Queue.prototype.clear = function () { - this.queue.clear(); - this.length = 0; - }; - /** - * @description Inserts element to queue's end. - */ - Queue.prototype.push = function (element) { - this.queue.pushBack(element); - this.length += 1; - }; - /** - * @description Removes the first element. - */ - Queue.prototype.pop = function () { - this.queue.popFront(); - if (this.length) - this.length -= 1; - }; - /** - * @description Access the first element. - */ - Queue.prototype.front = function () { - return this.queue.front(); - }; - return Queue; - }(Base)); + case 6: + return [ 3, 9 ]; - var PriorityQueue = /** @class */ (function (_super) { - __extends(PriorityQueue, _super); - /** - * @description PriorityQueue's constructor. - * @param container Initialize container, must have a forEach function. - * @param cmp Compare function. - * @param copy When the container is an array, you can choose to directly operate on the original object of - * the array or perform a shallow copy. The default is shallow copy. - */ - function PriorityQueue(container, cmp, copy) { - var _a; - if (container === void 0) { container = []; } - if (cmp === void 0) { cmp = function (x, y) { - if (x > y) - return -1; - if (x < y) - return 1; - return 0; - }; } - if (copy === void 0) { copy = true; } - var _this = _super.call(this) || this; - _this.cmp = cmp; - if (Array.isArray(container)) { - _this.priorityQueue = copy ? __spreadArray([], __read(container), false) : container; - } - else { - _this.priorityQueue = []; - container.forEach(function (element) { return _this.priorityQueue.push(element); }); - } - _this.length = _this.priorityQueue.length; - for (var parent_1 = (_this.length - 1) >> 1; parent_1 >= 0; --parent_1) { - var curParent = parent_1; - var curChild = (curParent << 1) | 1; - while (curChild < _this.length) { - var left = curChild; - var right = left + 1; - var minChild = left; - if (right < _this.length && - _this.cmp(_this.priorityQueue[left], _this.priorityQueue[right]) > 0) { - minChild = right; - } - if (_this.cmp(_this.priorityQueue[curParent], _this.priorityQueue[minChild]) <= 0) - break; - _a = __read([_this.priorityQueue[minChild], _this.priorityQueue[curParent]], 2), _this.priorityQueue[curParent] = _a[0], _this.priorityQueue[minChild] = _a[1]; - curParent = minChild; - curChild = (curParent << 1) | 1; - } - } - return _this; - } - /** - * @description Adjusting parent's children to suit the nature of the heap. - * @param parent Parent's index. - * @private - */ - PriorityQueue.prototype.adjust = function (parent) { - var _a, _b; - var left = (parent << 1) | 1; - var right = (parent << 1) + 2; - if (left < this.length && - this.cmp(this.priorityQueue[parent], this.priorityQueue[left]) > 0) { - _a = __read([this.priorityQueue[left], this.priorityQueue[parent]], 2), this.priorityQueue[parent] = _a[0], this.priorityQueue[left] = _a[1]; - } - if (right < this.length && - this.cmp(this.priorityQueue[parent], this.priorityQueue[right]) > 0) { - _b = __read([this.priorityQueue[right], this.priorityQueue[parent]], 2), this.priorityQueue[parent] = _b[0], this.priorityQueue[right] = _b[1]; - } - }; - PriorityQueue.prototype.clear = function () { - this.length = 0; - this.priorityQueue.length = 0; - }; - /** - * @description Push element into a container in order. - * @param element The element you want to push. - */ - PriorityQueue.prototype.push = function (element) { - this.priorityQueue.push(element); - this.length += 1; - if (this.length === 1) - return; - var curNode = this.length - 1; - while (curNode > 0) { - var parent_2 = (curNode - 1) >> 1; - if (this.cmp(this.priorityQueue[parent_2], element) <= 0) - break; - this.adjust(parent_2); - curNode = parent_2; - } - }; - /** - * @description Removes the top element. - */ - PriorityQueue.prototype.pop = function () { - if (!this.length) - return; - var last = this.priorityQueue[this.length - 1]; - this.length -= 1; - var parent = 0; - while (parent < this.length) { - var left = (parent << 1) | 1; - var right = (parent << 1) + 2; - if (left >= this.length) - break; - var minChild = left; - if (right < this.length && - this.cmp(this.priorityQueue[left], this.priorityQueue[right]) > 0) { - minChild = right; - } - if (this.cmp(this.priorityQueue[minChild], last) >= 0) - break; - this.priorityQueue[parent] = this.priorityQueue[minChild]; - parent = minChild; - } - this.priorityQueue[parent] = last; - this.priorityQueue.pop(); - }; - /** - * @description Accesses the top element. - */ - PriorityQueue.prototype.top = function () { - return this.priorityQueue[0]; - }; - return PriorityQueue; - }(Base)); + case 7: + u = o.sent(); + f = { + error: u + }; + return [ 3, 9 ]; - var VectorIterator = /** @class */ (function (_super) { - __extends(VectorIterator, _super); - function VectorIterator() { - return _super !== null && _super.apply(this, arguments) || this; - } - VectorIterator.prototype.copy = function () { - return new VectorIterator(this.node, this.size, this.getElementByPos, this.setElementByPos, this.iteratorType); - }; - return VectorIterator; - }(RandomIterator)); - var Vector = /** @class */ (function (_super) { - __extends(Vector, _super); - /** - * @description Vector's constructor. - * @param container Initialize container, must have a forEach function. - * @param copy When the container is an array, you can choose to directly operate on the original object of - * the array or perform a shallow copy. The default is shallow copy. - */ - function Vector(container, copy) { - if (container === void 0) { container = []; } - if (copy === void 0) { copy = true; } - var _this = _super.call(this) || this; - if (Array.isArray(container)) { - _this.vector = copy ? __spreadArray([], __read(container), false) : container; - _this.length = container.length; - } - else { - _this.vector = []; - container.forEach(function (element) { return _this.pushBack(element); }); - } - _this.size = _this.size.bind(_this); - _this.getElementByPos = _this.getElementByPos.bind(_this); - _this.setElementByPos = _this.setElementByPos.bind(_this); - return _this; - } - Vector.prototype.clear = function () { - this.length = 0; - this.vector.length = 0; - }; - Vector.prototype.begin = function () { - return new VectorIterator(0, this.size, this.getElementByPos, this.setElementByPos); - }; - Vector.prototype.end = function () { - return new VectorIterator(this.length, this.size, this.getElementByPos, this.setElementByPos); - }; - Vector.prototype.rBegin = function () { - return new VectorIterator(this.length - 1, this.size, this.getElementByPos, this.setElementByPos, ContainerIterator.REVERSE); - }; - Vector.prototype.rEnd = function () { - return new VectorIterator(-1, this.size, this.getElementByPos, this.setElementByPos, ContainerIterator.REVERSE); - }; - Vector.prototype.front = function () { - return this.vector[0]; - }; - Vector.prototype.back = function () { - return this.vector[this.length - 1]; - }; - Vector.prototype.forEach = function (callback) { - for (var i = 0; i < this.length; ++i) { - callback(this.vector[i], i); - } - }; - Vector.prototype.getElementByPos = function (pos) { - checkWithinAccessParams(pos, 0, this.length - 1); - return this.vector[pos]; - }; - Vector.prototype.eraseElementByPos = function (pos) { - checkWithinAccessParams(pos, 0, this.length - 1); - this.vector.splice(pos, 1); - this.length -= 1; - }; - Vector.prototype.eraseElementByValue = function (value) { - var index = 0; - for (var i = 0; i < this.length; ++i) { - if (this.vector[i] !== value) { - this.vector[index++] = this.vector[i]; - } - } - this.length = this.vector.length = index; - }; - Vector.prototype.eraseElementByIterator = function (iter) { - // @ts-ignore - var node = iter.node; - iter = iter.next(); - this.eraseElementByPos(node); - return iter; - }; - Vector.prototype.pushBack = function (element) { - this.vector.push(element); - this.length += 1; - }; - Vector.prototype.popBack = function () { - if (!this.length) - return; - this.vector.pop(); - this.length -= 1; - }; - Vector.prototype.setElementByPos = function (pos, element) { - checkWithinAccessParams(pos, 0, this.length - 1); - this.vector[pos] = element; - }; - Vector.prototype.insert = function (pos, element, num) { - var _a; - if (num === void 0) { num = 1; } - checkWithinAccessParams(pos, 0, this.length); - (_a = this.vector).splice.apply(_a, __spreadArray([pos, 0], __read(new Array(num).fill(element)), false)); - this.length += num; - }; - Vector.prototype.find = function (element) { - for (var i = 0; i < this.length; ++i) { - if (this.vector[i] === element) { - return new VectorIterator(i, this.size, this.getElementByPos, this.getElementByPos); - } - } - return this.end(); - }; - Vector.prototype.reverse = function () { - this.vector.reverse(); - }; - Vector.prototype.unique = function () { - var index = 1; - for (var i = 1; i < this.length; ++i) { - if (this.vector[i] !== this.vector[i - 1]) { - this.vector[index++] = this.vector[i]; - } - } - this.length = this.vector.length = index; - }; - Vector.prototype.sort = function (cmp) { - this.vector.sort(cmp); - }; - Vector.prototype[Symbol.iterator] = function () { - return function () { - return __generator(this, function (_a) { - switch (_a.label) { - case 0: return [5 /*yield**/, __values(this.vector)]; - case 1: return [2 /*return*/, _a.sent()]; - } - }); - }.bind(this)(); - }; - return Vector; - }(SequentialContainer)); + case 8: + try { + if (s && !s.done && (a = n.return)) a.call(n); + } finally { + if (f) throw f.error; + } + return [ 7 ]; - var LinkNode = /** @class */ (function () { - function LinkNode(element) { - this.value = undefined; - this.pre = undefined; - this.next = undefined; - this.value = element; - } - return LinkNode; - }()); - var LinkListIterator = /** @class */ (function (_super) { - __extends(LinkListIterator, _super); - function LinkListIterator(node, header, iteratorType) { - var _this = _super.call(this, iteratorType) || this; - _this.node = node; - _this.header = header; - if (_this.iteratorType === ContainerIterator.NORMAL) { - _this.pre = function () { - if (this.node.pre === this.header) { - throw new RangeError('LinkList iterator access denied!'); - } - this.node = this.node.pre; - return this; - }; - _this.next = function () { - if (this.node === this.header) { - throw new RangeError('LinkList iterator access denied!'); - } - this.node = this.node.next; - return this; - }; - } - else { - _this.pre = function () { - if (this.node.next === this.header) { - throw new RangeError('LinkList iterator access denied!'); - } - this.node = this.node.next; - return this; - }; - _this.next = function () { - if (this.node === this.header) { - throw new RangeError('LinkList iterator access denied!'); - } - this.node = this.node.pre; - return this; - }; - } - return _this; - } - Object.defineProperty(LinkListIterator.prototype, "pointer", { - get: function () { - if (this.node === this.header) { - throw new RangeError('LinkList iterator access denied!'); - } - return this.node.value; - }, - set: function (newValue) { - if (this.node === this.header) { - throw new RangeError('LinkList iterator access denied!'); - } - this.node.value = newValue; - }, - enumerable: false, - configurable: true - }); - LinkListIterator.prototype.equals = function (obj) { - return this.node === obj.node; - }; - LinkListIterator.prototype.copy = function () { - return new LinkListIterator(this.node, this.header, this.iteratorType); - }; - return LinkListIterator; - }(ContainerIterator)); - var LinkList = /** @class */ (function (_super) { - __extends(LinkList, _super); - function LinkList(container) { - if (container === void 0) { container = []; } - var _this = _super.call(this) || this; - _this.header = new LinkNode(); - _this.head = undefined; - _this.tail = undefined; - container.forEach(function (element) { return _this.pushBack(element); }); - return _this; - } - LinkList.prototype.clear = function () { - this.length = 0; - this.head = this.tail = undefined; - this.header.pre = this.header.next = undefined; - }; - LinkList.prototype.begin = function () { - return new LinkListIterator(this.head || this.header, this.header); - }; - LinkList.prototype.end = function () { - return new LinkListIterator(this.header, this.header); - }; - LinkList.prototype.rBegin = function () { - return new LinkListIterator(this.tail || this.header, this.header, ContainerIterator.REVERSE); - }; - LinkList.prototype.rEnd = function () { - return new LinkListIterator(this.header, this.header, ContainerIterator.REVERSE); - }; - LinkList.prototype.front = function () { - return this.head ? this.head.value : undefined; - }; - LinkList.prototype.back = function () { - return this.tail ? this.tail.value : undefined; - }; - LinkList.prototype.forEach = function (callback) { - if (!this.length) - return; - var curNode = this.head; - var index = 0; - while (curNode !== this.header) { - callback(curNode.value, index++); - curNode = curNode.next; - } - }; - LinkList.prototype.getElementByPos = function (pos) { - checkWithinAccessParams(pos, 0, this.length - 1); - var curNode = this.head; - while (pos--) { - curNode = curNode.next; - } - return curNode.value; - }; - LinkList.prototype.eraseElementByPos = function (pos) { - checkWithinAccessParams(pos, 0, this.length - 1); - if (pos === 0) - this.popFront(); - else if (pos === this.length - 1) - this.popBack(); - else { - var curNode = this.head; - while (pos--) { - curNode = curNode.next; - } - curNode = curNode; - var pre = curNode.pre; - var next = curNode.next; - next.pre = pre; - pre.next = next; - this.length -= 1; - } - }; - LinkList.prototype.eraseElementByValue = function (value) { - while (this.head && this.head.value === value) - this.popFront(); - while (this.tail && this.tail.value === value) - this.popBack(); - if (!this.head) - return; - var curNode = this.head; - while (curNode !== this.header) { - if (curNode.value === value) { - var pre = curNode.pre; - var next = curNode.next; - if (next) - next.pre = pre; - if (pre) - pre.next = next; - this.length -= 1; - } - curNode = curNode.next; - } - }; - LinkList.prototype.eraseElementByIterator = function (iter) { - // @ts-ignore - var node = iter.node; - if (node === this.header) { - throw new RangeError('Invalid iterator'); - } - iter = iter.next(); - if (this.head === node) - this.popFront(); - else if (this.tail === node) - this.popBack(); - else { - var pre = node.pre; - var next = node.next; - if (next) - next.pre = pre; - if (pre) - pre.next = next; - this.length -= 1; - } - return iter; - }; - LinkList.prototype.pushBack = function (element) { - this.length += 1; - var newTail = new LinkNode(element); - if (!this.tail) { - this.head = this.tail = newTail; - this.header.next = this.head; - this.head.pre = this.header; - } - else { - this.tail.next = newTail; - newTail.pre = this.tail; - this.tail = newTail; - } - this.tail.next = this.header; - this.header.pre = this.tail; - }; - LinkList.prototype.popBack = function () { - if (!this.tail) - return; - this.length -= 1; - if (this.head === this.tail) { - this.head = this.tail = undefined; - this.header.next = undefined; - } - else { - this.tail = this.tail.pre; - if (this.tail) - this.tail.next = undefined; - } - this.header.pre = this.tail; - if (this.tail) - this.tail.next = this.header; - }; - LinkList.prototype.setElementByPos = function (pos, element) { - checkWithinAccessParams(pos, 0, this.length - 1); - var curNode = this.head; - while (pos--) { - curNode = curNode.next; - } - curNode.value = element; - }; - LinkList.prototype.insert = function (pos, element, num) { - if (num === void 0) { num = 1; } - checkWithinAccessParams(pos, 0, this.length); - if (num <= 0) - return; - if (pos === 0) { - while (num--) - this.pushFront(element); - } - else if (pos === this.length) { - while (num--) - this.pushBack(element); - } - else { - var curNode = this.head; - for (var i = 1; i < pos; ++i) { - curNode = curNode.next; - } - var next = curNode.next; - this.length += num; - while (num--) { - curNode.next = new LinkNode(element); - curNode.next.pre = curNode; - curNode = curNode.next; - } - curNode.next = next; - if (next) - next.pre = curNode; - } - }; - LinkList.prototype.find = function (element) { - if (!this.head) - return this.end(); - var curNode = this.head; - while (curNode !== this.header) { - if (curNode.value === element) { - return new LinkListIterator(curNode, this.header); - } - curNode = curNode.next; - } - return this.end(); - }; - LinkList.prototype.reverse = function () { - if (this.length <= 1) - return; - var pHead = this.head; - var pTail = this.tail; - var cnt = 0; - while ((cnt << 1) < this.length) { - var tmp = pHead.value; - pHead.value = pTail.value; - pTail.value = tmp; - pHead = pHead.next; - pTail = pTail.pre; - cnt += 1; - } - }; - LinkList.prototype.unique = function () { - if (this.length <= 1) - return; - var curNode = this.head; - while (curNode !== this.header) { - var tmpNode = curNode; - while (tmpNode.next && tmpNode.value === tmpNode.next.value) { - tmpNode = tmpNode.next; - this.length -= 1; - } - curNode.next = tmpNode.next; - if (curNode.next) - curNode.next.pre = curNode; - curNode = curNode.next; - } - }; - LinkList.prototype.sort = function (cmp) { - if (this.length <= 1) - return; - var arr = []; - this.forEach(function (element) { return arr.push(element); }); - arr.sort(cmp); - var curNode = this.head; - arr.forEach(function (element) { - curNode.value = element; - curNode = curNode.next; - }); - }; - /** - * @description Push an element to the front. - * @param element The element you want to push. - */ - LinkList.prototype.pushFront = function (element) { - this.length += 1; - var newHead = new LinkNode(element); - if (!this.head) { - this.head = this.tail = newHead; - this.tail.next = this.header; - this.header.pre = this.tail; - } - else { - newHead.next = this.head; - this.head.pre = newHead; - this.head = newHead; - } - this.header.next = this.head; - this.head.pre = this.header; - }; - /** - * @description Removes the first element. - */ - LinkList.prototype.popFront = function () { - if (!this.head) - return; - this.length -= 1; - if (this.head === this.tail) { - this.head = this.tail = undefined; - this.header.pre = this.tail; - } - else { - this.head = this.head.next; - if (this.head) - this.head.pre = this.header; - } - this.header.next = this.head; - }; - /** - * @description Merges two sorted lists. - * @param list The other list you want to merge (must be sorted). - */ - LinkList.prototype.merge = function (list) { - var _this = this; - if (!this.head) { - list.forEach(function (element) { return _this.pushBack(element); }); - return; - } - var curNode = this.head; - list.forEach(function (element) { - while (curNode && - curNode !== _this.header && - curNode.value <= element) { - curNode = curNode.next; - } - if (curNode === _this.header) { - _this.pushBack(element); - curNode = _this.tail; - } - else if (curNode === _this.head) { - _this.pushFront(element); - curNode = _this.head; - } - else { - _this.length += 1; - var pre = curNode.pre; - pre.next = new LinkNode(element); - pre.next.pre = pre; - pre.next.next = curNode; - curNode.pre = pre.next; - } - }); - }; - LinkList.prototype[Symbol.iterator] = function () { - return function () { - var curNode; - return __generator(this, function (_a) { - switch (_a.label) { - case 0: - if (!this.head) - return [2 /*return*/]; - curNode = this.head; - _a.label = 1; - case 1: - if (!(curNode !== this.header)) return [3 /*break*/, 3]; - return [4 /*yield*/, curNode.value]; - case 2: - _a.sent(); - curNode = curNode.next; - return [3 /*break*/, 1]; - case 3: return [2 /*return*/]; - } - }); - }.bind(this)(); - }; - return LinkList; - }(SequentialContainer)); + case 9: + ++e; + return [ 3, 1 ]; - var TreeNode = /** @class */ (function () { - function TreeNode(key, value) { - this.color = true; - this.key = undefined; - this.value = undefined; - this.left = undefined; - this.right = undefined; - this.parent = undefined; - this.key = key; - this.value = value; - } - /** - * @description Get the pre node. - * @return TreeNode about the pre node. - */ - TreeNode.prototype.pre = function () { - var preNode = this; - if (preNode.color === TreeNode.RED && - preNode.parent.parent === preNode) { - preNode = preNode.right; - } - else if (preNode.left) { - preNode = preNode.left; - while (preNode.right) { - preNode = preNode.right; - } - } - else { - var pre = preNode.parent; - while (pre.left === preNode) { - preNode = pre; - pre = preNode.parent; - } - preNode = pre; - } - return preNode; - }; - /** - * @description Get the next node. - * @return TreeNode about the next node. - */ - TreeNode.prototype.next = function () { - var nextNode = this; - if (nextNode.right) { - nextNode = nextNode.right; - while (nextNode.left) { - nextNode = nextNode.left; - } - } - else { - var pre = nextNode.parent; - while (pre.right === nextNode) { - nextNode = pre; - pre = nextNode.parent; - } - if (nextNode.right !== pre) { - nextNode = pre; - } - } - return nextNode; - }; - /** - * @description Rotate left. - * @return TreeNode about moved to original position after rotation. - */ - TreeNode.prototype.rotateLeft = function () { - var PP = this.parent; - var V = this.right; - var R = V.left; - if (PP.parent === this) - PP.parent = V; - else if (PP.left === this) - PP.left = V; - else - PP.right = V; - V.parent = PP; - V.left = this; - this.parent = V; - this.right = R; - if (R) - R.parent = this; - return V; - }; - /** - * @description Rotate left. - * @return TreeNode about moved to original position after rotation. - */ - TreeNode.prototype.rotateRight = function () { - var PP = this.parent; - var F = this.left; - var K = F.right; - if (PP.parent === this) - PP.parent = F; - else if (PP.left === this) - PP.left = F; - else - PP.right = F; - F.parent = PP; - F.right = this; - this.parent = F; - this.left = K; - if (K) - K.parent = this; - return F; - }; - /** - * @description Remove this. - */ - TreeNode.prototype.remove = function () { - var parent = this.parent; - if (this === parent.left) { - parent.left = undefined; - } - else - parent.right = undefined; - }; - TreeNode.RED = true; - TreeNode.BLACK = false; - return TreeNode; - }()); + case 10: + return [ 2 ]; + } + })); + }.bind(this)(); + }; + return HashSet; + }(I); + var T = function(t) { + __extends(HashMap, t); + function HashMap(i, e, r) { + if (i === void 0) { + i = []; + } + var n = t.call(this, e, r) || this; + n.vt = []; + i.forEach((function(t) { + return n.setElement(t[0], t[1]); + })); + return n; + } + HashMap.prototype.I = function() { + var t = this; + if (this.O >= 1073741824) return; + var i = []; + var e = this.O; + this.O <<= 1; + var r = Object.keys(this.vt); + var n = r.length; + var _loop_1 = function(n) { + var h = parseInt(r[n]); + var u = s.vt[h]; + var f = u.size(); + if (f === 0) return "continue"; + if (f === 1) { + var a = u.front(); + i[s.ct(a[0]) & s.O - 1] = new v([ a ], false); + return "continue"; + } + var o = []; + var c = []; + u.forEach((function(i) { + var r = t.ct(i[0]); + if ((r & e) === 0) { + o.push(i); + } else c.push(i); + })); + if (u instanceof S) { + if (o.length > 6) { + i[h] = new S(o); + } else { + i[h] = new v(o, false); + } + if (c.length > 6) { + i[h + e] = new S(c); + } else { + i[h + e] = new v(c, false); + } + } else { + i[h] = new v(o, false); + i[h + e] = new v(c, false); + } + }; + var s = this; + for (var h = 0; h < n; ++h) { + _loop_1(h); + } + this.vt = i; + }; + HashMap.prototype.forEach = function(t) { + var i = Object.values(this.vt); + var e = i.length; + var r = 0; + for (var n = 0; n < e; ++n) { + i[n].forEach((function(i) { + return t(i, r++); + })); + } + }; + HashMap.prototype.setElement = function(t, i) { + var e, r; + var n = this.ct(t) & this.O - 1; + var s = this.vt[n]; + if (!s) { + this.t += 1; + this.vt[n] = new v([ [ t, i ] ], false); + } else { + var h = s.size(); + if (s instanceof v) { + try { + for (var u = __values(s), f = u.next(); !f.done; f = u.next()) { + var a = f.value; + if (a[0] === t) { + a[1] = i; + return; + } + } + } catch (t) { + e = { + error: t + }; + } finally { + try { + if (f && !f.done && (r = u.return)) r.call(u); + } finally { + if (e) throw e.error; + } + } + s.pushBack([ t, i ]); + if (h + 1 >= 8) { + if (this.O <= 64) { + this.t += 1; + this.I(); + return; + } + this.vt[n] = new S(this.vt[n]); + } + this.t += 1; + } else { + s.setElement(t, i); + var o = s.size(); + this.t += o - h; + } + } + if (this.t > this.O * .75) { + this.I(); + } + }; + HashMap.prototype.getElementByKey = function(t) { + var i, e; + var r = this.ct(t) & this.O - 1; + var n = this.vt[r]; + if (!n) return undefined; + if (n instanceof S) { + return n.getElementByKey(t); + } else { + try { + for (var s = __values(n), h = s.next(); !h.done; h = s.next()) { + var u = h.value; + if (u[0] === t) return u[1]; + } + } catch (t) { + i = { + error: t + }; + } finally { + try { + if (h && !h.done && (e = s.return)) e.call(s); + } finally { + if (i) throw i.error; + } + } + return undefined; + } + }; + HashMap.prototype.eraseElementByKey = function(t) { + var i, e; + var r = this.ct(t) & this.O - 1; + var n = this.vt[r]; + if (!n) return; + if (n instanceof v) { + var s = 0; + try { + for (var h = __values(n), u = h.next(); !u.done; u = h.next()) { + var f = u.value; + if (f[0] === t) { + n.eraseElementByPos(s); + this.t -= 1; + return; + } + s += 1; + } + } catch (t) { + i = { + error: t + }; + } finally { + try { + if (u && !u.done && (e = h.return)) e.call(h); + } finally { + if (i) throw i.error; + } + } + } else { + var a = n.size(); + n.eraseElementByKey(t); + var o = n.size(); + this.t += o - a; + if (o <= 6) { + this.vt[r] = new v(n); + } + } + }; + HashMap.prototype.find = function(t) { + var i, e; + var r = this.ct(t) & this.O - 1; + var n = this.vt[r]; + if (!n) return false; + if (n instanceof S) { + return !n.find(t).equals(n.end()); + } + try { + for (var s = __values(n), h = s.next(); !h.done; h = s.next()) { + var u = h.value; + if (u[0] === t) return true; + } + } catch (t) { + i = { + error: t + }; + } finally { + try { + if (h && !h.done && (e = s.return)) e.call(s); + } finally { + if (i) throw i.error; + } + } + return false; + }; + HashMap.prototype[Symbol.iterator] = function() { + return function() { + var t, i, e, r, n, s, h, u; + var f, a; + return __generator(this, (function(o) { + switch (o.label) { + case 0: + t = Object.values(this.vt); + i = t.length; + e = 0; + o.label = 1; - var TreeContainer = /** @class */ (function (_super) { - __extends(TreeContainer, _super); - function TreeContainer(cmp) { - if (cmp === void 0) { cmp = function (x, y) { - if (x < y) - return -1; - if (x > y) - return 1; - return 0; - }; } - var _this = _super.call(this) || this; - _this.root = undefined; - _this.header = new TreeNode(); - /** - * @description InOrder traversal the tree. - * @protected - */ - _this.inOrderTraversal = function (curNode, callback) { - if (curNode === undefined) - return false; - var ifReturn = _this.inOrderTraversal(curNode.left, callback); - if (ifReturn) - return true; - if (callback(curNode)) - return true; - return _this.inOrderTraversal(curNode.right, callback); - }; - _this.cmp = cmp; - return _this; - } - /** - * @param curNode The starting node of the search. - * @param key The key you want to search. - * @return TreeNode which key is greater than or equals to the given key. - * @protected - */ - TreeContainer.prototype._lowerBound = function (curNode, key) { - var resNode; - while (curNode) { - var cmpResult = this.cmp(curNode.key, key); - if (cmpResult < 0) { - curNode = curNode.right; - } - else if (cmpResult > 0) { - resNode = curNode; - curNode = curNode.left; - } - else - return curNode; - } - return resNode === undefined ? this.header : resNode; - }; - /** - * @param curNode The starting node of the search. - * @param key The key you want to search. - * @return TreeNode which key is greater than the given key. - * @protected - */ - TreeContainer.prototype._upperBound = function (curNode, key) { - var resNode; - while (curNode) { - var cmpResult = this.cmp(curNode.key, key); - if (cmpResult <= 0) { - curNode = curNode.right; - } - else if (cmpResult > 0) { - resNode = curNode; - curNode = curNode.left; - } - } - return resNode === undefined ? this.header : resNode; - }; - /** - * @param curNode The starting node of the search. - * @param key The key you want to search. - * @return TreeNode which key is less than or equals to the given key. - * @protected - */ - TreeContainer.prototype._reverseLowerBound = function (curNode, key) { - var resNode; - while (curNode) { - var cmpResult = this.cmp(curNode.key, key); - if (cmpResult < 0) { - resNode = curNode; - curNode = curNode.right; - } - else if (cmpResult > 0) { - curNode = curNode.left; - } - else - return curNode; - } - return resNode === undefined ? this.header : resNode; - }; - /** - * @param curNode The starting node of the search. - * @param key The key you want to search. - * @return TreeNode which key is less than the given key. - * @protected - */ - TreeContainer.prototype._reverseUpperBound = function (curNode, key) { - var resNode; - while (curNode) { - var cmpResult = this.cmp(curNode.key, key); - if (cmpResult < 0) { - resNode = curNode; - curNode = curNode.right; - } - else if (cmpResult >= 0) { - curNode = curNode.left; - } - } - return resNode === undefined ? this.header : resNode; - }; - /** - * @description Make self balance after erase a node. - * @param curNode The node want to remove. - * @protected - */ - TreeContainer.prototype.eraseNodeSelfBalance = function (curNode) { - while (true) { - var parentNode = curNode.parent; - if (parentNode === this.header) - return; - if (curNode.color === TreeNode.RED) { - curNode.color = TreeNode.BLACK; - return; - } - if (curNode === parentNode.left) { - var brother = parentNode.right; - if (brother.color === TreeNode.RED) { - brother.color = TreeNode.BLACK; - parentNode.color = TreeNode.RED; - if (parentNode === this.root) { - this.root = parentNode.rotateLeft(); - } - else - parentNode.rotateLeft(); - } - else if (brother.color === TreeNode.BLACK) { - if (brother.right && brother.right.color === TreeNode.RED) { - brother.color = parentNode.color; - parentNode.color = TreeNode.BLACK; - brother.right.color = TreeNode.BLACK; - if (parentNode === this.root) { - this.root = parentNode.rotateLeft(); - } - else - parentNode.rotateLeft(); - return; - } - else if (brother.left && brother.left.color === TreeNode.RED) { - brother.color = TreeNode.RED; - brother.left.color = TreeNode.BLACK; - brother.rotateRight(); - } - else { - brother.color = TreeNode.RED; - curNode = parentNode; - } - } - } - else { - var brother = parentNode.left; - if (brother.color === TreeNode.RED) { - brother.color = TreeNode.BLACK; - parentNode.color = TreeNode.RED; - if (parentNode === this.root) { - this.root = parentNode.rotateRight(); - } - else - parentNode.rotateRight(); - } - else { - if (brother.left && brother.left.color === TreeNode.RED) { - brother.color = parentNode.color; - parentNode.color = TreeNode.BLACK; - brother.left.color = TreeNode.BLACK; - if (parentNode === this.root) { - this.root = parentNode.rotateRight(); - } - else - parentNode.rotateRight(); - return; - } - else if (brother.right && brother.right.color === TreeNode.RED) { - brother.color = TreeNode.RED; - brother.right.color = TreeNode.BLACK; - brother.rotateLeft(); - } - else { - brother.color = TreeNode.RED; - curNode = parentNode; - } - } - } - } - }; - /** - * @description Remove a node. - * @param curNode The node you want to remove. - * @protected - */ - TreeContainer.prototype.eraseNode = function (curNode) { - var _a, _b; - if (this.length === 1) { - this.clear(); - return; - } - var swapNode = curNode; - while (swapNode.left || swapNode.right) { - if (swapNode.right) { - swapNode = swapNode.right; - while (swapNode.left) - swapNode = swapNode.left; - } - else if (swapNode.left) { - swapNode = swapNode.left; - } - _a = __read([swapNode.key, curNode.key], 2), curNode.key = _a[0], swapNode.key = _a[1]; - _b = __read([swapNode.value, curNode.value], 2), curNode.value = _b[0], swapNode.value = _b[1]; - curNode = swapNode; - } - if (this.header.left === swapNode) { - this.header.left = swapNode.parent; - } - else if (this.header.right === swapNode) { - this.header.right = swapNode.parent; - } - this.eraseNodeSelfBalance(swapNode); - swapNode.remove(); - this.length -= 1; - this.root.color = TreeNode.BLACK; - }; - /** - * @description Make self balance after insert a node. - * @param curNode The node want to insert. - * @protected - */ - TreeContainer.prototype.insertNodeSelfBalance = function (curNode) { - while (true) { - var parentNode = curNode.parent; - if (parentNode.color === TreeNode.BLACK) - return; - var grandParent = parentNode.parent; - if (parentNode === grandParent.left) { - var uncle = grandParent.right; - if (uncle && uncle.color === TreeNode.RED) { - uncle.color = parentNode.color = TreeNode.BLACK; - if (grandParent === this.root) - return; - grandParent.color = TreeNode.RED; - curNode = grandParent; - continue; - } - else if (curNode === parentNode.right) { - curNode.color = TreeNode.BLACK; - if (curNode.left) - curNode.left.parent = parentNode; - if (curNode.right) - curNode.right.parent = grandParent; - parentNode.right = curNode.left; - grandParent.left = curNode.right; - curNode.left = parentNode; - curNode.right = grandParent; - if (grandParent === this.root) { - this.root = curNode; - this.header.parent = curNode; - } - else { - var GP = grandParent.parent; - if (GP.left === grandParent) { - GP.left = curNode; - } - else - GP.right = curNode; - } - curNode.parent = grandParent.parent; - parentNode.parent = curNode; - grandParent.parent = curNode; - } - else { - parentNode.color = TreeNode.BLACK; - if (grandParent === this.root) { - this.root = grandParent.rotateRight(); - } - else - grandParent.rotateRight(); - } - grandParent.color = TreeNode.RED; - } - else { - var uncle = grandParent.left; - if (uncle && uncle.color === TreeNode.RED) { - uncle.color = parentNode.color = TreeNode.BLACK; - if (grandParent === this.root) - return; - grandParent.color = TreeNode.RED; - curNode = grandParent; - continue; - } - else if (curNode === parentNode.left) { - curNode.color = TreeNode.BLACK; - if (curNode.left) - curNode.left.parent = grandParent; - if (curNode.right) - curNode.right.parent = parentNode; - grandParent.right = curNode.left; - parentNode.left = curNode.right; - curNode.left = grandParent; - curNode.right = parentNode; - if (grandParent === this.root) { - this.root = curNode; - this.header.parent = curNode; - } - else { - var GP = grandParent.parent; - if (GP.left === grandParent) { - GP.left = curNode; - } - else - GP.right = curNode; - } - curNode.parent = grandParent.parent; - parentNode.parent = curNode; - grandParent.parent = curNode; - } - else { - parentNode.color = TreeNode.BLACK; - if (grandParent === this.root) { - this.root = grandParent.rotateLeft(); - } - else - grandParent.rotateLeft(); - } - grandParent.color = TreeNode.RED; - } - return; - } - }; - /** - * @description Find node which key is equals to the given key. - * @param curNode The starting node of the search. - * @param key The key you want to search. - * @protected - */ - TreeContainer.prototype.findElementNode = function (curNode, key) { - while (curNode) { - var cmpResult = this.cmp(curNode.key, key); - if (cmpResult < 0) { - curNode = curNode.right; - } - else if (cmpResult > 0) { - curNode = curNode.left; - } - else - return curNode; - } - return curNode; - }; - /** - * @description Insert a key-value pair or set value by the given key. - * @param key The key want to insert. - * @param value The value want to set. - * @param hint You can give an iterator hint to improve insertion efficiency. - * @protected - */ - TreeContainer.prototype.set = function (key, value, hint) { - if (this.root === undefined) { - this.length += 1; - this.root = new TreeNode(key, value); - this.root.color = TreeNode.BLACK; - this.root.parent = this.header; - this.header.parent = this.root; - this.header.left = this.root; - this.header.right = this.root; - return; - } - var curNode; - var minNode = this.header.left; - var compareToMin = this.cmp(minNode.key, key); - if (compareToMin === 0) { - minNode.value = value; - return; - } - else if (compareToMin > 0) { - minNode.left = new TreeNode(key, value); - minNode.left.parent = minNode; - curNode = minNode.left; - this.header.left = curNode; - } - else { - var maxNode = this.header.right; - var compareToMax = this.cmp(maxNode.key, key); - if (compareToMax === 0) { - maxNode.value = value; - return; - } - else if (compareToMax < 0) { - maxNode.right = new TreeNode(key, value); - maxNode.right.parent = maxNode; - curNode = maxNode.right; - this.header.right = curNode; - } - else { - if (hint !== undefined) { - // @ts-ignore - var iterNode = hint.node; - if (iterNode !== this.header) { - var iterCmpRes = this.cmp(iterNode.key, key); - if (iterCmpRes === 0) { - iterNode.value = value; - return; - } - else if (iterCmpRes > 0) { - var preNode = iterNode.pre(); - var preCmpRes = this.cmp(preNode.key, key); - if (preCmpRes === 0) { - preNode.value = value; - return; - } - else if (preCmpRes < 0) { - curNode = new TreeNode(key, value); - if (preNode.right === undefined) { - preNode.right = curNode; - curNode.parent = preNode; - } - else { - iterNode.left = curNode; - curNode.parent = iterNode; - } - } - } - } - } - if (curNode === undefined) { - curNode = this.root; - while (true) { - var cmpResult = this.cmp(curNode.key, key); - if (cmpResult > 0) { - if (curNode.left === undefined) { - curNode.left = new TreeNode(key, value); - curNode.left.parent = curNode; - curNode = curNode.left; - break; - } - curNode = curNode.left; - } - else if (cmpResult < 0) { - if (curNode.right === undefined) { - curNode.right = new TreeNode(key, value); - curNode.right.parent = curNode; - curNode = curNode.right; - break; - } - curNode = curNode.right; - } - else { - curNode.value = value; - return; - } - } - } - } - } - this.length += 1; - this.insertNodeSelfBalance(curNode); - }; - TreeContainer.prototype.clear = function () { - this.length = 0; - this.root = undefined; - this.header.parent = undefined; - this.header.left = this.header.right = undefined; - }; - /** - * @description Update node's key by iterator. - * @param iter The iterator you want to change. - * @param key The key you want to update. - * @return Boolean about if the modification is successful. - */ - TreeContainer.prototype.updateKeyByIterator = function (iter, key) { - // @ts-ignore - var node = iter.node; - if (node === this.header) { - throw new TypeError('Invalid iterator!'); - } - if (this.length === 1) { - node.key = key; - return true; - } - if (node === this.header.left) { - if (this.cmp(node.next().key, key) > 0) { - node.key = key; - return true; - } - return false; - } - if (node === this.header.right) { - if (this.cmp(node.pre().key, key) < 0) { - node.key = key; - return true; - } - return false; - } - var preKey = node.pre().key; - if (this.cmp(preKey, key) >= 0) - return false; - var nextKey = node.next().key; - if (this.cmp(nextKey, key) <= 0) - return false; - node.key = key; - return true; - }; - TreeContainer.prototype.eraseElementByPos = function (pos) { - var _this = this; - checkWithinAccessParams(pos, 0, this.length - 1); - var index = 0; - this.inOrderTraversal(this.root, function (curNode) { - if (pos === index) { - _this.eraseNode(curNode); - return true; - } - index += 1; - return false; - }); - }; - /** - * @description Remove the element of the specified key. - * @param key The key you want to remove. - */ - TreeContainer.prototype.eraseElementByKey = function (key) { - if (!this.length) - return; - var curNode = this.findElementNode(this.root, key); - if (curNode === undefined) - return; - this.eraseNode(curNode); - }; - TreeContainer.prototype.eraseElementByIterator = function (iter) { - // @ts-ignore - var node = iter.node; - if (node === this.header) { - throw new RangeError('Invalid iterator'); - } - if (node.right === undefined) { - iter = iter.next(); - } - this.eraseNode(node); - return iter; - }; - /** - * @description Get the height of the tree. - * @return Number about the height of the RB-tree. - */ - TreeContainer.prototype.getHeight = function () { - if (!this.length) - return 0; - var traversal = function (curNode) { - if (!curNode) - return 0; - return Math.max(traversal(curNode.left), traversal(curNode.right)) + 1; - }; - return traversal(this.root); - }; - return TreeContainer; - }(Container)); + case 1: + if (!(e < i)) return [ 3, 10 ]; + r = t[e]; + o.label = 2; - var TreeIterator = /** @class */ (function (_super) { - __extends(TreeIterator, _super); - function TreeIterator(node, header, iteratorType) { - var _this = _super.call(this, iteratorType) || this; - _this.node = node; - _this.header = header; - if (_this.iteratorType === ContainerIterator.NORMAL) { - _this.pre = function () { - if (this.node === this.header.left) { - throw new RangeError('LinkList iterator access denied!'); - } - this.node = this.node.pre(); - return this; - }; - _this.next = function () { - if (this.node === this.header) { - throw new RangeError('LinkList iterator access denied!'); - } - this.node = this.node.next(); - return this; - }; - } - else { - _this.pre = function () { - if (this.node === this.header.right) { - throw new RangeError('LinkList iterator access denied!'); - } - this.node = this.node.next(); - return this; - }; - _this.next = function () { - if (this.node === this.header) { - throw new RangeError('LinkList iterator access denied!'); - } - this.node = this.node.pre(); - return this; - }; - } - return _this; - } - TreeIterator.prototype.equals = function (obj) { - return this.node === obj.node; - }; - return TreeIterator; - }(ContainerIterator)); + case 2: + o.trys.push([ 2, 7, 8, 9 ]); + n = (f = void 0, __values(r)), s = n.next(); + o.label = 3; - var OrderedSetIterator = /** @class */ (function (_super) { - __extends(OrderedSetIterator, _super); - function OrderedSetIterator() { - return _super !== null && _super.apply(this, arguments) || this; - } - Object.defineProperty(OrderedSetIterator.prototype, "pointer", { - get: function () { - if (this.node === this.header) { - throw new RangeError('OrderedSet iterator access denied!'); - } - return this.node.key; - }, - enumerable: false, - configurable: true - }); - OrderedSetIterator.prototype.copy = function () { - return new OrderedSetIterator(this.node, this.header, this.iteratorType); - }; - return OrderedSetIterator; - }(TreeIterator)); - var OrderedSet = /** @class */ (function (_super) { - __extends(OrderedSet, _super); - function OrderedSet(container, cmp) { - if (container === void 0) { container = []; } - var _this = _super.call(this, cmp) || this; - _this.iterationFunc = function (curNode) { - return __generator(this, function (_a) { - switch (_a.label) { - case 0: - if (curNode === undefined) - return [2 /*return*/]; - return [5 /*yield**/, __values(this.iterationFunc(curNode.left))]; - case 1: - _a.sent(); - return [4 /*yield*/, curNode.key]; - case 2: - _a.sent(); - return [5 /*yield**/, __values(this.iterationFunc(curNode.right))]; - case 3: - _a.sent(); - return [2 /*return*/]; - } - }); - }; - container.forEach(function (element) { return _this.insert(element); }); - _this.iterationFunc = _this.iterationFunc.bind(_this); - return _this; - } - OrderedSet.prototype.begin = function () { - return new OrderedSetIterator(this.header.left || this.header, this.header); - }; - OrderedSet.prototype.end = function () { - return new OrderedSetIterator(this.header, this.header); - }; - OrderedSet.prototype.rBegin = function () { - return new OrderedSetIterator(this.header.right || this.header, this.header, ContainerIterator.REVERSE); - }; - OrderedSet.prototype.rEnd = function () { - return new OrderedSetIterator(this.header, this.header, ContainerIterator.REVERSE); - }; - OrderedSet.prototype.front = function () { - return this.header.left ? this.header.left.key : undefined; - }; - OrderedSet.prototype.back = function () { - return this.header.right ? this.header.right.key : undefined; - }; - OrderedSet.prototype.forEach = function (callback) { - var e_1, _a; - var index = 0; - try { - for (var _b = __values(this), _c = _b.next(); !_c.done; _c = _b.next()) { - var element = _c.value; - callback(element, index++); - } - } - catch (e_1_1) { e_1 = { error: e_1_1 }; } - finally { - try { - if (_c && !_c.done && (_a = _b.return)) _a.call(_b); - } - finally { if (e_1) throw e_1.error; } - } - }; - OrderedSet.prototype.getElementByPos = function (pos) { - var e_2, _a; - checkWithinAccessParams(pos, 0, this.length - 1); - var res; - var index = 0; - try { - for (var _b = __values(this), _c = _b.next(); !_c.done; _c = _b.next()) { - var element = _c.value; - if (index === pos) { - res = element; - } - index += 1; - } - } - catch (e_2_1) { e_2 = { error: e_2_1 }; } - finally { - try { - if (_c && !_c.done && (_a = _b.return)) _a.call(_b); - } - finally { if (e_2) throw e_2.error; } - } - return res; - }; - /** - * @description Insert element to set. - * @param key The key want to insert. - * @param hint You can give an iterator hint to improve insertion efficiency. - */ - OrderedSet.prototype.insert = function (key, hint) { - this.set(key, undefined, hint); - }; - OrderedSet.prototype.find = function (element) { - var curNode = this.findElementNode(this.root, element); - if (curNode !== undefined) { - return new OrderedSetIterator(curNode, this.header); - } - return this.end(); - }; - OrderedSet.prototype.lowerBound = function (key) { - var resNode = this._lowerBound(this.root, key); - return new OrderedSetIterator(resNode, this.header); - }; - OrderedSet.prototype.upperBound = function (key) { - var resNode = this._upperBound(this.root, key); - return new OrderedSetIterator(resNode, this.header); - }; - OrderedSet.prototype.reverseLowerBound = function (key) { - var resNode = this._reverseLowerBound(this.root, key); - return new OrderedSetIterator(resNode, this.header); - }; - OrderedSet.prototype.reverseUpperBound = function (key) { - var resNode = this._reverseUpperBound(this.root, key); - return new OrderedSetIterator(resNode, this.header); - }; - OrderedSet.prototype.union = function (other) { - var _this = this; - other.forEach(function (element) { return _this.insert(element); }); - }; - OrderedSet.prototype[Symbol.iterator] = function () { - return this.iterationFunc(this.root); - }; - return OrderedSet; - }(TreeContainer)); + case 3: + if (!!s.done) return [ 3, 6 ]; + h = s.value; + return [ 4, h ]; - var OrderedMapIterator = /** @class */ (function (_super) { - __extends(OrderedMapIterator, _super); - function OrderedMapIterator() { - return _super !== null && _super.apply(this, arguments) || this; - } - Object.defineProperty(OrderedMapIterator.prototype, "pointer", { - get: function () { - var _this = this; - if (this.node === this.header) { - throw new RangeError('OrderedMap iterator access denied'); - } - return new Proxy([], { - get: function (_, props) { - if (props === '0') - return _this.node.key; - else if (props === '1') - return _this.node.value; - }, - set: function (_, props, newValue) { - if (props !== '1') { - throw new TypeError('props must be 1'); - } - _this.node.value = newValue; - return true; - } - }); - }, - enumerable: false, - configurable: true - }); - OrderedMapIterator.prototype.copy = function () { - return new OrderedMapIterator(this.node, this.header, this.iteratorType); - }; - return OrderedMapIterator; - }(TreeIterator)); - var OrderedMap = /** @class */ (function (_super) { - __extends(OrderedMap, _super); - function OrderedMap(container, cmp) { - if (container === void 0) { container = []; } - var _this = _super.call(this, cmp) || this; - _this.iterationFunc = function (curNode) { - return __generator(this, function (_a) { - switch (_a.label) { - case 0: - if (curNode === undefined) - return [2 /*return*/]; - return [5 /*yield**/, __values(this.iterationFunc(curNode.left))]; - case 1: - _a.sent(); - return [4 /*yield*/, [curNode.key, curNode.value]]; - case 2: - _a.sent(); - return [5 /*yield**/, __values(this.iterationFunc(curNode.right))]; - case 3: - _a.sent(); - return [2 /*return*/]; - } - }); - }; - _this.iterationFunc = _this.iterationFunc.bind(_this); - container.forEach(function (_a) { - var _b = __read(_a, 2), key = _b[0], value = _b[1]; - return _this.setElement(key, value); - }); - return _this; - } - OrderedMap.prototype.begin = function () { - return new OrderedMapIterator(this.header.left || this.header, this.header); - }; - OrderedMap.prototype.end = function () { - return new OrderedMapIterator(this.header, this.header); - }; - OrderedMap.prototype.rBegin = function () { - return new OrderedMapIterator(this.header.right || this.header, this.header, ContainerIterator.REVERSE); - }; - OrderedMap.prototype.rEnd = function () { - return new OrderedMapIterator(this.header, this.header, ContainerIterator.REVERSE); - }; - OrderedMap.prototype.front = function () { - if (!this.length) - return undefined; - var minNode = this.header.left; - return [minNode.key, minNode.value]; - }; - OrderedMap.prototype.back = function () { - if (!this.length) - return undefined; - var maxNode = this.header.right; - return [maxNode.key, maxNode.value]; - }; - OrderedMap.prototype.forEach = function (callback) { - var e_1, _a; - var index = 0; - try { - for (var _b = __values(this), _c = _b.next(); !_c.done; _c = _b.next()) { - var pair = _c.value; - callback(pair, index++); - } - } - catch (e_1_1) { e_1 = { error: e_1_1 }; } - finally { - try { - if (_c && !_c.done && (_a = _b.return)) _a.call(_b); - } - finally { if (e_1) throw e_1.error; } - } - }; - OrderedMap.prototype.lowerBound = function (key) { - var resNode = this._lowerBound(this.root, key); - return new OrderedMapIterator(resNode, this.header); - }; - OrderedMap.prototype.upperBound = function (key) { - var resNode = this._upperBound(this.root, key); - return new OrderedMapIterator(resNode, this.header); - }; - OrderedMap.prototype.reverseLowerBound = function (key) { - var resNode = this._reverseLowerBound(this.root, key); - return new OrderedMapIterator(resNode, this.header); - }; - OrderedMap.prototype.reverseUpperBound = function (key) { - var resNode = this._reverseUpperBound(this.root, key); - return new OrderedMapIterator(resNode, this.header); - }; - /** - * @description Insert a key-value pair or set value by the given key. - * @param key The key want to insert. - * @param value The value want to set. - * @param hint You can give an iterator hint to improve insertion efficiency. - */ - OrderedMap.prototype.setElement = function (key, value, hint) { - this.set(key, value, hint); - }; - OrderedMap.prototype.find = function (key) { - var curNode = this.findElementNode(this.root, key); - if (curNode !== undefined) { - return new OrderedMapIterator(curNode, this.header); - } - return this.end(); - }; - /** - * @description Get the value of the element of the specified key. - */ - OrderedMap.prototype.getElementByKey = function (key) { - var curNode = this.findElementNode(this.root, key); - return curNode ? curNode.value : undefined; - }; - OrderedMap.prototype.getElementByPos = function (pos) { - var e_2, _a; - checkWithinAccessParams(pos, 0, this.length - 1); - var res; - var index = 0; - try { - for (var _b = __values(this), _c = _b.next(); !_c.done; _c = _b.next()) { - var pair = _c.value; - if (index === pos) { - res = pair; - break; - } - index += 1; - } - } - catch (e_2_1) { e_2 = { error: e_2_1 }; } - finally { - try { - if (_c && !_c.done && (_a = _b.return)) _a.call(_b); - } - finally { if (e_2) throw e_2.error; } - } - return res; - }; - OrderedMap.prototype.union = function (other) { - var _this = this; - other.forEach(function (_a) { - var _b = __read(_a, 2), key = _b[0], value = _b[1]; - return _this.setElement(key, value); - }); - }; - OrderedMap.prototype[Symbol.iterator] = function () { - return this.iterationFunc(this.root); - }; - return OrderedMap; - }(TreeContainer)); + case 4: + o.sent(); + o.label = 5; - var HashContainer = /** @class */ (function (_super) { - __extends(HashContainer, _super); - function HashContainer(initBucketNum, hashFunc) { - if (initBucketNum === void 0) { initBucketNum = 16; } - if (hashFunc === void 0) { hashFunc = function (x) { - var str; - if (typeof x !== 'string') { - str = JSON.stringify(x); - } - else - str = x; - var hashCode = 0; - var strLength = str.length; - for (var i = 0; i < strLength; i++) { - var ch = str.charCodeAt(i); - hashCode = ((hashCode << 5) - hashCode) + ch; - hashCode |= 0; - } - return hashCode >>> 0; - }; } - var _this = _super.call(this) || this; - if (initBucketNum < 16 || (initBucketNum & (initBucketNum - 1)) !== 0) { - throw new RangeError('InitBucketNum range error'); - } - _this.bucketNum = _this.initBucketNum = initBucketNum; - _this.hashFunc = hashFunc; - return _this; - } - HashContainer.prototype.clear = function () { - this.length = 0; - this.bucketNum = this.initBucketNum; - this.hashTable = []; - }; - HashContainer.sigma = 0.75; - HashContainer.treeifyThreshold = 8; - HashContainer.untreeifyThreshold = 6; - HashContainer.minTreeifySize = 64; - HashContainer.maxBucketNum = (1 << 30); - return HashContainer; - }(Base)); + case 5: + s = n.next(); + return [ 3, 3 ]; - var HashSet = /** @class */ (function (_super) { - __extends(HashSet, _super); - function HashSet(container, initBucketNum, hashFunc) { - if (container === void 0) { container = []; } - var _this = _super.call(this, initBucketNum, hashFunc) || this; - _this.hashTable = []; - container.forEach(function (element) { return _this.insert(element); }); - return _this; - } - HashSet.prototype.reAllocate = function () { - var _this = this; - if (this.bucketNum >= HashContainer.maxBucketNum) - return; - var newHashTable = []; - var originalBucketNum = this.bucketNum; - this.bucketNum <<= 1; - var keys = Object.keys(this.hashTable); - var keyNums = keys.length; - var _loop_1 = function (i) { - var index = parseInt(keys[i]); - var container = this_1.hashTable[index]; - var size = container.size(); - if (size === 0) - return "continue"; - if (size === 1) { - var element = container.front(); - newHashTable[this_1.hashFunc(element) & (this_1.bucketNum - 1)] = new Vector([element], false); - return "continue"; - } - var lowList = []; - var highList = []; - container.forEach(function (element) { - var hashCode = _this.hashFunc(element); - if ((hashCode & originalBucketNum) === 0) { - lowList.push(element); - } - else - highList.push(element); - }); - if (container instanceof OrderedSet) { - if (lowList.length > HashContainer.untreeifyThreshold) { - newHashTable[index] = new OrderedSet(lowList); - } - else if (lowList.length) { - newHashTable[index] = new Vector(lowList, false); - } - if (highList.length > HashContainer.untreeifyThreshold) { - newHashTable[index + originalBucketNum] = new OrderedSet(highList); - } - else if (highList.length) { - newHashTable[index + originalBucketNum] = new Vector(highList, false); - } - } - else { - if (lowList.length >= HashContainer.treeifyThreshold) { - newHashTable[index] = new OrderedSet(lowList); - } - else if (lowList.length) { - newHashTable[index] = new Vector(lowList, false); - } - if (highList.length >= HashContainer.treeifyThreshold) { - newHashTable[index + originalBucketNum] = new OrderedSet(highList); - } - else if (highList.length) { - newHashTable[index + originalBucketNum] = new Vector(highList, false); - } - } - }; - var this_1 = this; - for (var i = 0; i < keyNums; ++i) { - _loop_1(i); - } - this.hashTable = newHashTable; - }; - HashSet.prototype.forEach = function (callback) { - var containers = Object.values(this.hashTable); - var containersNum = containers.length; - var index = 0; - for (var i = 0; i < containersNum; ++i) { - containers[i].forEach(function (element) { return callback(element, index++); }); - } - }; - /** - * @description Insert element to hash set. - * @param element The element you want to insert. - */ - HashSet.prototype.insert = function (element) { - var index = this.hashFunc(element) & (this.bucketNum - 1); - var container = this.hashTable[index]; - if (!container) { - this.hashTable[index] = new Vector([element], false); - this.length += 1; - } - else { - var preSize = container.size(); - if (container instanceof Vector) { - if (!container.find(element) - .equals(container.end())) - return; - container.pushBack(element); - if (preSize + 1 >= HashContainer.treeifyThreshold) { - if (this.bucketNum <= HashContainer.minTreeifySize) { - this.length += 1; - this.reAllocate(); - return; - } - this.hashTable[index] = new OrderedSet(container); - } - this.length += 1; - } - else { - container.insert(element); - var curSize = container.size(); - this.length += curSize - preSize; - } - } - if (this.length > this.bucketNum * HashContainer.sigma) { - this.reAllocate(); - } - }; - HashSet.prototype.eraseElementByKey = function (key) { - var index = this.hashFunc(key) & (this.bucketNum - 1); - var container = this.hashTable[index]; - if (!container) - return; - var preSize = container.size(); - if (preSize === 0) - return; - if (container instanceof Vector) { - container.eraseElementByValue(key); - var curSize = container.size(); - this.length += curSize - preSize; - } - else { - container.eraseElementByKey(key); - var curSize = container.size(); - this.length += curSize - preSize; - if (curSize <= HashContainer.untreeifyThreshold) { - this.hashTable[index] = new Vector(container); - } - } - }; - HashSet.prototype.find = function (element) { - var index = this.hashFunc(element) & (this.bucketNum - 1); - var container = this.hashTable[index]; - if (!container) - return false; - return !container.find(element) - .equals(container.end()); - }; - HashSet.prototype[Symbol.iterator] = function () { - return function () { - var containers, containersNum, i, container, container_1, container_1_1, element, e_1_1; - var e_1, _a; - return __generator(this, function (_b) { - switch (_b.label) { - case 0: - containers = Object.values(this.hashTable); - containersNum = containers.length; - i = 0; - _b.label = 1; - case 1: - if (!(i < containersNum)) return [3 /*break*/, 10]; - container = containers[i]; - _b.label = 2; - case 2: - _b.trys.push([2, 7, 8, 9]); - container_1 = (e_1 = void 0, __values(container)), container_1_1 = container_1.next(); - _b.label = 3; - case 3: - if (!!container_1_1.done) return [3 /*break*/, 6]; - element = container_1_1.value; - return [4 /*yield*/, element]; - case 4: - _b.sent(); - _b.label = 5; - case 5: - container_1_1 = container_1.next(); - return [3 /*break*/, 3]; - case 6: return [3 /*break*/, 9]; - case 7: - e_1_1 = _b.sent(); - e_1 = { error: e_1_1 }; - return [3 /*break*/, 9]; - case 8: - try { - if (container_1_1 && !container_1_1.done && (_a = container_1.return)) _a.call(container_1); - } - finally { if (e_1) throw e_1.error; } - return [7 /*endfinally*/]; - case 9: - ++i; - return [3 /*break*/, 1]; - case 10: return [2 /*return*/]; - } - }); - }.bind(this)(); - }; - return HashSet; - }(HashContainer)); + case 6: + return [ 3, 9 ]; - var HashMap = /** @class */ (function (_super) { - __extends(HashMap, _super); - function HashMap(container, initBucketNum, hashFunc) { - if (container === void 0) { container = []; } - var _this = _super.call(this, initBucketNum, hashFunc) || this; - _this.hashTable = []; - container.forEach(function (element) { return _this.setElement(element[0], element[1]); }); - return _this; - } - HashMap.prototype.reAllocate = function () { - var _this = this; - if (this.bucketNum >= HashContainer.maxBucketNum) - return; - var newHashTable = []; - var originalBucketNum = this.bucketNum; - this.bucketNum <<= 1; - var keys = Object.keys(this.hashTable); - var keyNums = keys.length; - var _loop_1 = function (i) { - var index = parseInt(keys[i]); - var container = this_1.hashTable[index]; - var size = container.size(); - if (size === 0) - return "continue"; - if (size === 1) { - var element = container.front(); - newHashTable[this_1.hashFunc(element[0]) & (this_1.bucketNum - 1)] = new Vector([element], false); - return "continue"; - } - var lowList = []; - var highList = []; - container.forEach(function (element) { - var hashCode = _this.hashFunc(element[0]); - if ((hashCode & originalBucketNum) === 0) { - lowList.push(element); - } - else - highList.push(element); - }); - if (container instanceof OrderedMap) { - if (lowList.length > HashContainer.untreeifyThreshold) { - newHashTable[index] = new OrderedMap(lowList); - } - else if (lowList.length) { - newHashTable[index] = new Vector(lowList, false); - } - if (highList.length > HashContainer.untreeifyThreshold) { - newHashTable[index + originalBucketNum] = new OrderedMap(highList); - } - else if (highList.length) { - newHashTable[index + originalBucketNum] = new Vector(highList, false); - } - } - else { - if (lowList.length >= HashContainer.treeifyThreshold) { - newHashTable[index] = new OrderedMap(lowList); - } - else if (lowList.length) { - newHashTable[index] = new Vector(lowList, false); - } - if (highList.length >= HashContainer.treeifyThreshold) { - newHashTable[index + originalBucketNum] = new OrderedMap(highList); - } - else if (highList.length) { - newHashTable[index + originalBucketNum] = new Vector(highList, false); - } - } - }; - var this_1 = this; - for (var i = 0; i < keyNums; ++i) { - _loop_1(i); - } - this.hashTable = newHashTable; - }; - HashMap.prototype.forEach = function (callback) { - var containers = Object.values(this.hashTable); - var containersNum = containers.length; - var index = 0; - for (var i = 0; i < containersNum; ++i) { - containers[i].forEach(function (element) { return callback(element, index++); }); - } - }; - /** - * @description Insert a new key-value pair to hash map or set value by key. - * @param key The key you want to insert. - * @param value The value you want to insert. - * @example HashMap.setElement(1, 2); // insert a key-value pair [1, 2] - */ - HashMap.prototype.setElement = function (key, value) { - var e_1, _a; - var index = this.hashFunc(key) & (this.bucketNum - 1); - var container = this.hashTable[index]; - if (!container) { - this.length += 1; - this.hashTable[index] = new Vector([[key, value]], false); - } - else { - var preSize = container.size(); - if (container instanceof Vector) { - try { - for (var container_1 = __values(container), container_1_1 = container_1.next(); !container_1_1.done; container_1_1 = container_1.next()) { - var pair = container_1_1.value; - if (pair[0] === key) { - pair[1] = value; - return; - } - } - } - catch (e_1_1) { e_1 = { error: e_1_1 }; } - finally { - try { - if (container_1_1 && !container_1_1.done && (_a = container_1.return)) _a.call(container_1); - } - finally { if (e_1) throw e_1.error; } - } - container.pushBack([key, value]); - if (preSize + 1 >= HashMap.treeifyThreshold) { - if (this.bucketNum <= HashMap.minTreeifySize) { - this.length += 1; - this.reAllocate(); - return; - } - this.hashTable[index] = new OrderedMap(this.hashTable[index]); - } - this.length += 1; - } - else { - container.setElement(key, value); - var curSize = container.size(); - this.length += curSize - preSize; - } - } - if (this.length > this.bucketNum * HashMap.sigma) { - this.reAllocate(); - } - }; - /** - * @description Get the value of the element which has the specified key. - * @param key The key you want to get. - */ - HashMap.prototype.getElementByKey = function (key) { - var e_2, _a; - var index = this.hashFunc(key) & (this.bucketNum - 1); - var container = this.hashTable[index]; - if (!container) - return undefined; - if (container instanceof OrderedMap) { - return container.getElementByKey(key); - } - else { - try { - for (var container_2 = __values(container), container_2_1 = container_2.next(); !container_2_1.done; container_2_1 = container_2.next()) { - var pair = container_2_1.value; - if (pair[0] === key) - return pair[1]; - } - } - catch (e_2_1) { e_2 = { error: e_2_1 }; } - finally { - try { - if (container_2_1 && !container_2_1.done && (_a = container_2.return)) _a.call(container_2); - } - finally { if (e_2) throw e_2.error; } - } - return undefined; - } - }; - HashMap.prototype.eraseElementByKey = function (key) { - var e_3, _a; - var index = this.hashFunc(key) & (this.bucketNum - 1); - var container = this.hashTable[index]; - if (!container) - return; - if (container instanceof Vector) { - var pos = 0; - try { - for (var container_3 = __values(container), container_3_1 = container_3.next(); !container_3_1.done; container_3_1 = container_3.next()) { - var pair = container_3_1.value; - if (pair[0] === key) { - container.eraseElementByPos(pos); - this.length -= 1; - return; - } - pos += 1; - } - } - catch (e_3_1) { e_3 = { error: e_3_1 }; } - finally { - try { - if (container_3_1 && !container_3_1.done && (_a = container_3.return)) _a.call(container_3); - } - finally { if (e_3) throw e_3.error; } - } - } - else { - var preSize = container.size(); - container.eraseElementByKey(key); - var curSize = container.size(); - this.length += curSize - preSize; - if (curSize <= HashContainer.untreeifyThreshold) { - this.hashTable[index] = new Vector(container); - } - } - }; - HashMap.prototype.find = function (key) { - var e_4, _a; - var index = this.hashFunc(key) & (this.bucketNum - 1); - var container = this.hashTable[index]; - if (!container) - return false; - if (container instanceof OrderedMap) { - return !container.find(key) - .equals(container.end()); - } - try { - for (var container_4 = __values(container), container_4_1 = container_4.next(); !container_4_1.done; container_4_1 = container_4.next()) { - var pair = container_4_1.value; - if (pair[0] === key) - return true; - } - } - catch (e_4_1) { e_4 = { error: e_4_1 }; } - finally { - try { - if (container_4_1 && !container_4_1.done && (_a = container_4.return)) _a.call(container_4); - } - finally { if (e_4) throw e_4.error; } - } - return false; - }; - HashMap.prototype[Symbol.iterator] = function () { - return function () { - var containers, containersNum, i, container, container_5, container_5_1, element, e_5_1; - var e_5, _a; - return __generator(this, function (_b) { - switch (_b.label) { - case 0: - containers = Object.values(this.hashTable); - containersNum = containers.length; - i = 0; - _b.label = 1; - case 1: - if (!(i < containersNum)) return [3 /*break*/, 10]; - container = containers[i]; - _b.label = 2; - case 2: - _b.trys.push([2, 7, 8, 9]); - container_5 = (e_5 = void 0, __values(container)), container_5_1 = container_5.next(); - _b.label = 3; - case 3: - if (!!container_5_1.done) return [3 /*break*/, 6]; - element = container_5_1.value; - return [4 /*yield*/, element]; - case 4: - _b.sent(); - _b.label = 5; - case 5: - container_5_1 = container_5.next(); - return [3 /*break*/, 3]; - case 6: return [3 /*break*/, 9]; - case 7: - e_5_1 = _b.sent(); - e_5 = { error: e_5_1 }; - return [3 /*break*/, 9]; - case 8: - try { - if (container_5_1 && !container_5_1.done && (_a = container_5.return)) _a.call(container_5); - } - finally { if (e_5) throw e_5.error; } - return [7 /*endfinally*/]; - case 9: - ++i; - return [3 /*break*/, 1]; - case 10: return [2 /*return*/]; - } - }); - }.bind(this)(); - }; - return HashMap; - }(HashContainer)); + case 7: + u = o.sent(); + f = { + error: u + }; + return [ 3, 9 ]; - exports.Container = Container; - exports.ContainerIterator = ContainerIterator; - exports.Deque = Deque; - exports.DequeIterator = DequeIterator; - exports.HashContainer = HashContainer; - exports.HashMap = HashMap; - exports.HashSet = HashSet; - exports.LinkList = LinkList; - exports.LinkListIterator = LinkListIterator; - exports.OrderedMap = OrderedMap; - exports.OrderedMapIterator = OrderedMapIterator; - exports.OrderedSet = OrderedSet; - exports.OrderedSetIterator = OrderedSetIterator; - exports.PriorityQueue = PriorityQueue; - exports.Queue = Queue; - exports.SequentialContainer = SequentialContainer; - exports.Stack = Stack; - exports.TreeContainer = TreeContainer; - exports.Vector = Vector; - exports.VectorIterator = VectorIterator; + case 8: + try { + if (s && !s.done && (a = n.return)) a.call(n); + } finally { + if (f) throw f.error; + } + return [ 7 ]; - Object.defineProperty(exports, '__esModule', { value: true }); + case 9: + ++e; + return [ 3, 1 ]; -})); + case 10: + return [ 2 ]; + } + })); + }.bind(this)(); + }; + return HashMap; + }(I); + t.Deque = f; + t.HashMap = T; + t.HashSet = g; + t.LinkList = w; + t.OrderedMap = S; + t.OrderedSet = b; + t.PriorityQueue = o; + t.Queue = a; + t.Stack = n; + t.Vector = v; + Object.defineProperty(t, "dt", { + value: true + }); +})); \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/js-sdsl/dist/umd/js-sdsl.min.js b/tools/node_modules/eslint/node_modules/js-sdsl/dist/umd/js-sdsl.min.js index 2f6849c96c0ce6..78364048844305 100644 --- a/tools/node_modules/eslint/node_modules/js-sdsl/dist/umd/js-sdsl.min.js +++ b/tools/node_modules/eslint/node_modules/js-sdsl/dist/umd/js-sdsl.min.js @@ -1 +1,2 @@ -!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).sdsl={})}(this,function(t){"use strict";var i=function(t,e){return(i=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(t[r]=e[r])})(t,e)};function e(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function r(){this.constructor=t}i(t,e),t.prototype=null===e?Object.create(e):(r.prototype=e.prototype,new r)}function l(r,i){var n,o,h,s={label:0,sent:function(){if(1&h[0])throw h[1];return h[1]},trys:[],ops:[]},t={next:e(0),throw:e(1),return:e(2)};return"function"==typeof Symbol&&(t[Symbol.iterator]=function(){return this}),t;function e(e){return function(t){return function(e){if(n)throw new TypeError("Generator is already executing.");for(;s;)try{if(n=1,o&&(h=2&e[0]?o.return:e[0]?o.throw||((h=o.return)&&h.call(o),0):o.next)&&!(h=h.call(o,e[1])).done)return h;switch(o=0,(e=h?[2&e[0],h.value]:e)[0]){case 0:case 1:h=e;break;case 4:return s.label++,{value:e[1],done:!1};case 5:s.label++,o=e[1],e=[0];continue;case 7:e=s.ops.pop(),s.trys.pop();continue;default:if(!(h=0<(h=s.trys).length&&h[h.length-1])&&(6===e[0]||2===e[0])){s=0;continue}if(3===e[0]&&(!h||e[1]>h[0]&&e[1]=t.length?void 0:t)&&t[i++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function f(t,e){var r="function"==typeof Symbol&&t[Symbol.iterator];if(!r)return t;var i,n,o=r.call(t),h=[];try{for(;(void 0===e||0>1,1),r=0;r>1},T.prototype.front=function(){return this.map[this.first][this.curFirst]},T.prototype.back=function(){return this.map[this.last][this.curLast]},T.prototype.begin=function(){return new P(0,this.size,this.getElementByPos,this.setElementByPos)},T.prototype.end=function(){return new P(this.length,this.size,this.getElementByPos,this.setElementByPos)},T.prototype.rBegin=function(){return new P(this.length-1,this.size,this.getElementByPos,this.setElementByPos,o.REVERSE)},T.prototype.rEnd=function(){return new P(-1,this.size,this.getElementByPos,this.setElementByPos,o.REVERSE)},T.prototype.pushBack=function(t){this.length&&(this.curLastt;)this.popBack()}},T.prototype.sort=function(t){for(var e=[],r=0;r>1)-(e>>1),i.curFirst=i.curLast=i.bucketSize-r%i.bucketSize>>1,t.forEach(function(t){return i.pushBack(t)}),i.size=i.size.bind(i),i.getElementByPos=i.getElementByPos.bind(i),i.setElementByPos=i.setElementByPos.bind(i),i}var z,S=(e(F,z=n),F.prototype.clear=function(){this.queue.clear(),this.length=0},F.prototype.push=function(t){this.queue.pushBack(t),this.length+=1},F.prototype.pop=function(){this.queue.popFront(),this.length&&--this.length},F.prototype.front=function(){return this.queue.front()},F);function F(t){void 0===t&&(t=[]);var e=z.call(this)||this;return e.queue=new N(t),e.length=e.queue.size(),e}var A,Q=(e(O,A=n),O.prototype.adjust=function(t){var e,r=t<<1|1,i=2+(t<<1);r>1;if(this.cmp(this.priorityQueue[r],t)<=0)break;this.adjust(r),e=r}},O.prototype.pop=function(){if(this.length){var t=this.priorityQueue[this.length-1];--this.length;for(var e=0;e=this.length)break;var n=r;if(i>1;0<=n;--n)for(var o=n,h=o<<1|1;h>>0});var r=dt.call(this)||this;if(t<16||0!=(t&t-1))throw new RangeError("InitBucketNum range error");return r.bucketNum=r.initBucketNum=t,r.hashFunc=e,r}var gt,w=(e(mt,gt=yt),mt.prototype.reAllocate=function(){var o=this;if(!(this.bucketNum>=yt.maxBucketNum)){var h=[],s=this.bucketNum;this.bucketNum<<=1;for(var a=Object.keys(this.hashTable),t=a.length,u=this,e=0;eyt.untreeifyThreshold?h[e]=new ht(i):i.length&&(h[e]=new q(i,!1)),n.length>yt.untreeifyThreshold?h[e+s]=new ht(n):n.length&&(h[e+s]=new q(n,!1))):(i.length>=yt.treeifyThreshold?h[e]=new ht(i):i.length&&(h[e]=new q(i,!1)),n.length>=yt.treeifyThreshold?h[e+s]=new ht(n):n.length&&(h[e+s]=new q(n,!1)))}(e);this.hashTable=h}},mt.prototype.forEach=function(e){for(var t=Object.values(this.hashTable),r=t.length,i=0,n=0;nthis.bucketNum*yt.sigma&&this.reAllocate()},mt.prototype.eraseElementByKey=function(t){var e,r,i=this.hashFunc(t)&this.bucketNum-1,n=this.hashTable[i];!n||0!==(e=n.size())&&(n instanceof q?(n.eraseElementByValue(t),r=n.size(),this.length+=r-e):(n.eraseElementByKey(t),r=n.size(),this.length+=r-e,r<=yt.untreeifyThreshold&&(this.hashTable[i]=new q(n))))},mt.prototype.find=function(t){var e=this.hashFunc(t)&this.bucketNum-1,e=this.hashTable[e];return!!e&&!e.find(t).equals(e.end())},mt.prototype[Symbol.iterator]=function(){return function(){var e,r,i,n,o,h,s,a,u;return l(this,function(t){switch(t.label){case 0:e=Object.values(this.hashTable),r=e.length,i=0,t.label=1;case 1:if(!(i=yt.maxBucketNum)){var h=[],s=this.bucketNum;this.bucketNum<<=1;for(var a=Object.keys(this.hashTable),t=a.length,u=this,e=0;eyt.untreeifyThreshold?h[e]=new ft(i):i.length&&(h[e]=new q(i,!1)),n.length>yt.untreeifyThreshold?h[e+s]=new ft(n):n.length&&(h[e+s]=new q(n,!1))):(i.length>=yt.treeifyThreshold?h[e]=new ft(i):i.length&&(h[e]=new q(i,!1)),n.length>=yt.treeifyThreshold?h[e+s]=new ft(n):n.length&&(h[e+s]=new q(n,!1)))}(e);this.hashTable=h}},bt.prototype.forEach=function(e){for(var t=Object.values(this.hashTable),r=t.length,i=0,n=0;nthis.bucketNum*bt.sigma&&this.reAllocate()},bt.prototype.getElementByKey=function(t){var e,r,i=this.hashFunc(t)&this.bucketNum-1,i=this.hashTable[i];if(i){if(i instanceof ft)return i.getElementByKey(t);try{for(var n=c(i),o=n.next();!o.done;o=n.next()){var h=o.value;if(h[0]===t)return h[1]}}catch(t){e={error:t}}finally{try{o&&!o.done&&(r=n.return)&&r.call(n)}finally{if(e)throw e.error}}}},bt.prototype.eraseElementByKey=function(t){var e=this.hashFunc(t)&this.bucketNum-1,r=this.hashTable[e];if(r)if(r instanceof q){var i=0;try{for(var n=c(r),o=n.next();!o.done;o=n.next()){if(o.value[0]===t)return r.eraseElementByPos(i),void--this.length;i+=1}}catch(t){s={error:t}}finally{try{o&&!o.done&&(h=n.return)&&h.call(n)}finally{if(s)throw s.error}}}else{var h=r.size();r.eraseElementByKey(t);var s=r.size();this.length+=s-h,s<=yt.untreeifyThreshold&&(this.hashTable[e]=new q(r))}},bt.prototype.find=function(t){var e,r,i=this.hashFunc(t)&this.bucketNum-1,i=this.hashTable[i];if(!i)return!1;if(i instanceof ft)return!i.find(t).equals(i.end());try{for(var n=c(i),o=n.next();!o.done;o=n.next())if(o.value[0]===t)return!0}catch(t){e={error:t}}finally{try{o&&!o.done&&(r=n.return)&&r.call(n)}finally{if(e)throw e.error}}return!1},bt.prototype[Symbol.iterator]=function(){return function(){var e,r,i,n,o,h,s,a,u;return l(this,function(t){switch(t.label){case 0:e=Object.values(this.hashTable),r=e.length,i=0,t.label=1;case 1:if(!(ih[0]&&i[1]=t.length?void 0:t)&&t[r++],done:!t}}};throw new TypeError(i?"Object is not iterable.":"Symbol.iterator is not defined.")}function o(t,i){var e="function"==typeof Symbol&&t[Symbol.iterator];if(!e)return t;var r,n,s=e.call(t),o=[];try{for(;(void 0===i||0>1,1),e=0;e>1},p.prototype.front=function(){return this.k[this.l][this._]},p.prototype.back=function(){return this.k[this.L][this.p]},p.prototype.begin=function(){return new f(0,this.size,this.getElementByPos,this.setElementByPos)},p.prototype.end=function(){return new f(this.t,this.size,this.getElementByPos,this.setElementByPos)},p.prototype.rBegin=function(){return new f(this.t-1,this.size,this.getElementByPos,this.setElementByPos,1)},p.prototype.rEnd=function(){return new f(-1,this.size,this.getElementByPos,this.setElementByPos,1)},p.prototype.pushBack=function(t){this.t&&(this.pt;)this.popBack()}},p.prototype.sort=function(t){for(var i=[],e=0;e>1)-(i>>1),r._=r.p=r.S-e%r.S>>1,t.forEach(function(t){return r.pushBack(t)}),r.size=r.size.bind(r),r.getElementByPos=r.getElementByPos.bind(r),r.setElementByPos=r.setElementByPos.bind(r),r}i(l,Z=e),l.prototype.clear=function(){this.T.clear(),this.t=0},l.prototype.push=function(t){this.T.pushBack(t),this.t+=1},l.prototype.pop=function(){this.T.popFront(),this.t&&--this.t},l.prototype.front=function(){return this.T.front()};var Z,$=l;function l(t){void 0===t&&(t=[]);var i=Z.call(this)||this;return i.T=new Y(t),i.t=i.T.size(),i}i(y,Q=e),y.prototype.m=function(t){for(var i=this.q[t];0>1,r=this.q[e];if(this.M(r,i)<=0)break;this.q[t]=r,t=e}this.q[t]=i},y.prototype.D=function(t,i){for(var e=this.q[t];t>1)))},y.prototype.top=function(){return this.q[0]},y.prototype.find=function(t){return 0<=this.q.indexOf(t)},y.prototype.remove=function(t){t=this.q.indexOf(t);return!(t<0)&&(0===t?this.pop():t===this.t-1?(this.q.pop(),--this.t):(this.q.splice(t,1,this.q.pop()),--this.t,this.m(t),this.D(t,this.t>>1)),!0)},y.prototype.updateItem=function(t){t=this.q.indexOf(t);return!(t<0)&&(this.m(t),this.D(t,this.t>>1),!0)},y.prototype.toArray=function(){return h([],o(this.q),!1)};var Q,tt=y;function y(t,i,e){void 0===t&&(t=[]),void 0===i&&(i=function(t,i){return i>1),s=r.t-1>>1;0<=s;--s)r.D(s,n);return r}i(et,it=K),et.prototype.copy=function(){return new et(this.h,this.u,this.o,this.v,this.iteratorType)};var it,v=et;function et(){return null!==it&&it.apply(this,arguments)||this}i(w,rt=s),w.prototype.clear=function(){this.t=0,this.C.length=0},w.prototype.begin=function(){return new v(0,this.size,this.getElementByPos,this.setElementByPos)},w.prototype.end=function(){return new v(this.t,this.size,this.getElementByPos,this.setElementByPos)},w.prototype.rBegin=function(){return new v(this.t-1,this.size,this.getElementByPos,this.setElementByPos,1)},w.prototype.rEnd=function(){return new v(-1,this.size,this.getElementByPos,this.setElementByPos,1)},w.prototype.front=function(){return this.C[0]},w.prototype.back=function(){return this.C[this.t-1]},w.prototype.forEach=function(t){for(var i=0;i>>0});var e=vt.call(this)||this;if(t<16||0!=(t&t-1))throw new RangeError("InitBucketNum range error");return e.O=e.ot=t,e.ct=i,e}i(H,wt=r),H.prototype.I=function(){var s=this;if(!(1073741824<=this.O)){for(var o=[],h=this.O,u=(this.O<<=1,Object.keys(this.vt)),t=u.length,f=this,i=0;i.75*this.O&&this.I()},H.prototype.eraseElementByKey=function(t){var i,e,r=this.ct(t)&this.O-1,n=this.vt[r];!n||0!==(i=n.size())&&(n instanceof d?(n.eraseElementByValue(t),e=n.size(),this.t+=e-i):(n.eraseElementByKey(t),e=n.size(),this.t+=e-i,e<=6&&(this.vt[r]=new d(n))))},H.prototype.find=function(t){var i=this.ct(t)&this.O-1,i=this.vt[i];return!!i&&!i.find(t).equals(i.end())},H.prototype[Symbol.iterator]=function(){return function(){var i,e,r,n,s,o,h,u,f;return a(this,function(t){switch(t.label){case 0:i=Object.values(this.vt),e=i.length,r=0,t.label=1;case 1:if(!(r.75*this.O&&this.I()},U.prototype.getElementByKey=function(t){var i,e,r=this.ct(t)&this.O-1,r=this.vt[r];if(r){if(r instanceof x)return r.getElementByKey(t);try{for(var n=c(r),s=n.next();!s.done;s=n.next()){var o=s.value;if(o[0]===t)return o[1]}}catch(t){i={error:t}}finally{try{s&&!s.done&&(e=n.return)&&e.call(n)}finally{if(i)throw i.error}}}},U.prototype.eraseElementByKey=function(t){var i=this.ct(t)&this.O-1,e=this.vt[i];if(e)if(e instanceof d){var r=0;try{for(var n=c(e),s=n.next();!s.done;s=n.next()){if(s.value[0]===t)return e.eraseElementByPos(r),void--this.t;r+=1}}catch(t){h={error:t}}finally{try{s&&!s.done&&(o=n.return)&&o.call(n)}finally{if(h)throw h.error}}}else{var o=e.size(),h=(e.eraseElementByKey(t),e.size());this.t+=h-o,h<=6&&(this.vt[i]=new d(e))}},U.prototype.find=function(t){var i,e,r=this.ct(t)&this.O-1,r=this.vt[r];if(r){if(r instanceof x)return!r.find(t).equals(r.end());try{for(var n=c(r),s=n.next();!s.done;s=n.next())if(s.value[0]===t)return!0}catch(t){i={error:t}}finally{try{s&&!s.done&&(e=n.return)&&e.call(n)}finally{if(i)throw i.error}}}return!1},U.prototype[Symbol.iterator]=function(){return function(){var i,e,r,n,s,o,h,u,f;return a(this,function(t){switch(t.label){case 0:i=Object.values(this.vt),e=i.length,r=0,t.label=1;case 1:if(!(r !id || id.toLowerCase() === 'x' || id === '*' // ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0-0 // ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0-0 // ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0-0 +// ~0.0.1 --> >=0.0.1 <0.1.0-0 const replaceTildes = (comp, options) => comp.trim().split(/\s+/).map((c) => { return replaceTilde(c, options) @@ -291,6 +292,8 @@ const replaceTilde = (comp, options) => { // ^1.2, ^1.2.x --> >=1.2.0 <2.0.0-0 // ^1.2.3 --> >=1.2.3 <2.0.0-0 // ^1.2.0 --> >=1.2.0 <2.0.0-0 +// ^0.0.1 --> >=0.0.1 <0.0.2-0 +// ^0.1.0 --> >=0.1.0 <0.2.0-0 const replaceCarets = (comp, options) => comp.trim().split(/\s+/).map((c) => { return replaceCaret(c, options) diff --git a/tools/node_modules/eslint/node_modules/semver/index.js b/tools/node_modules/eslint/node_modules/semver/index.js index 57e2ae649479bc..4a342c6afe5ae7 100644 --- a/tools/node_modules/eslint/node_modules/semver/index.js +++ b/tools/node_modules/eslint/node_modules/semver/index.js @@ -1,48 +1,88 @@ // just pre-load all the stuff that index.js lazily exports const internalRe = require('./internal/re') +const constants = require('./internal/constants') +const SemVer = require('./classes/semver') +const identifiers = require('./internal/identifiers') +const parse = require('./functions/parse') +const valid = require('./functions/valid') +const clean = require('./functions/clean') +const inc = require('./functions/inc') +const diff = require('./functions/diff') +const major = require('./functions/major') +const minor = require('./functions/minor') +const patch = require('./functions/patch') +const prerelease = require('./functions/prerelease') +const compare = require('./functions/compare') +const rcompare = require('./functions/rcompare') +const compareLoose = require('./functions/compare-loose') +const compareBuild = require('./functions/compare-build') +const sort = require('./functions/sort') +const rsort = require('./functions/rsort') +const gt = require('./functions/gt') +const lt = require('./functions/lt') +const eq = require('./functions/eq') +const neq = require('./functions/neq') +const gte = require('./functions/gte') +const lte = require('./functions/lte') +const cmp = require('./functions/cmp') +const coerce = require('./functions/coerce') +const Comparator = require('./classes/comparator') +const Range = require('./classes/range') +const satisfies = require('./functions/satisfies') +const toComparators = require('./ranges/to-comparators') +const maxSatisfying = require('./ranges/max-satisfying') +const minSatisfying = require('./ranges/min-satisfying') +const minVersion = require('./ranges/min-version') +const validRange = require('./ranges/valid') +const outside = require('./ranges/outside') +const gtr = require('./ranges/gtr') +const ltr = require('./ranges/ltr') +const intersects = require('./ranges/intersects') +const simplifyRange = require('./ranges/simplify') +const subset = require('./ranges/subset') module.exports = { + parse, + valid, + clean, + inc, + diff, + major, + minor, + patch, + prerelease, + compare, + rcompare, + compareLoose, + compareBuild, + sort, + rsort, + gt, + lt, + eq, + neq, + gte, + lte, + cmp, + coerce, + Comparator, + Range, + satisfies, + toComparators, + maxSatisfying, + minSatisfying, + minVersion, + validRange, + outside, + gtr, + ltr, + intersects, + simplifyRange, + subset, + SemVer, re: internalRe.re, src: internalRe.src, tokens: internalRe.t, - SEMVER_SPEC_VERSION: require('./internal/constants').SEMVER_SPEC_VERSION, - SemVer: require('./classes/semver'), - compareIdentifiers: require('./internal/identifiers').compareIdentifiers, - rcompareIdentifiers: require('./internal/identifiers').rcompareIdentifiers, - parse: require('./functions/parse'), - valid: require('./functions/valid'), - clean: require('./functions/clean'), - inc: require('./functions/inc'), - diff: require('./functions/diff'), - major: require('./functions/major'), - minor: require('./functions/minor'), - patch: require('./functions/patch'), - prerelease: require('./functions/prerelease'), - compare: require('./functions/compare'), - rcompare: require('./functions/rcompare'), - compareLoose: require('./functions/compare-loose'), - compareBuild: require('./functions/compare-build'), - sort: require('./functions/sort'), - rsort: require('./functions/rsort'), - gt: require('./functions/gt'), - lt: require('./functions/lt'), - eq: require('./functions/eq'), - neq: require('./functions/neq'), - gte: require('./functions/gte'), - lte: require('./functions/lte'), - cmp: require('./functions/cmp'), - coerce: require('./functions/coerce'), - Comparator: require('./classes/comparator'), - Range: require('./classes/range'), - satisfies: require('./functions/satisfies'), - toComparators: require('./ranges/to-comparators'), - maxSatisfying: require('./ranges/max-satisfying'), - minSatisfying: require('./ranges/min-satisfying'), - minVersion: require('./ranges/min-version'), - validRange: require('./ranges/valid'), - outside: require('./ranges/outside'), - gtr: require('./ranges/gtr'), - ltr: require('./ranges/ltr'), - intersects: require('./ranges/intersects'), - simplifyRange: require('./ranges/simplify'), - subset: require('./ranges/subset'), + SEMVER_SPEC_VERSION: constants.SEMVER_SPEC_VERSION, + compareIdentifiers: identifiers.compareIdentifiers, + rcompareIdentifiers: identifiers.rcompareIdentifiers, } diff --git a/tools/node_modules/eslint/node_modules/semver/package.json b/tools/node_modules/eslint/node_modules/semver/package.json index 7898f5902cb737..72d3f66e8f7664 100644 --- a/tools/node_modules/eslint/node_modules/semver/package.json +++ b/tools/node_modules/eslint/node_modules/semver/package.json @@ -1,24 +1,20 @@ { "name": "semver", - "version": "7.3.7", + "version": "7.3.8", "description": "The semantic version parser used by npm.", "main": "index.js", "scripts": { "test": "tap", "snap": "tap", - "preversion": "npm test", - "postversion": "npm publish", - "postpublish": "git push origin --follow-tags", "lint": "eslint \"**/*.js\"", "postlint": "template-oss-check", "lintfix": "npm run lint -- --fix", - "prepublishOnly": "git push origin --follow-tags", "posttest": "npm run lint", "template-oss-apply": "template-oss-apply --force" }, "devDependencies": { "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.3.2", + "@npmcli/template-oss": "4.4.4", "tap": "^16.0.0" }, "license": "ISC", @@ -31,6 +27,7 @@ }, "files": [ "bin/", + "lib/", "classes/", "functions/", "internal/", @@ -41,7 +38,11 @@ ], "tap": { "check-coverage": true, - "coverage-map": "map.js" + "coverage-map": "map.js", + "nyc-arg": [ + "--exclude", + "tap-snapshots/**" + ] }, "engines": { "node": ">=10" @@ -52,17 +53,18 @@ "author": "GitHub Inc.", "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "3.3.2", + "version": "4.4.4", "engines": ">=10", + "content": "./scripts", "ciVersions": [ "10.0.0", "10.x", "12.x", "14.x", - "16.x" + "16.x", + "18.x" ], "distPaths": [ - "bin/", "classes/", "functions/", "internal/", @@ -70,6 +72,15 @@ "index.js", "preload.js", "range.bnf" + ], + "allowPaths": [ + "/classes/", + "/functions/", + "/internal/", + "/ranges/", + "/index.js", + "/preload.js", + "/range.bnf" ] } } 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 41dd8d1879eb7d..ad7fed637d13c9 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 @@ -68,6 +68,11 @@ function getLatestInfo(lock) { ) } } + if (lock.mode === 'pnpm') { + return JSON.parse( + childProcess.execSync('pnpm info caniuse-lite --json').toString() + ) + } return JSON.parse( childProcess.execSync('npm show caniuse-lite --json').toString() ) 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 3e20e7f099497d..b6a5d12b6bcafd 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.9", + "version": "1.0.10", "description": "CLI tool to update caniuse-lite to refresh target browsers from Browserslist config", "keywords": [ "caniuse", diff --git a/tools/node_modules/eslint/package.json b/tools/node_modules/eslint/package.json index 6c7e6e90f9bc99..d7f52379407e0d 100644 --- a/tools/node_modules/eslint/package.json +++ b/tools/node_modules/eslint/package.json @@ -1,6 +1,6 @@ { "name": "eslint", - "version": "8.24.0", + "version": "8.25.0", "author": "Nicholas C. Zakas ", "description": "An AST-based pattern checker for JavaScript.", "bin": { @@ -55,9 +55,8 @@ "homepage": "https://eslint.org", "bugs": "https://github.com/eslint/eslint/issues/", "dependencies": { - "@eslint/eslintrc": "^1.3.2", + "@eslint/eslintrc": "^1.3.3", "@humanwhocodes/config-array": "^0.10.5", - "@humanwhocodes/gitignore-to-minimatch": "^1.0.2", "@humanwhocodes/module-importer": "^1.0.1", "ajv": "^6.10.0", "chalk": "^4.0.0", @@ -119,7 +118,6 @@ "glob": "^7.1.6", "got": "^11.8.3", "gray-matter": "^4.0.3", - "jsdoc": "^3.5.5", "karma": "^6.1.1", "karma-chrome-launcher": "^3.1.0", "karma-mocha": "^2.0.1",